|
-
June 27th, 2006, 07:01 AM
#1
changing Dadabase Owner in Sql2000
hi there ..
in Sql 2000
how to change the owner of the DB after it is created
thanks..
-
June 27th, 2006, 07:07 AM
#2
Re: changing Dadabase Owner in Sql2000
You can use sp_changedbowner stored procedure to change the owner of the database.
Code:
EXEC sp_changedbowner 'NEWUSER'
Remember the account under which this command will be executed should be member of the sysadmin group.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|