Freigeben über


InstanceDatabaseOptions.InstanceDatabaseLogFiles Property

Gets the collection of InstanceDatabaseLogFile objects for the Notification ServicesInstance.

Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
Public ReadOnly Property InstanceDatabaseLogFiles As InstanceDatabaseLogFileCollection
public InstanceDatabaseLogFileCollection InstanceDatabaseLogFiles { get; }
public:
property InstanceDatabaseLogFileCollection^ InstanceDatabaseLogFiles {
    InstanceDatabaseLogFileCollection^ get ();
}
/** @property */
public InstanceDatabaseLogFileCollection get_InstanceDatabaseLogFiles ()
public function get InstanceDatabaseLogFiles () : InstanceDatabaseLogFileCollection

Eigenschaftswert

An InstanceDatabaseLogFileCollection collection.

Hinweise

Use the methods of the InstanceDatabaseLogFileCollection class to add or remove InstanceDatabaseLogFile objects.

Beispiel

The following examples show how to define a filegroup for an instance database and then add it to the collection of filegroups:

InstanceDatabaseLogFile idb_log = 
    new InstanceDatabaseLogFile(idb, "MyInst_LogFile1");
idb_log.FileName = @"C:\NS\Full\MyInst_LogFile1.ldf";
idb_log.InitialSize = "3MB";
idb_log.MaxSize = "10MB";
idb_log.GrowthIncrement = "10%";
idb.InstanceDatabaseLogFiles.Add(idb_log);
Dim idb_log As InstanceDatabaseLogFile = _
    New InstanceDatabaseLogFile(idb, "MyInst_LogFile1")
idb_log.FileName = "C:\NS\Full\MyInst_LogFile1.ldf"
idb_log.InitialSize = "3MB"
idb_log.MaxSize = "10MB"
idb_log.GrowthIncrement = "10%"
idb.InstanceDatabaseLogFiles.Add(idb_log)

Threadsicherheit

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

InstanceDatabaseOptions Class
InstanceDatabaseOptions Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Definieren der Instanzdatenbank