Oracle全庫匯出和特定使用者匯入
Oracle全庫匯出和特定使用者匯入
1 建立新使用者並插入資料
C:\Users\Administrator> sqlplus system/oracle
SQL> create user haishu identified by haishu;
SQL> grant connect, resource to haishu;
SQL> conn haishu/haishu;
SQL> create table test_table (id number);
SQL> insert into test_table values(1);
SQL> commit;
SQL> exit;
2 用system使用者匯出全庫
C:\Users\Administrator> exp system/oracle file=e:\fulldb.dmp log=e:\fulldb_exp.log full=y
3 刪除haishu.test_table
C:\Users\Administrator> sqlplus haishu/haishu;
SQL> drop table test_table;
SQL> exit
4 匯入haishu.test_table
C:\Users\Administrator> imp system/oracle file=e:\fulldb.dmp log=e:\fulldb_imp.log fromuser=haishu touser=haishu tables=(test_table)
匯入過程會有很多警告,但不影響資料的匯入。
5 驗證
C:\Users\Administrator> sqlplus haishu/haishu;
SQL> select * from test_table;
6 注意
資料庫匯入匯出儘量不要使用sys使用者。若不慎誤用了sys使用者,匯入匯出語句應該像下面這樣:
C:\Users\Administrator> exp \"/ as sysdba\" file=e:\fulldb.dmp log=e:\fulldb_exp.log full=y
C:\Users\Administrator> imp \"/ as sysdba\" file=e:\fulldb.dmp log=e:\fulldb_imp.log fromuser=haishu touser=haishu tables=(test_table)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29485627/viewspace-1792655/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle 10.2.0.4 expdp全庫匯出 和分使用者impdp匯入的記錄Oracle
- Oracle資料庫匯入匯出。imp匯入命令和exp匯出命令Oracle資料庫
- expdp與impdp全庫匯出匯入
- Oracle資料庫的匯入和匯出命令Oracle資料庫
- exp 匯出 全庫,全使用者
- expdp與impdp全庫匯出匯入(二)
- oracle資料庫匯入匯出命令!Oracle資料庫
- 匯出和匯入資料庫使用者操作說明資料庫
- 【mysql】資料庫匯出和匯入MySql資料庫
- Oracle增量匯入匯出Oracle
- Oracle資料庫的常用命令和匯入匯出Oracle資料庫
- AWR資料的匯出和匯入全過程
- SQL資料庫的匯入和匯出SQL資料庫
- Oracle資料泵的匯入和匯出Oracle
- 【匯入匯出】Oracle 常用匯入匯出工具集錦Oracle
- Oracle 資料匯入匯出Oracle
- oracle排除表匯入匯出Oracle
- Oracle資料匯入匯出Oracle
- Oracle建立使用者、表空間、匯入匯出、...命令Oracle
- 【匯出匯入】匯出匯入 大物件物件
- 【匯入匯出】將資料匯入到其他使用者
- AWR跨庫匯出與匯入
- 資料庫的匯入匯出資料庫
- mysql 資料庫匯入匯出MySql資料庫
- MySQL資料庫匯入匯出MySql資料庫
- oracle匯入匯出之expdp/impdpOracle
- Oracle匯入(imp )與匯出(exp )Oracle
- 【ORACLE 匯入匯出】exp 錯誤Oracle
- ORACLE匯入匯出命令exp/impOracle
- 【oracle 匯入、匯出】escape 的作用。Oracle
- Oracle 12c expdp和impdp匯出匯入表Oracle
- Oracle - UTL_FILE包之BLOB匯入和匯出Oracle
- 怎樣在Oracle資料庫中高速匯出/匯入Oracle資料庫
- PROC++批次匯入匯出ORACLE資料庫表 (轉)Oracle資料庫
- expdp 匯出特定物件物件
- kxcel, 方便匯入和匯出 ExcelExcel
- 匯出和匯入Gradle工程Gradle
- postgresql 資料匯入和匯出SQL