FileGroups Collection
この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。
The FileGroups collection contains FileGroup objects that reference the filegroups of a Microsoft SQL Server database.
Properties
Methods
|
解説
SQL Server filegroups can be used to associate the operating system files used to maintain database data. Filegroups can simplify administrative tasks such as backup and restore operations. By default, a SQL Server database is created on exactly one filegroup called PRIMARY.
With the FileGroups collection, you can:
- Create a new SQL Server filegroup.
- Remove a SQL Server filegroup.
When using the Item or Remove method, the FileGroups collection supports member identification using either name or ordinal reference syntax. For example:
Set oFileGroup = oDatabase.FileGroups("PRIMARY")
Or
Set oFileGroup = oDatabase.FileGroups(1)
メモ : |
---|
Using the FileGroups collection to create or remove SQL Server database filegroups requires appropriate privilege. The SQL Server login used for SQLServer object connection must be a member of one of the fixed roles sysadmin or diskadmin. |