The Views collection contains View objects referencing the view tables defined in a Microsoft® SQL Server™ database.
With the Views collection, you can:
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
Set oView = oDatabase.Views("Invoices", "dbo")
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 above.
Note 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.
Add Method | Refresh Method |
Item Method | Remove Method (Collections) |
ItemByID Method |