1.安裝oracle資料庫時運用安裝程式時選擇「以管理員身份執行」及「以相容模式執行」;
2.以管理員身份登入sqlplus
進入cmd,在命令列介面輸入sqlplus sysdba/pwd as sysdba;
3.建立使用者並授權
create user test identified by "password";
grant connect,dba to test;
grant exp_full_database,imp_full_database,resource,create any sequence to test;
grant create any trigger,create any view,create table,drop any view to test;
4.匯入資料庫
進入cmd,在命令列介面輸入imp user/pwd@dbaname file=d:/*.dmp full=y
使用者必須有匯入資料庫許可權;
5.匯出資料庫
進入cmd,在命令列介面輸入exp user/pwd@dbname file=d:/*.dmp
使用者必須有匯出資料庫許可權;
Oracle匯入遠端資料庫資料及匯入
exp本地匯出與imp本地匯入 exp命令 1 exp username psw test file d test.dmp full y 2 exp username psw test file d test.dmp owner ly 3 exp username psw test file d t...
oracle資料庫導庫問題
一 dmp導庫過程中,資料量小的表匯入成功,到資料量大的表時開始報錯。發現原庫的表空間是users,匯入新庫後預設表空間是users,根據錯誤提示檢視新庫的的表空間users空間不大。採取源庫 新庫的表空間更換。imp 00058 遇到 oracle 錯誤 1653 ora 01653 表 zrzy...
PostgreSQL資料庫管理資料匯入匯出
資料庫的匯入匯出是最常用的功能之一,而 postgresql 提供的對應工具為 pg dump 和pg restore pg dump 是用於備份 postgresql 資料庫的工具。它可以在資料庫正在使用的時候進行完整一致的備份,並不阻塞其它使用者對資料庫的訪問。pg dump匯出預設是copy ...