共用方式為


Views Collection

未來的 Microsoft SQL Server 發行版本將不再提供此功能。請避免在新的開發工作中使用此功能,並計劃修改目前使用此功能的應用程式。

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

顯示目前物件的 SQL-DMO 物件模型

Properties

Count Property

 

Methods

Add Method

Refresh Method

Item Method

Remove Method (Collections)

ItemByID Method

 

備註

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 View object 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 Item method 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.

ms140412.note(zh-tw,SQL.90).gif附註:
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.