Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Represents the collection of log files for an application.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public ReadOnly Property ApplicationDatabaseLogFiles As ApplicationDatabaseLogFileCollection
public ApplicationDatabaseLogFileCollection ApplicationDatabaseLogFiles { get; }
public:
property ApplicationDatabaseLogFileCollection^ ApplicationDatabaseLogFiles {
ApplicationDatabaseLogFileCollection^ get ();
}
/** @property */
public ApplicationDatabaseLogFileCollection get_ApplicationDatabaseLogFiles ()
public function get ApplicationDatabaseLogFiles () : ApplicationDatabaseLogFileCollection
Eigenschaftswert
An ApplicationDatabaseLogFileCollection. Use this collection to add and remove ApplicationDatabaseLogFile objects.
Hinweise
Each ApplicationDatabaseLogFile must be unique within the application.
Beispiel
The following examples show how to a define log file for the application database and then add the log file using the ApplicationDatabaseLogFiles property:
ApplicationDatabaseLogFile adb_log =
new ApplicationDatabaseLogFile(adb, "MyApp_LogFile1");
adb_log.FileName = @"C:\NS\Full\MyApp_LogFile1.ldf";
adb_log.InitialSize = "5MB";
adb_log.MaxSize = "20MB";
adb_log.GrowthIncrement = "10%";
adb.ApplicationDatabaseLogFiles.Add(adb_log);
Dim adb_log As ApplicationDatabaseLogFile = _
New ApplicationDatabaseLogFile(adb, "MyApp_LogFile1")
adb_log.FileName = "C:\NS\Full\MyApp_LogFile1.ldf"
adb_log.InitialSize = "5MB"
adb_log.MaxSize = "20MB"
adb_log.GrowthIncrement = "10%"
adb.ApplicationDatabaseLogFiles.Add(adb_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
ApplicationDatabaseOptions Class
ApplicationDatabaseOptions Members
Microsoft.SqlServer.Management.Nmo Namespace