alert_log設定成external table

tolilong發表於2015-11-24
SQL> create or replace
  2  directory alert_dir
  3  as
  4  'E:\oracle\product\10.2.0\admin\bruce\bdump';

Directory created.

SQL> edit
Wrote file afiedt.buf
  1  create table alert_log
  2  (text_line varchar2(255))
  3  organization external
  4  (type oracle_loader default directory alert_dir
  5   access parameters
  6   (records delimited by newline
  7    fields
  8   )
  9   location
 10   (
 11   'alert_bruce.log'
 12   )
 13* )
SQL> /


Table created.

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

相關文章