Share via


DBObject Object

Esse recurso será removido em uma versão futura do Microsoft SQL Server. Evite usar esse recurso em desenvolvimentos novos e planeje modificar os aplicativos que atualmente o utilizam.

The DBObject object represents properties of a Microsoft SQL Server database object, such as a table or stored procedure.

Modelo de objeto do SQL-DMO mostrando o objeto atual

Comentários

The DBObject object is used as a parameter to the GetObjectByName method of the Database object and the AddObject method of the Transfer object.

You can use the DBObject object to refer to SQL Server defaults, rules, stored procedures, tables, triggers, user-defined data types, and views.

With the DBObject object, you can:

  • Query a database by object name to determine whether the specified object exists.

  • Add a list of SQL Server database objects to a script transferring objects and data from one SQL Server database to another.

  • Determine the dependencies on a named SQL Server database object.

  • List the permissions granted on a named SQL Server database object.

The Name property of the DBObject object refers to the name of the selected Database object. Database object names are defined with the SQL Server data type sysname, and the value of the Name property of theDBObjectmatches the specification of sysname.