1.指定table,但不帶query引數的寫法
[gysy01@oracle]
/sysbackup>
exp ***
*/pwd**
**@infodb1
file
=scm_inout_lot_history_2012.20120301.dmp log=scm_inout_lot_history_2012.20120301.log tables=scm_inout_lot_history
export: release 11.1.0.7.0 - production on 星期四 3月 1 15:07:56 2012
2.指定table,但帶query引數的寫法
[gysy01@oracle]
/sysbackup>
exp s*
/pwd*@infodb1
file
=scm_inout_lot_history_2012.20120301.dmp log=scm_inout_lot_history_2012.20120301.log tables=scm_inout_lot_history query=
\" where statdate\> to_date\( \'2012-01-01\',\'yyyy-mm-dd\' \) \"
export: release 11.1.0.7.0 - production on 星期四 3月 1 15:07:56 2012
about to export specified tables via conventional path ...
. . exporting table scm_inout_lot_history 12640529 rows exported
exp-00091: exporting questionable statistics.
exp-00091: exporting questionable statistics.
export terminated successfully with warnings.
重點在於轉義字元的使用,因為在aix的shell中'(>都是特殊字元,具有特殊含義。
通過exp的query引數匯出部分記錄
oracle的exp工具有乙個query引數可以指定乙個where條件來有條件地匯出記錄,對於不經常用這個選項的人來說,經常會遇到這樣的錯誤 lrm 00112 multiple values not allowed for parameter query exp 00019 failed to p...
AIX下的編譯命令
基本編譯 cc o filename filename.c pro c的編譯 1。編譯 pc 檔案為 c 檔案 proc include filename.pc proc iname filename.pc 2。編譯 c 檔案,生成目標檔案 cc i oracle home precomp publ...
AIX系統下的Makefile
部落格 日期 2013.01.06 因aix下的makefile目前還不支援makefile函式,如果將linux下的makefile放入aix系統下,會出現很多錯誤。因此,很有必要總結一下aix下makefile的使用場景。1 編譯多個c檔案生成可執行檔案 如 test.h test.c main...