ALTER ROLE (Transact-SQL)
Changes the name of a database role.
Transact-SQL Syntax Conventions
ALTER ROLE role_name WITH NAME = new_name
- role_name
Is the name of the role to be changed.
- WITH NAME **=**new_name
Specifies the new name of the role. This name must not already exist in the database.
Changing the name of a database role does not change ID number, owner, or permissions of the role.
Database roles are visible in the sys.database_role_members and sys.database_principals catalog views.
Warning
In SQL Server 2005 the behavior of schemas is changed from the behavior in earlier versions of SQL Server. Code that assumes that schemas are equivalent to database users may not return correct results. Old catalog views, including sysobjects, should not be used in a database in which any of the following DDL statements has ever been used: CREATE SCHEMA, ALTER SCHEMA, DROP SCHEMA, CREATE USER, ALTER USER, DROP USER, CREATE ROLE, ALTER ROLE, DROP ROLE, CREATE APPROLE, ALTER APPROLE, DROP APPROLE, ALTER AUTHORIZATION. In a database in which any of these statements has ever been used, you must use the new catalog views. The new catalog views take into account the separation of principals and schemas that is introduced in SQL Server 2005. For more information about catalog views, see Catalog Views (Transact-SQL).
Requires ALTER ANY ROLE permission on the database.
The following example changes the name of role buyers
to purchasing
.
USE AdventureWorks;
ALTER ROLE buyers WITH NAME = purchasing;
GO
CREATE ROLE (Transact-SQL)
DROP ROLE (Transact-SQL)
EVENTDATA (Transact-SQL)
sp_addrolemember (Transact-SQL)
sys.database_role_members (Transact-SQL)
sys.database_principals (Transact-SQL)