Initializes a new instance of the ApplicationDatabaseLogFile class.
命名空間: Microsoft.SqlServer.Management.Nmo
組件: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
語法
'宣告
Public Sub New
public ApplicationDatabaseLogFile ()
public:
ApplicationDatabaseLogFile ()
public ApplicationDatabaseLogFile ()
public function ApplicationDatabaseLogFile ()
備註
更新的文字:2005 年 12 月 5 日
更新的範例程式碼:2005 年 12 月 5 日
If you use the default constructor, you must immediately set the Name property and then set the Parent property. You can then set other properties.
You also must set the FileName property. Other properties are optional.
範例
The following examples show how to use this default constructor:
// Define log file and set properties.
ApplicationDatabaseLogFile adb_log = new ApplicationDatabaseLogFile();
// Set required properties.
adb_log.Name = "MyApp_LogFile1";
adb_log.Parent = adb;
adb_log.FileName = @"C:\NS\Default\MyApp_LogFile1.ldf";
// Set optional properties.
adb_log.InitialSize = "5MB";
adb_log.MaxSize = "20MB";
adb_log.GrowthIncrement = "10%";
// Add the log file.
adb.ApplicationDatabaseLogFiles.Add(adb_log);
' Define log file and set properties.
Dim adb_log As ApplicationDatabaseLogFile = _
New ApplicationDatabaseLogFile()
' Set required properties.
adb_log.Name = "MyApp_LogFile1"
adb_log.Parent = adb
adb_log.FileName = "C:\NS\Default\MyApp_LogFile1.ldf"
' Set optional properties.
adb_log.InitialSize = "5MB"
adb_log.MaxSize = "20MB"
adb_log.GrowthIncrement = "10%"
' Add the log file.
adb.ApplicationDatabaseLogFiles.Add(adb_log)
平台
開發平台
如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。
目標平台
如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。
請參閱
參考
ApplicationDatabaseLogFile Class
ApplicationDatabaseLogFile Members
Microsoft.SqlServer.Management.Nmo Namespace
其他資源
CREATE DATABASE (Transact-SQL)
定義應用程式資料庫
LogFile Element (ADF)