Scenario:
1. I am transferring a db to a new server (using DTS Export).
2. On source_db, the tables are all in the form paddy.Customer. After I do the export they exist on destn_db as dbo.Customer.
3. When I try to export the views I get an error because the views refer to paddy.Customer which of course doesn't exist.
4. The db does not need multiple or otherwise complex security levels.
Questions:
1. Generally, should my tables be owned by paddy or dbo?
2. Is there a "change owner" function which will bulk change all my tables, subject to the above answer?
3. Is there a way to not specify the owner prefix in views, but rather specify the default owner?
4. Finally, is there a flag in DTS Export which exports the tables with the right owner prefixes?
1. I am transferring a db to a new server (using DTS Export).
2. On source_db, the tables are all in the form paddy.Customer. After I do the export they exist on destn_db as dbo.Customer.
3. When I try to export the views I get an error because the views refer to paddy.Customer which of course doesn't exist.
4. The db does not need multiple or otherwise complex security levels.
Questions:
1. Generally, should my tables be owned by paddy or dbo?
2. Is there a "change owner" function which will bulk change all my tables, subject to the above answer?
3. Is there a way to not specify the owner prefix in views, but rather specify the default owner?
4. Finally, is there a flag in DTS Export which exports the tables with the right owner prefixes?