InstanceDatabaseFile Constructor ()
Initializes a new instance of the InstanceDatabaseFile class.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public Sub New
public InstanceDatabaseFile ()
public:
InstanceDatabaseFile ()
public InstanceDatabaseFile ()
public function InstanceDatabaseFile ()
Remarks
Updated text:5 December 2005
Updated sample code:5 December 2005
If you use the default constructor, you must immediately set the Name property and then set the Parent property. You can then set the required FileName property and other optional properties.
Example
The following examples show how to use this default constructor:
// Create data file and set properties.
InstanceDatabaseFile idb_file1 = new InstanceDatabaseFile();
// Required properties.
idb_file1.Name = "MyInst_PrimaryFile1";
idb_file1.Parent = idb_fg;
idb_file1.FileName = @"C:\NS\Default\MyInst_PrimaryFile1.mdf";
// Optional properties.
idb_file1.InitialSize = "5MB";
idb_file1.MaxSize = "15MB";
idb_file1.GrowthIncrement = "10%";
// Add the database file.
idb_fg.InstanceDatabaseFiles.Add(idb_file1);
' Create data file and set properties.
Dim idb_file1 As InstanceDatabaseFile = _
New InstanceDatabaseFile()
' Required properties.
idb_file1.Name = "MyInst_PrimaryFile1"
idb_file1.Parent = idb_fg
idb_file1.FileName = "C:\NS\Default\MyInst_PrimaryFile1.mdf"
' Optional properties.
idb_file1.InitialSize = "5MB"
idb_file1.MaxSize = "15MB"
idb_file1.GrowthIncrement = "10%"
' Add the database file.
idb_fg.InstanceDatabaseFiles.Add(idb_file1)
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
See Also
Reference
InstanceDatabaseFile Class
InstanceDatabaseFile Members
Microsoft.SqlServer.Management.Nmo Namespace