Table.FileGroup Property
Gets or sets the filegroup where the table is stored.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)> _
Public Property FileGroup As String
[SfcPropertyAttribute(SfcPropertyFlags.ReadOnlyAfterCreation)]
public string FileGroup { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::ReadOnlyAfterCreation)]
public:
virtual property String^ FileGroup {
String^ get () sealed;
void set (String^ value) sealed;
}
/** @property */
public final String get_FileGroup ()
/** @property */
public final void set_FileGroup (String value)
public final function get FileGroup () : String
public final function set FileGroup (value : String)
Property Value
A String value that specifies the filegroup where the table is stored.
Remarks
The FileGroup property is set prior to the creation of the table. After the table is created, the property is read-only.
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.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
See Also