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

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

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -