ScriptingOptions.DriClustered Property
SQL Server 2008 R2
Gets or sets the Boolean property value that specifies whether dependency relationships defined in clustered indexes with enforced declarative referential integrity are included in the script.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Property Value
Type: System.BooleanA Boolean value that specifies whether to script clustered indexes with enforced declarative referential integrity.
If True, clustered indexes are included in the script.
If False (default), clustered indexes are not included in the script.
The following code example specifies that clustered indexes with enforced declarative referential integrity will be scripted.
Visual Basic
Dim scOps As New ScriptingOptions() scOps.DriClustered = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions $scOps.DriClustered = $TRUE
