ScriptingOptions.DriPrimaryKey Property
SQL Server 2012
Gets or sets the Boolean property value that specifies whether dependency relationships that are defined in primary keys which have enforced declarative referential integrity are included in the script.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
The following code example specifies that dependency relationships defined in primary keys which have enforced declarative referential integrity are scripted.
Visual Basic
Dim scOps As New ScriptingOptions() scOps.DriPrimaryKey = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions $scOps.DriPrimaryKey = $TRUE
