oracle10g_impdp工具測試學習_之三_remap相關
expdp system/system schemas=newtbs dumpfile=dir:export_user_newtbs.dmp
---注意:如果newtbs2使用者不存在,imp job 會自動為你建立
impdp system/system dumpfile=dir:export_user_newtbs.dmp remap_schema=newtbs:newtbs2
alter user newtbs identified by system account unlock;
grant resource,connect to newtbs2;
select default_tablespace from user_users;--變更使用者使用還是newtbs使用者的表空間
---remap_tablespace ---下面,就是把資料遷移到另一個表空間,事先建變更使用者和變更表空間,且變更表空間空間要足
SQL> create tablespace target datafile '/oracle/target01.dbf' size 500m;
Tablespace created.
SQL> create user target identified by system default tablespace target account unlock;
User created.
SQL> grant resource,connect to target;
Grant succeeded.
impdp system/system dumpfile=dir:export_user_newtbs.dmp remap_schema=newtbs:target remap_tablespace=newtbs:target
---reuse_datafiles ---是否重新初始化轉儲檔案中已經存在的create tablespace對應的資料檔案,經測試我沒有發現這個選擇的功能,怪了???
expdp system/system tablespaces=newtbs dumpfile=dir:export_tablespace_newtbs.dmp
---注意:如果newtbs2使用者不存在,imp job 會自動為你建立
impdp system/system dumpfile=dir:export_user_newtbs.dmp remap_schema=newtbs:newtbs2
alter user newtbs identified by system account unlock;
grant resource,connect to newtbs2;
select default_tablespace from user_users;--變更使用者使用還是newtbs使用者的表空間
---remap_tablespace ---下面,就是把資料遷移到另一個表空間,事先建變更使用者和變更表空間,且變更表空間空間要足
SQL> create tablespace target datafile '/oracle/target01.dbf' size 500m;
Tablespace created.
SQL> create user target identified by system default tablespace target account unlock;
User created.
SQL> grant resource,connect to target;
Grant succeeded.
impdp system/system dumpfile=dir:export_user_newtbs.dmp remap_schema=newtbs:target remap_tablespace=newtbs:target
---reuse_datafiles ---是否重新初始化轉儲檔案中已經存在的create tablespace對應的資料檔案,經測試我沒有發現這個選擇的功能,怪了???
expdp system/system tablespaces=newtbs dumpfile=dir:export_tablespace_newtbs.dmp
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-614648/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle10g_impdp工具測試學習_之一Oracle
- oracle10g_impdp工具測試學習_之二_transport_tablespacesOracle
- 學習 java 做自動化測試相關Java
- Oracle SCN相關問題學習與測試Oracle
- impdp中remap_datafile的測試。REM
- 大資料測試學習筆記之測試工具集大資料筆記
- iOS 應用效能測試的相關方法、工具及技巧iOS
- arm相關學習
- 20分鐘理清Maven構建中的測試相關工具的關係Maven
- 使用Python學習selenium測試工具Python
- 軟體測試工具QTP學習小結QT
- 軟體測試學習教程—— 簡談list相關的生成器表示式
- 壓力測試相關指標指標
- oracle鎖級別相關測試Oracle
- 【DG】搭建(二)及相關測試
- Inception相關功能學習
- 安全測試學習
- detect_indent_fft.hdev相關例程學習(檢測凹痕)FFTdev
- oracle10g_expdp工具測試學習_之一Oracle
- 深度學習相關論文深度學習
- 深度學習相關網址深度學習
- IOS學習 UIGestureRecognizer相關iOSUI
- Caffe:Layer的相關學習
- 相關API學習網址API
- 深度學習相關理論深度學習
- 相關工具
- 求助,現在有什麼 AI 相關的比較實用測試工具嗎?AI
- Java異常及相關呼叫效能測試Java
- 軟體測試相關簡要記錄
- c# stream類相關測試續(二)C#
- 大資料測試 - 相關性評估大資料
- Python容器相關簡單效能測試Python
- 半導體測試行業的相關術語行業
- javascript的學習測試JavaScript
- 測試學習SQL篇SQL
- 學習測試框架Mocha框架
- 單元測試學習
- Flutter 學習之路 - 測試(單元測試,Widget 測試,整合測試)Flutter