DROP USER (Transact-SQL)
Usuwa użytkownika z bieżącej bazy danych.
DROP USER user_name
Argumenty
- user_name
Określa nazwę, za pomocą których użytkownik jest identyfikowany w tej bazie danych.
Remarks
Użytkownicy, których właścicielem securables nie mogą być usunięte z bazy danych.Przed upuszczanie użytkownika bazy danych, który jest właścicielem securables, muszą być pierwszym przeciągania lub przenoszenia własność tych securables.
The guest user cannot be dropped, but guest user can be disabled by revoking its CONNECT permission by executing REVOKE CONNECT FROM GUEST within any database other than master or tempdb.
Ostrzeżenie
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).
Uprawnienia
Wymaga ALTER USER bez uprawnień do bazy danych.
Przykłady
W następującym przykładzie usunięto użytkownik bazy danych AbolrousHazem z AdventureWorks Baza danych.
USE AdventureWorks;
DROP USER AbolrousHazem;
GO
See Also