View Object

后续版本的 Microsoft SQL Server 将删除该功能。 请避免在新的开发工作中使用该功能,并着手修改当前还在使用该功能的应用程序。

The View object exposes the attributes of a Microsoft SQL Server view table.

显示当前对象的 SQL-DMO 对象模型

注释

SQL Server supports the definition of data views as tables. With the View object, you can:

  • Create a SQL Server view table.

  • Export data from a defined view table.

  • Generate a Transact-SQL script to re-create a view table.

  • Grant, deny, or revoke access to an existing SQL Server view table.

  • Remove a view table from a server running SQL Server.

The Name property of a View object references the name of a SQL Server view table. Its value is constrained by the rules constraining the name of a view table.

To create a new SQL Server view table

  1. Create a View object.

  2. Set the Name property.

  3. Set the Text property to the Transact-SQL SELECT statement defining the view table. For more information about valid SELECT statements for view table definition, see CREATE VIEW (Transact-SQL).

  4. Add the View object to the Views collection of a connected Database object.

注意注意

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

请参阅

参考