InstanceDatabaseOptions.InstanceDatabaseLogFiles Property
Gets the collection of InstanceDatabaseLogFile objects for the Notification ServicesInstance.
Spazio dei nomi: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Sintassi
'Dichiarazione
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
Valore proprietà
An InstanceDatabaseLogFileCollection collection.
Osservazioni
Use the methods of the InstanceDatabaseLogFileCollection class to add or remove InstanceDatabaseLogFile objects.
Esempio
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)
Thread Safety
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.
Piattaforme
Piattaforme di sviluppo
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Piattaforme di destinazione
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Vedere anche
Riferimento
InstanceDatabaseOptions Class
InstanceDatabaseOptions Members
Microsoft.SqlServer.Management.Nmo Namespace