Index.OnlineIndexOperation Property
Gets or sets the Boolean property value that specifies whether the index will be kept online during index operations thus allowing access to the data.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Deklaracja
<SfcPropertyAttribute> _
Public Property OnlineIndexOperation As Boolean
[SfcPropertyAttribute]
public bool OnlineIndexOperation { get; set; }
[SfcPropertyAttribute]
public:
property bool OnlineIndexOperation {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_OnlineIndexOperation ()
/** @property */
public void set_OnlineIndexOperation (boolean value)
public function get OnlineIndexOperation () : boolean
public function set OnlineIndexOperation (value : boolean)
Property Value
A Boolean value that specifies whether the index will be kept online during index operations. If True, the index will be kept online during index operations. Otherwise, False (default).
Remarks
Uwaga
For indexes based on the UserDefinedTableType object the value of the OnlineIndexOperation property is always false.
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