Share via


ApplicationDatabaseOptions.ApplicationDatabaseLogFiles Property

Represents the collection of log files for an application.

Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntaxe

'Déclaration
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

Valeur de propriété

An ApplicationDatabaseLogFileCollection. Use this collection to add and remove ApplicationDatabaseLogFile objects.

Notes

Each ApplicationDatabaseLogFile must be unique within the application.

Exemple

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)

Sécurité des threads

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.

Plateformes

Plateformes de développement

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Plateformes cibles

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Voir aussi

Référence

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