sql server 2008 - What changes I need to do on the restored DB and how? -


i have restored db "mixed authentication" ms sql server "windows authentication only" sql server.

my application configured windows authentication uses 'dbo' accessing db.

but in restored db , tables, views not owned 'dbo'

im not sure if understood question, guess when accessing database, are/was creating tables. possibly statements like:

create table tablename (...) 

to create tables in specific schema, should add schema prefix (or change default schema of user using):

create table dbo.tablename (...) 

to move tables other schema, see alter schema.


Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

asp.net mvc - Implementing normal user/pass, Twitter & Facebook auth -