DBFile Object

SQL-DMO

SQL-DMO

DBFile Object

The DBFile object represents the properties of an operating system file used by Microsoft® SQL Server™ 2000 for table and index data storage.

Properties
FileGrowth Property PhysicalName Property
FileGrowthInKB Property PrimaryFile Property
FileGrowthType Property Size Property
ID Property SpaceAvailableInMB Property
MaximumSize Property SizeInKB Property
Name Property  
Methods
Remove Method (Objects) Shrink Method

Remarks

SQL Server can direct data storage for tables and indexes to specific operating system files. A single operating system file can contain data from only a single database. Within SQL Server, database data files are categorized by filegroup. A SQL Server database contains one or more filegroups containing one or more data files. This organization is reflected in the FileGroup and DBFile objects and collections.

All SQL Server databases contain a filegroup named PRIMARY. This filegroup contains the database primary data file. When using SQL-DMO to create a new SQL Server database, add a DBFile object to the FileGroup object named PRIMARY. After database creation, additional data files can be created and added to either the PRIMARY filegroup or to filegroups added to the database.

With the DBFile object, you can:

  • Create new operating system files for SQL Server database storage.

  • Manage the properties of SQL Server database growth.

  • Shrink the operating system files used by a database to reflect actual space used.

The Name property of a DBFile object uses the SQL Server data type sysname. The Name property value is used for the logical_file_name parameter in the CREATE DATABASE and ALTER DATABASE statements when adding files. The restrictions imposed on the logical_file_name parameter apply to the DBFile Name property.

To create a data file for SQL Server database storage

  1. Create a DBFile object.

  2. Set the Name property.

  3. Set the PhysicalName property to the path and file name of the desired data file.

  4. Set the Size property. The size property determines the size of the created data file and is specified in megabytes.

  5. Set optional properties, such as the Maximum (size) property.

  6. Get a FileGroup object from the FileGroups collection of a connected Database object.

  7. Add the DBFile object to the DBFiles collection of the selected FileGroup object.

See Also

ALTER DATABASE

CREATE DATABASE