Views Collection

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

The Viewscollection contains View objects that reference the view tables defined in a Microsoft SQL Server database.

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

Properties

注释

With the Views collection, you can:

  • Create a view table.

  • Remove a view table.

For more information about creating a view table by using the View object and Views collection, see View Object.

To remove a SQL Server view table

  1. Get the Viewobject that references the targeted view table from the Views collection by using the Item or ItemByID method. When extracting a View object using the name of the referenced view table, use the view owner name to qualify, as in:

    Set oView = oDatabase.Views("Invoices", "dbo")
    
  2. Use the Remove method of the View object to remove the targeted view table.

The Itemmethod of the Views collection supports member selection using view name or the ordinal position of the object in the collection. Additionally, when using the name to select an object from the collection, the Item method allows owner name qualification of the targeted SQL Server view. For example:

Set oView = oDatabase.Views("[Current Product List]", "dbo")

The Remove method of the Views collection supports member targeting using either view name or the ordinal position of the object in the collection. The Remove method does not support view owner name qualification when using the method to drop a view. When using the Views collection to remove a SQL Server view table, it is suggested that you use either the Item or ItemByID method of the collection to extract the object referencing the correct view as illustrated earlier.

注意注意

Creating or removing view tables by using the Views collection requires appropriate privilege. The SQL Server login used for SQLServer object connection must be a member of the fixed role db_ddladmin or a role with greater privilege.