Método EnableAllIndexes
Habilita todos os índices.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Sub EnableAllIndexes ( _
action As IndexEnableAction _
)
'Uso
Dim instance As Table
Dim action As IndexEnableAction
instance.EnableAllIndexes(action)
public void EnableAllIndexes(
IndexEnableAction action
)
public:
void EnableAllIndexes(
IndexEnableAction action
)
member EnableAllIndexes :
action:IndexEnableAction -> unit
public function EnableAllIndexes(
action : IndexEnableAction
)
Parâmetros
- action
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .IndexEnableAction
Um valor do objeto IndexEnableAction que especifica como habilitar os índices.
Exemplos
The following code example shows how to rebuild all indexes on a table by using the EnableAllIndexes function.
C#
Server srv = new Server("(local)");
Database db = srv.Databases["AdventureWorks2008R2"];
Table tb = new Table(db, "Test Table");
Column col1 = new Column(tb, "Name", DataType.NChar(50));
Column col2 = new Column(tb, "ID", DataType.Int);
tb.Columns.Add(col1);
tb.Columns.Add(col2);
tb.Create();
tb.DisableAllIndexes();
tb.EnableAllIndexes(EnableIndexAction.Rebuild);
$tb.Drop();
Powershell
#Connect to the local server and get the AdventureWorks2008R2 database
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
#Create the Table
$tb = new-object Microsoft.SqlServer.Management.Smo.Table($db, "Test Table")
$col1 = new-object Microsoft.SqlServer.Management.Smo.Column($tb, "Name", [Microsoft.SqlServer.Management.Smo.DataType]::NChar(50))
$col2 = new-object Microsoft.SqlServer.Management.Smo.Column($tb, "ID", [Microsoft.SqlServer.Management.Smo.DataType]::Int)
$tb.Columns.Add($col1)
$tb.Columns.Add($col2)
$tb.Create()
$tb.DisableAllIndexes()
$tb.EnableAllIndexes([Microsoft.SqlServer.Management.Smo.EnableIndexAction]::Rebuild)
$tb.Drop()
Consulte também