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
Post a Comment