使用者名稱:demods
表空間:eas_d_demods_standard
表空間:eas_t_demods_standard
注意建立表空間以及授權時 建議賬號sys/admin以sysdba身份進行建立以及授權 否則無法匯入,因為在匯入時會找不到對應的使用者以及檢視
create directory expdp_dump as 'e:\databak';//把dmp 檔案 比如st80null.dmp 丟這個資料夾裡面
//設定自動增長
create tablespace eas_d_demods_standard datafile 'd:\database80\eas_d_demods_standard.ora' size 2000m autoextend on;
create temporary tablespace eas_t_demods_standard tempfile 'd:\database80\eas_t_demods_standard.dbf' size 500m autoextend on;
//建立使用者並給他預設的表空間
create user ppg identified by ppg default tablespace eas_d_demods_standard temporary tablespace eas_t_demods_standard
//授權
grant dba to ppg;
//刪除對應的表空間
drop tablespace eas_d_demods_standard including contents and datafiles cascade constraints;
drop tablespace eas_t_demods_standard including contents and datafiles cascade constraints;
drop user ppg cascade
//上面所以的語句都是在sqlplus 裡面或者plsql 裡面執行
//下面的這條匯入語句是在cmd 裡面直接執行
impdp ppg/ppg remap_schema=demods:ppg directory=expdp_dump parallel=2 dumpfile=st80null.dmp
還原資料庫
use gyjlbigfootmis goif exists select from sysobjects where name kymp 還原資料庫 and type p begin drop procedure kymp 還原資料庫 endgo create procedure kymp 還原資...
資料庫還原
訊息 5133,級別 16,狀態 1,第 1 行 對檔案 d microsoft sqlserver mssql.1 mssql data db camp unit 2.mdf 的目錄查詢失敗,出現作業系統錯誤 3 系統找不到指定的路徑。訊息 3156,級別 16,狀態 3,第 1 行 檔案 db ...
還原資料庫
在還原資料庫時,有時會提示因為資料庫正在使用,所以無法獲得對資料庫的獨佔訪問權 這時需要在還原資料庫之前關閉正在使用資料庫的執行緒。解決方案如下 執行該方案,必須首先定位到master資料庫,然後在分析查詢器中執行以下語句 alter database 資料庫名 set offline with r...