ApplicationDatabaseOptions.DefaultFileGroup Property
Gets or sets the default filegroup for the application database.
Spazio dei nomi: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Sintassi
'Dichiarazione
Public Property DefaultFileGroup As String
public string DefaultFileGroup { get; set; }
public:
property String^ DefaultFileGroup {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_DefaultFileGroup ()
/** @property */
public void set_DefaultFileGroup (String value)
public function get DefaultFileGroup () : String
public function set DefaultFileGroup (value : String)
Valore proprietà
A String containing name of the default filegroup.
Osservazioni
The default filegroup must be the name of one of the ApplicationDatabaseFileGroup objects for this application. Any application object without a specified filegroup is created in the default filegroup. If you do not specify a default filegroup, the default is PRIMARY.
Esempio
The following examples show how to set the application database collation:
adb.DefaultFileGroup = "PRIMARY";
adb.DefaultFileGroup = "PRIMARY"
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
ApplicationDatabaseOptions Class
ApplicationDatabaseOptions Members
Microsoft.SqlServer.Management.Nmo Namespace
Altre risorse
Definizione del database dell'applicazione
DefaultFileGroup Element (ADF)