Change the table owner

Source: Internet
Author: User
To change the table owner, I currently know two methods:
1. sp_changeobjectowner
Change the owner of objects in the current database.

Syntax
Sp_changeobjectowner [@ objname =] 'object', [@ newowner =] 'owner'

Parameters
[@ Objname =] 'object'

Name of the existing table, view, or stored procedure in the current database. The object data type is nvarchar (517), and no default value is available. The object can be defined by the existing object owner. The format is existing_owner.object.

[@ Newowner =] 'owner'

Name of the security account of the new owner of the object. The owner's data type is sysname, and there is no default value. The owner must be a valid Microsoft? SQL Server? User or role or Microsoft Windows NT? User or group. When specifying a Windows NT user or group, specify the name known to the Windows NT user or group in the database (use sp_grantdbaccess to add ).

Return code value
0 (successful) or 1 (failed)

Note
The object owner (or a member of a group or role that owns the object) has special permissions on the object. The object owner can execute any Transact-SQL statements related to the object (such as insert, update, delete, select or execute), or manage the object permissions.

Use sp_changeobjectowner to change the object owner if the security account that owns the object must be removed but the object must be retained. This process deletes all existing permissions from the object. After running sp_changeobjectowner, you must re-apply any permissions you want to retain.

For this reason, we recommend that you write scripts with existing permissions before running sp_changeobjectowner. Once the ownership of the object is changed, you may need to re-apply the permission using this script. Before running the script, you must modify the object owner in the permission script. For more information about writing database scripts, see writing database documents and scripts.

You can use sp_changedbowner to change the database owner.

Permission
Sp_changeobjectowner can be executed only when the SysAdmin fixed server role and db_owner fixed database role are members, both db_ddladmin and db_securityadmin fixed database roles.

Example
In the following example, the owner of the authors table is changed to revoke ate/georgew.

Exec sp_changeobjectowner 'authors ', 'initialize ate/georgew'

See
Change database owner: sp_changedbowner

------------------------------ The above is from the SQL Server online series
Note:
When using sqlserver2000 to change the owner of an object (such as table, SP, view), note the following:
If the owner of the object changes to DBO, use the: exec sp_changeobjectowner object name directly. The new owner name can be used successfully. To change the owner of the object, use the following syntax:
Exec sp_changeobjectowner "[owner]. [Object Name]", new owner. Note: Double quotation marks cannot be omitted. Otherwise, the objectname does not exist prompt is displayed.

Exec sp_changeobjectowner 'cqadmin. Authors ', 111

2. Create a table with the same structure as the original table, and then insert the data from the original table to the new table. The operation is as follows:

Right-click the source table in the SQL Server Enterprise Manager, select "all tasks/survival SQL scripts", save the generated script, and change the original table owner to the new owner in the script. Then run the script again, and a new table is generated in the database. The owner is the new owner, and the original table is not replaced in the database. The new table and old table have the same name and different owner. At this time, the new table has no data.

Then run the following statement to insert data to the new table:

Insert into cqadmin. m_actiondef // new owner. New table name
Select *
From regaltecdefschema. cqadministrator. m_actiondef // database name. old owner. old table name
You can delete or save the old table.
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.