다음을 통해 공유


Users Collection

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

The Userscollection contains User objects that reference Microsoft SQL Server database user definitions.

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

Properties

주의

A SQL Server user forms one part of SQL Server security implementation. A user represents either a SQL Server login or Microsoft Windows security account with data access privilege within a SQL Server database.

With the Users collection, you can:

  • Create a SQL Server database user.

  • Remove a SQL Server database user.

For more information about creating and removing SQL Server database users by using the User object and Users collection, see User Object.

When using the Item or Removemethod, the Users collection supports member identification using either name or ordinal reference syntax. For example:

Set oUser = oDatabase.Users("someone")

Or:

Set oUser = oDatabase.Users(2)

[!참고]

Creating or removing SQL Server database users by using the Users collection requires appropriate privilege. The SQL Server login used for SQLServer object connection must be a member of the fixed role db_accessadmin or a role with greater privilege.