基本的にデータベースにデータ ディクショナリを含めるための拡張プロパティを生成するスクリプト テンプレートを作成しましたが、モデルからテーブル コメントを読み取るマクロが見つかりませんでした。これにはハックがありますか?
1 に答える
0
これは、ERwin 固有の DBMS です。
dbms に応じて、SQL サーバーまたはオラクルには FET テンプレートがあります。
SQL サーバー用。スキーマを作成するために SQL Server テンプレートを編集する場合。SQL Server では、コメントまたは udp 拡張プロパティを生成するものです。ここに示されているものがあります。
/* Generate comments and UDP's as Extended Properties. */
[
/* Set the variables required by the "Clause: Specify Extended Properties". */
Set( "var_RemoveVariables", "true" )
Set( "var_Operation", "sp_addextendedproperty" )
Set( "var_Comment", "Definition" )
Set( "var_Level0Type", "SCHEMA" )
Set( "var_Level0Name", Property( "Name" ) )
/* Generate Schema comments and UDPs */
Execute( "Clause: Specify Extended Properties" )
]
[
FE::Bucket( "150" )
ForEachOwnee( "Permission" )
{
Execute( "Create Permission" )
}
]
]
于 2014-04-24T04:12:51.510 に答える