直接用Oracle內部的命令可以:
1將資料庫TEST完全匯出,使用者名稱system密碼manager匯出到D:\\daochu.dmp中
expsystem/manager@TESTfile=d:\\daochu.dmpfull=y
2將資料庫中system使用者與sys使用者的表匯出
expsystem/manager@TESTfile=d:\\daochu.dmpowner=(system,sys)
3將資料庫中的表inner_notify、notify_staff_relat匯出
expaichannel/aichannel@TESTDB2file=d:\\data\
ewsmgnt.dmptables=(inner_notify,notify_staff_relat)
4將資料庫中的表table1中的欄位filed1以"00"打頭的資料匯出
expsystem/manager@TESTfile=d:\\daochu.dmptables=(table1)query=\\"wherefiled1like"00%"\\"
上面是常用的匯出,對於壓縮,既用winzip把dmp檔案可以很好的壓縮。
也可以在上面命令後面加上compress=y來實現。
直接用Oracle內部的命令可以:
1將資料庫TEST完全匯出,使用者名稱system密碼manager匯出到D:\\daochu.dmp中
expsystem/manager@TESTfile=d:\\daochu.dmpfull=y
2將資料庫中system使用者與sys使用者的表匯出
expsystem/manager@TESTfile=d:\\daochu.dmpowner=(system,sys)
3將資料庫中的表inner_notify、notify_staff_relat匯出
expaichannel/aichannel@TESTDB2file=d:\\data\
ewsmgnt.dmptables=(inner_notify,notify_staff_relat)
4將資料庫中的表table1中的欄位filed1以"00"打頭的資料匯出
expsystem/manager@TESTfile=d:\\daochu.dmptables=(table1)query=\\"wherefiled1like"00%"\\"
上面是常用的匯出,對於壓縮,既用winzip把dmp檔案可以很好的壓縮。
也可以在上面命令後面加上compress=y來實現。