SMO でのスクリプトは、 Scripter オブジェクトとその子オブジェクト、または個々のオブジェクトの Script
メソッドによって制御されます。
Scripter オブジェクトは、MicrosoftSQL Server のインスタンス上のオブジェクトの依存関係からマッピングを制御します。
Scripter オブジェクトとその子オブジェクトを使用した高度なスクリプト作成は、次の 3 つのフェーズ プロセスです。
発見
リストの生成
スクリプトの生成
検出フェーズでは、 DependencyWalker オブジェクトが使用されます。 オブジェクトの URN リストを指定すると、DependencyWalker オブジェクトのDiscoverDependencies メソッドは URN リスト内のオブジェクトのDependencyTree オブジェクトを返します。 ブール 型 fParents パラメーターは、指定したオブジェクトの親または子を検出するかどうかを選択するために使用されます。 依存関係ツリーは、この段階で変更できます。
リスト生成フェーズでは、ツリーが渡され、結果のリストが返されます。 このオブジェクト リストはスクリプト化の順序であり、操作できます。
リスト生成フェーズでは、 WalkDependencies メソッドを使用して DependencyTreeを返します。 DependencyTreeは、この段階で変更できます。
3 番目と最後のフェーズでは、指定されたリストとスクリプト オプションを使用してスクリプトが生成されます。 結果は、 StringCollection システム オブジェクトとして返されます。 このフェーズでは、依存オブジェクト名は、 DependencyTree オブジェクトの Items コレクションと、 NumberOfSiblings や FirstChildなどのプロパティから抽出されます。
例
提供されているコード例を使用するには、プログラミング環境、プログラミング テンプレート、およびアプリケーションを作成するプログラミング言語を選択する必要があります。 詳細については、「 Visual Studio .NET で Visual Basic SMO プロジェクトを作成する」または「Visual Studio .NETで Visual C# SMO プロジェクトを作成する」を参照してください。
このコード例では、System.Collections.Specialized 名前空間の Imports
ステートメントが必要です。 これを、アプリケーション内の宣言の前に、他の Imports ステートメントと共に挿入します。
Imports Microsoft.SqlServer.Management.Smo
Imports Microsoft.SqlServer.Management.Common
Imports System.Collections.Specialized
Visual Basic でのデータベースの依存関係のスクリプト化
このコード例では、依存関係を検出し、一覧を反復処理して結果を表示する方法を示します。
' compile with:
' /r:Microsoft.SqlServer.Smo.dll
' /r:Microsoft.SqlServer.ConnectionInfo.dll
' /r:Microsoft.SqlServer.Management.Sdk.Sfc.dll
Imports Microsoft.SqlServer.Management.Smo
Imports Microsoft.SqlServer.Management.Sdk.Sfc
Public Class A
Public Shared Sub Main()
' database name
Dim dbName As [String] = "AdventureWorksLT2012" ' database name
' Connect to the local, default instance of SQL Server.
Dim srv As New Server()
' Reference the database.
Dim db As Database = srv.Databases(dbName)
' Define a Scripter object and set the required scripting options.
Dim scrp As New Scripter(srv)
scrp.Options.ScriptDrops = False
scrp.Options.WithDependencies = True
scrp.Options.Indexes = True ' To include indexes
scrp.Options.DriAllConstraints = True ' to include referential constraints in the script
' Iterate through the tables in database and script each one. Display the script.
For Each tb As Table In db.Tables
' check if the table is not a system table
If tb.IsSystemObject = False Then
Console.WriteLine("-- Scripting for table " + tb.Name)
' Generating script for table tb
Dim sc As System.Collections.Specialized.StringCollection = scrp.Script(New Urn() {tb.Urn})
For Each st As String In sc
Console.WriteLine(st)
Next
Console.WriteLine("--")
End If
Next
End Sub
End Class
Visual C でのデータベースの依存関係のスクリプト化#
このコード例では、依存関係を検出し、一覧を反復処理して結果を表示する方法を示します。
// compile with:
// /r:Microsoft.SqlServer.Smo.dll
// /r:Microsoft.SqlServer.ConnectionInfo.dll
// /r:Microsoft.SqlServer.Management.Sdk.Sfc.dll
using System;
using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Sdk.Sfc;
public class A {
public static void Main() {
String dbName = "AdventureWorksLT2012"; // database name
// Connect to the local, default instance of SQL Server.
Server srv = new Server();
// Reference the database.
Database db = srv.Databases[dbName];
// Define a Scripter object and set the required scripting options.
Scripter scrp = new Scripter(srv);
scrp.Options.ScriptDrops = false;
scrp.Options.WithDependencies = true;
scrp.Options.Indexes = true; // To include indexes
scrp.Options.DriAllConstraints = true; // to include referential constraints in the script
// Iterate through the tables in database and script each one. Display the script.
foreach (Table tb in db.Tables) {
// check if the table is not a system table
if (tb.IsSystemObject == false) {
Console.WriteLine("-- Scripting for table " + tb.Name);
// Generating script for table tb
System.Collections.Specialized.StringCollection sc = scrp.Script(new Urn[]{tb.Urn});
foreach (string st in sc) {
Console.WriteLine(st);
}
Console.WriteLine("--");
}
}
}
}
PowerShell でのデータベースの依存関係のスクリプト化
このコード例では、依存関係を検出し、一覧を反復処理して結果を表示する方法を示します。
# Set the path context to the local, default instance of SQL Server.
CD \sql\localhost\default
# Create a Scripter object and set the required scripting options.
$scrp = New-Object -TypeName Microsoft.SqlServer.Management.SMO.Scripter -ArgumentList (Get-Item .)
$scrp.Options.ScriptDrops = $false
$scrp.Options.WithDependencies = $true
$scrp.Options.IncludeIfNotExists = $true
# Set the path context to the tables in AdventureWorks2012.
CD Databases\AdventureWorks2012\Tables
foreach ($Item in Get-ChildItem)
{
$scrp.Script($Item)
}