Oracle sde資料備份 恢復

2021-04-13 12:42:46 字數 2118 閱讀 8431

1.資料庫完整備份

exp system/password@sid

full=y file=d:/system.dmp log=d:/system.log

2.資料入庫

(a)從資料庫中刪除sde和sde user使用者

drop user sde cascade;

drop user sdeuser cascade;

(b)建立新的sde使用者和sdeuser

下為建立sde使用者過程:

(i)建立表空間  

create tablespace "sde"

logging

datafile 'c:/oracle/oradata/oracle/sde.ora' size 200m

extent management local segment space management  auto  

(ii)建立使用者

create user "sde"  profile "default"

identified by "password" default tablespace "sde"

temporary tablespace "temp"

account unlock;

(iii)建立角色

grant "dba" to "sde";

grant "connect" to "sde";

grant "resource" to "sde";

(iiii)系統許可權

grant alter any index to "sde" with admin option;

grant alter any table to "sde" with admin option;

grant analyze any to "sde" with admin option;

grant create any index to "sde" with admin option;

grant create any procedure to "sde" with admin option;

grant create any sequence to "sde" with admin option;

grant create any trigger to "sde" with admin option;

grant create any view to "sde" with admin option;

grant create session to "sde" with admin option;

grant drop any index to "sde" with admin option;

grant drop any table to "sde" with admin option;

grant drop any view to "sde" with admin option;

grant drop any procedure to "sde" with admin option;

grant drop any sequence to "sde" with admin option;

grant execute any procedure to "sde" with admin option;

grant select any sequence to "sde" with admin option;

grant select any table to "sde" with admin option;

grant unlimited tablespace  to "sde" with admin option;

3.匯入sde和sdeuser的資料

注意順序,先sde,後sdeuser

imp system/passwor@sid

fromuser=sde touser=sde

imp system/passwor@sid

fromuser=sdeuser touser=sdeuser

以上提到的sde和sdeuser是不同的使用者,sde是arcsde安裝時的預設使用者,sdeuser

是指使用者儲存資料的使用者,如果之間使用sde預設使用者儲存,則省去所以的sdeuser操作

Oracle sde資料備份 恢復

1.資料庫完整備份 exp system password sid full y file d system.dmp log d system.log 2.資料入庫 a 從資料庫中刪除sde和sde user使用者 drop user sde cascade drop user sdeuser ca...

資料備份和恢復

阿里雲大學課程 資料備份和恢復 課程介紹 您一定會擔心企業的資料安全問題?如果出現了安全問題,企業敏感資料遭受到重大破壞時,您會尋找備份資料進行恢復?備份和恢復技術比較多,怎麼能有效的來進行資料的備份和恢復呢?本認證課程旨在幫助學員了解到常見的資料備份和恢復技術,掌握在windows系統下對sql ...

資料備份和恢復

阿里雲大學課程 資料備份和恢復 課程介紹 您一定會擔心企業的資料安全問題?如果出現了安全問題,企業敏感資料遭受到重大破壞時,您會尋找備份資料進行恢復?備份和恢復技術比較多,怎麼能有效的來進行資料的備份和恢復呢?本認證課程旨在幫助學員了解到常見的資料備份和恢復技術,掌握在windows系統下對sql ...