1. 程式人生 > >oracle匯入、匯出

oracle匯入、匯出

1、oracle匯出    
    exp 使用者名稱/密碼@資料庫ip/資料庫sid file=“檔案路徑及檔名” log =“檔案路徑及檔名”  [full=y] [owner="aaa"] [tables=(table)];
   
   1.將資料庫orcl完全匯出(完全匯出)
     exp aaa/[email protected]/orcl   file=d:/daochu.dmp log=d:/daochu.txt full=y;
   2.將資料庫使用者aaa的表匯出(使用者模式)
      exp aaa/[email protected]/orcl owner='aaa'  file=d:/daochu1.dmp log=d:/daochu1.txt;
   3.將資料庫的表table1匯出(表模式)
      exp aaa/
[email protected]
/orcl owner='aaa' file=d:/daochu2.dmp log=d:/daochu2.txt tables=(table1) 2、oracle匯入 imp 使用者名稱/密碼@資料庫ip/資料庫例項 file = '檔案路徑和檔名' [full=y] [fromuser =aaa] [touser=aaa] [owner=aaa][ables=(表名)] 1.將備份檔案daochu.dmp完全匯入到資料庫(完全匯入) imp aaa/[email protected]/orcl file=d:/daochu.dmp full=y; 2.把備份檔案daochu1.dmp備份到資料庫(使用者模式) imp aaa/
[email protected]
/orcl file=d:/daochu1.dmp fromuser=aaa touser = aaa; 3.將備份檔案daochu2.dmp中的表匯入資料庫(表模式) imp aaa/[email protected]/orcl owner=aaa file=d:/daochu2.dmp tables=(table1) ; 注: 1、[]內內容可以省略; 2、full = y 匯出或匯入一個完整的資料庫 3、fromuser 入一個或一組指定使用者所屬的全部表、索引和其他物件 4、touser 將一個使用者所屬的資料匯入另一個使用者 5、[tables=(table)] 匯入或匯出表 6、exp owner=user 將使用者user的物件匯出 imp owner=user 把使用者user的物件匯入