標籤:oracl ble 視窗 使用者名稱 from 語句 manage channel new
oracle匯入匯出 dmp檔案:
開啟cmd視窗,在cmd視窗下,按照個人需要輸入以下對應的命令:
1、imp 使用者名稱/密碼@網路服務名 file=XXX.dmp fromuser=XXX touser=XXX;//匯入dmp檔案
2、imp 使用者名稱/密碼@網路服務名 file=xxx.dmp full=y;//匯入dmp檔案
3、imp aichannel/[email protected] full=y file= d:\data\newsmgnt.dmp ignore=y;//跳過建表語句
4、exp system/[email protected] file=d:\daochu.dmp full=y;//匯出整個資料庫
5、exp system/[email protected] file=d:\daochu.dmp owner=(system,sys)//匯出指定使用者的資料
6、exp system/[email protected] file=d:\daochu.dmp tables=(table1) igonre = y;//匯出指定表(igonre可有可無)
7、exp aichannel/[email protected] file= d:\data\newsmgnt.dmp tables=(inner_notify,notify_staff_relat);//將資料庫中的表inner_notify、notify_staff_relat匯出
8、exp 使用者名稱/密碼@網路服務名 file=xxx.dmp tables=(表名);//匯出 dmp檔案
9、exp 使用者名稱/密碼@網路服務名 file=xxx.dmp tables=(table1,table2,table3)。//匯出多個 dmp檔案
oracle匯入匯出 dmp檔案