BI Publisherレポートのバックエンドからのデータ定義とテンプレートの削除

X

プライバシー&クッキー

このサイトはクッキーを使用しています。 継続することにより、あなたはそれらの使用に同意します。 Cookieの制御方法など、詳細についてはこちらをご覧ください。

広告

BI Publisherレポートのバックエンドからデータ定義とテンプレートを削除するには、次のコードを使用する必要があります。

datadefinitionを削除するためのスクリプト
—————->

XDO_DS_DEFINITIONS_PKGを開始します。DELETE_ROW(‘XX’,’XXHR_EUREH_GEOS_ERROR_REPORT’);
END;
——————-
——————-
テンプレートを削除するためのスクリプト
——————>

XDO_TEMPLATES_PKGを開始します。DELETE_ROW(‘XX’,’XXHR_EUREH_GEOS_ERROR_REPORT’);
END;

スクリプトを実行した後にコミットする必要があります

または

次の

を実行しますdeclare
begin
delete from XDO_TEMPLATES_B where template_code=’template code’;
delete from xdo_TEMPLATES_TL where template_code=’template code’;
delete from xdo_TEMPLATES_B where template_code=’template code’;
delete from xdo_TEMPLATES_TL where template_code=’template code’;
delete from xdo_TEMPLATES_B where template_code=’template code’;
delete from xdo_TEMPLATES_TL where template_code=’template code’;
delete from xdo_lobs where lob_code=’template code’;
delete from xdo_DS_definitions_tl where data_source_code=’データ定義コード’;
delete from xdo_ds_definitions_B WHERE DATA_SOURCE_code=’データ定義コード’;
end;

Leave a Reply

メールアドレスが公開されることはありません。