Share via


User Object

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The User object exposes the attributes of a single Microsoft SQL Server database user.

현재 개체를 보여 주는 SQL-DMO 개체 모델

주의

A database user is a security principal enabling object access permission control at the finest level of granularity. A user represents a single SQL Server login within the scope of the database in which the user is defined.

With the User object, you can:

  • Create a database user.

  • Enumerate objects owned by a user and permissions on database objects.

  • Remove a database user.

The Name property of a User object is a character string. Name must be a valid string for the SQL Server sysname data type and cannot include a backslash character (\).

When creating a database user by using the User object, setting the Name property is optional. If the Name property is not set, a user is created having the same name as the value specified by using the Login property.

To create a database user

  1. Create a User object.

  2. Set the Login property indicating an existing SQL Server login.

  3. Set optional properties.

  4. Add the User object to the Users collection of a connected SQLServer Database object.

A database user cannot be removed if the user owns objects in the database. With SQL Distributed Management Objects (SQL-DMO), use the Owner property to reassign database object ownership.

To remove a database user

  1. Get the appropriate User object from the Users collection of a connected SQLServer Database object.

  2. Use the ListOwnedObjects method of the User object to enumerate database objects owned by the user.

  3. Use the Owner property to reassign ownership for all owned objects.

  4. Use the Remove method of the User object to remove the database user.

[!참고]

The User object is compatible with instances of SQL Server versions 7.0 and later. However, the User2 object extends the functionality of the User object for use with features that were introduced in SQL Server 2000.

참고 항목

참조