oracle sqlldr 與 外部表

ysjxjf發表於2006-08-03
oracle sqlldr 與 外部表[@more@]
自定義例外:
declare
tablenotexist exception;
pragma exception_init(tablenotexist,-942);
begin
execute immediate 'drop table xxxxx';
exception when tablenotexist then
dbms_output.put_line('tablenotexist');
end;
/
pragma : 為編譯指示命令。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/66634/viewspace-853012/,如需轉載,請註明出處,否則將追究法律責任。

相關文章