既定値の作成、変更、および削除
SMO (SQL Server 管理オブジェクト) では、既定の制約は Default オブジェクトで表現します。
挿入する値を設定するには、Default オブジェクトの TextBody プロパティを使用します。 挿入する値は、定数であっても、GETDATE() などの定数値を返す Transact-SQL ステートメントであってもかまいません。 TextBody プロパティは、Alter メソッドを使用して変更することはできません。 Default オブジェクトをいったん削除してから再作成する必要があります。
例
提供されているコード例を使用するには、アプリケーションを作成するプログラミング環境、プログラミング テンプレート、およびプログラミング言語を選択する必要があります。 詳細については、「Visual Studio .NET での Visual Basic SMO プロジェクトの作成」または「Visual Studio .NET での Visual C# SMO プロジェクトの作成」を参照してください。
Visual Basic での既定値の作成、変更、および削除
このコード例では、シンプル テキストである既定値と Transact-SQL ステートメントである別の既定値を作成する方法を示します。 既定値を列にアタッチするには BindToColumn メソッドを使用し、列からのデタッチには UnbindFromColumn メソッドを使用する必要があります。
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")
'Define a Default object variable by supplying the parent database and the default name
'in the constructor.
Dim def As [Default]
def = New [Default](db, "Test_Default2")
'Set the TextHeader and TextBody properties that define the default.
def.TextHeader = "CREATE DEFAULT [Test_Default2] AS"
def.TextBody = "GetDate()"
'Create the default on the instance of SQL Server.
def.Create()
'Declare a Column object variable and reference a column in the AdventureWorks2012 database.
Dim col As Column
col = db.Tables("SpecialOffer", "Sales").Columns("StartDate")
'Bind the default to the column.
def.BindToColumn("SpecialOffer", "StartDate", "Sales")
'Unbind the default from the column and remove it from the database.
def.UnbindFromColumn("SpecialOffer", "StartDate", "Sales")
def.Drop()
Visual C# での既定値の作成、変更、および削除
このコード例では、シンプル テキストである既定値と Transact-SQL ステートメントである別の既定値を作成する方法を示します。 既定値を列にアタッチするには BindToColumn メソッドを使用し、列からのデタッチには UnbindFromColumn メソッドを使用する必要があります。
{
Server srv = new Server();
//Reference the AdventureWorks2012 database.
Database db = srv.Databases["AdventureWorks2012"];
//Define a Default object variable by supplying the parent database and the default name
//in the constructor.
Default def = new Default(db, "Test_Default2");
//Set the TextHeader and TextBody properties that define the default.
def.TextHeader = "CREATE DEFAULT [Test_Default2] AS";
def.TextBody = "GetDate()";
//Create the default on the instance of SQL Server.
def.Create();
//Bind the default to a column in a table in AdventureWorks2012
def.BindToColumn("SpecialOffer", "StartDate", "Sales");
//Unbind the default from the column and remove it from the database.
def.UnbindFromColumn("SpecialOffer", "StartDate", "Sales");
def.Drop();
}
PowerShell での既定値の作成、変更、および削除
このコード例では、シンプル テキストである既定値と Transact-SQL ステートメントである別の既定値を作成する方法を示します。 既定値を列にアタッチするには BindToColumn メソッドを使用し、列からのデタッチには UnbindFromColumn メソッドを使用する必要があります。
# Set the path context to the local, default instance of SQL Server and get a reference to AdventureWorks2012
CD \sql\localhost\default\databases
$db = get-item Adventureworks2012
#Define a Default object variable by supplying the parent database and the default name in the constructor.
$def = New-Object -TypeName Microsoft.SqlServer.Management.SMO.Default `
-argumentlist $db, "Test_Default2"
#Set the TextHeader and TextBody properties that define the default.
$def.TextHeader = "CREATE DEFAULT [Test_Default2] AS"
$def.TextBody = "GetDate()"
#Create the default on the instance of SQL Server.
$def.Create()
#Bind the default to the column.
$def.BindToColumn("SpecialOffer", "StartDate", "Sales")
#Unbind the default from the column and remove it from the database.
$def.UnbindFromColumn("SpecialOffer", "StartDate", "Sales")
$def.Drop()