如何確定一個dmp檔案是exp匯出的還是expdp匯出的?

巡完南山巡南山發表於2019-06-05
DBMS_DATAPUMP.GET_DUMPFILE_INFO()儲存過程可以從dump檔案中獲取資訊
Filetype返回以下檔案型別:
  1: Data Pump dump file
  2: original Export dump file
在SQL*Plus中,用以下方法獲取dump檔案的資訊:
(注意:替換 <DMP file name> 和 <DMP File Directory> 為實際值)
-- Dump file(test.dmp) is saved in the /tmp/test.
SQL> conn /as sysdba
SQL> create or replace directory test as '/tmp/test';
Directory created.
SQL> set serveroutput on
declare
 v_filetype    NUMBER;                 -- 0=unknown 1=expdp 2=exp 3=ext
 v_info_table  sys.ku$_dumpfile_info;  -- PL/SQL table with file info
begin
 dbms_datapump.get_dumpfile_info(
  filename => 'test.dmp',
  directory => upper('test'),
  info_table => v_info_table, filetype => v_filetype);
  dbms_output.put_line('Filetype : ' || v_filetype);
end;
/
SQL>
Filetype : 2
PL/SQL procedure successfully completed.
本文轉自MOS原文,如何確定一個dmp檔案是傳統export(exp)匯出的還是DataPump Export(expdp)匯出的? (文件 ID 2533832.1)

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

相關文章