다음을 통해 공유


ObjectType Property

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

The ObjectType property returns an enumerated value that specifies the type of Microsoft SQL Server component referenced by a Permission object.

구문

object
.ObjectType 

Parts

  • object
    An expression that evaluates to an object in the Applies To list.

Data Type

Long, enumerated

Modifiable

Read-only

Prototype (C/C++)

HRESULT GetObjectType(SQLDMO_OBJECT_TYPE* pRetVal);

Returns

Values returned by the ObjectType property are enumerated by SQL Distributed Management Objects (SQL-DMO) object type constants. Access permission can be granted on SQL Server databases and some database objects. The value returned is one of the following SQLDMO_OBJECT_TYPE values.

Constant

Value

Description

SQLDMOObj_Database

135168

Permission is granted on a SQL Server database.

SQLDMOObj_StoredProcedure

16

Permission is granted on a SQL Server stored procedure.

SQLDMOObj_SystemTable

2

Permission is granted on a SQL Server system table.

SQLDMOObj_UserTable

8

Permission is granted on a SQL Server user-defined table.

SQLDMOObj_View

4

Permission is granted on a SQL Server view.

Applies To: