記事の概要
ログインしているユーザーのみのシノニム一覧を作成するSQLを書きます。
SYNONYM作成SQL
select object_name from user_objects where object_type = ‘SYNONYM’;
応用すればSQLでdrop文やcreate文が作成可能
select ‘drop synonym ‘ || object_name || ‘;’ from user_objects where object_type = ‘SYNONYM’;
ログインしているユーザーのみのシノニム一覧を作成するSQLを書きます。
select object_name from user_objects where object_type = ‘SYNONYM’;
select ‘drop synonym ‘ || object_name || ‘;’ from user_objects where object_type = ‘SYNONYM’;
コメント