oracle下表空間的導出,使用者的删除,表空間删除,使用者建立,表空間建立,資料導入的shell
使用非oracle使用者執行該腳本
參數說名
$1:base表空間的使用者名
$2:同步表空間的使用者名
使用場景
測試用,base表空間用于更新建立一些固化資料。同步表空間用于測試用,每次去和base表空間拉平資料
#!/bin/sh
oraclehome=$ORACLE_HOME
echo $oraclehome
localdir="/oracle/data"
echo $localdir
#删除已經存在的臨時dmp檔案
rm -rf $localdir/$2temp.dmp
rmresult=$?
echo "rm $2temp.dmp result:$rmresult"
#将使用者$1的表空間導出
su - oracle -c "exp dba/dba file=$localdir/$2temp.dmp owner=$1"
expresult=$?
if [ "$expresult" != "0" ];then
echo "exp $1 tablespace failure!!!"
fi
#先删除使用者$2及其表空間,然後再建立該使用者及表空間
su - oracle -c "${ORACLE_HOME}/bin/sqlplus /nolog" <
connect / as sysdba
drop user $2 cascade;
drop tablespace $2 including contents and datafiles;
create tablespace $2 datafile '/oracle/product/10.2.0/oradata/$2.dbf' size 5M autoextend on;
create user $2 identified by "$2" default tablespace $2 temporary tablespace TEMP profile DEFAULT;
grant connect to $2;
grant resource to $2;
grant create any table to $2;
grant create any trigger to $2;
grant create any type to $2;
grant create any view to $2;
grant unlimited tablespace to $2;
exit
EOF
crdrresult=$? if [ "$crdrresult" != "0" ];then echo "drop user and tablespace failure!!!" echo "create user and tablespace failure!!!" else #剛建完的使用者不能馬上使用,等候10秒 sleep 10s #更換dmp檔案中的表空間名 sed -i 's/TABLESPACE "$1"/TABLESPACE "$2"/g' $localdir/$2temp.dmp #使用imp指令導出表空間資料到使用者$2的表空間 su - oracle -c "imp dba/dba file=$localdir/$2temp.dmp fromuser=$1 touser=$2" impresult=$? if [ "$impresult" != "0" ];then echo "imp failure!!!" else echo "imp success!!!" fi fi
總結
如果覺得程式設計之家網站内容還不錯,歡迎将程式設計之家網站推薦給程式員好友。
本圖文内容來源于網友網絡收集整理提供,作為學習參考使用,版權屬于原作者。