Aracılığıyla paylaş


ROLE (Transact-SQL) ALTER

Bir veritabanı rolü adını değiştirir.

Topic link iconTransact-SQL sözdizimi kuralları

ALTER ROLE role_name WITH NAME = new_name

Bağımsız değişkenler

  • role_name
    Değiştirilecek rolünün addır.

  • WITH NAME **=**new_name
    Yeni rolün adını belirtir.Bu adı veritabanı içinde varolmalıdır değil.

Remarks

Bir veritabanı rolü adını değiştirmek, KIMLIK numarası, sahibi veya rolünün izinleri değiştirmez.

Veritabanı rolleri de görülebilir sys.database_role_members and sys.database_principals katalog görünümleri.

Uyarı

Beginning with SQL Server 2005, the behavior of schemas changed. As a result, code that assumes that schemas are equivalent to database users may no longer return correct results. Old catalog views, including sysobjects, should not be used in a database in which any of the following DDL statements have 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 such databases you must instead use the new catalog views. The new catalog views take into account the separation of principals and schemas that was introduced in SQL Server 2005. For more information about catalog views, see Catalog Views (Transact-SQL).

İzinler

ANY ROLE ALTER veritabanı izni gerektirir.

Örnekler

Aşağıdaki örnek, rolün adını değiştirir buyers Kime purchasing.

USE AdventureWorks;
ALTER ROLE buyers WITH NAME = purchasing;
GO