You can use a PLSQL anonymous block: begin execute immediate 'drop synonym YOUR_SYNONYM'; exception when others then if sqlcode != -1434 then raise; end if; ...
確定! 回上一頁