Table.Alter メソッド
SQL Server のインスタンスの Table オブジェクトのプロパティに対する変更をすべて更新します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Sub Alter
'使用
Dim instance As Table
instance.Alter()
public void Alter()
public:
virtual void Alter() sealed
abstract Alter : unit -> unit
override Alter : unit -> unit
public final function Alter()
実装
説明
Alter メソッドは、Table オブジェクトの作成後、または最後の Alter ステートメントの後に Table オブジェクトのプロパティに対して行われたすべての変更を更新します。 変更が結合され、SQL Server のインスタンスへの 1 回のネットワーク トリップで SQL Server のインスタンスに送信されます。
使用例
次のコード例では、新しいテーブルを作成した後、Alter メソッドを使用して更新する方法を示します。
C#
Server srv = new Server("(local)");
Database db = srv.Databases["AdventureWorks2012"];
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();
Column col3 = new Column(tb, "Date", DataType.DateTime);
tb.Columns.Add(col3);
tb.Alter();
Powershell
#Connect to the local server and get the AdventureWorks2012 database
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")
#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()
#Add a new column and update the table
$col3 = new-object Microsoft.SqlServer.Management.Smo.Column($tb, "Date", [Microsoft.SqlServer.Management.Smo.DataType]::DateTime)
$tb.Columns.Add($col3)
$tb.Alter()
関連項目
参照
Microsoft.SqlServer.Management.Smo 名前空間