|
Hi DevoDog,
I was having the same problem so i did something like this.
I ran an inbuilt stored procedure called "sp_changeobjectowner" in the query analyser.
This stored proc has two parameters the first being the object name according to your e.g. dboXXX.tblName and second the owner name u would prefer to be. i have mentioned an e.g below in which i change the owner to 'dbo' which is the default in most of the cases.
EXEC sp_changeobjectowner 'dboXXX.tblName', 'dbo'
You will have to repeat this for every table which has this owner i.e. dboXXX or watever by just changing the first parameter. like say EXEC sp_changeobjectowner 'dboXXX.tblName1', 'dbo' EXEC sp_changeobjectowner 'dboXXX.tblName2', 'dbo' and so on.......
I hope this is wat u needed.
|