oracle項目部署維護最常用sql語句
大家好,這是小編我整理的 每次開發完項目到現場部署服務器時最常用到的一些oracle數據庫sql語句,希望能幫到大家。
-- 創建數據表空間
create tablespace pssts
logging
datafile 'D:\oracle\product\10.2.0\oradata\orcl\pssts.dbf'
size 10m
autoextend on
next 10m maxsize 20480m
extent management local;
-- 新建用戶並指定表空間
create user pssts identified by pssts123 default tablespace pssts temporary tablespace temp;
-- 為用戶授權
grant connect,dba to pssts ;
--導入數據庫
imp pssts/pssts123@orcl fromuser=stpssts touser=pssts file=D:\log=D:\2.log
--導出數據庫
exp pssts/pssts123@orcl file=D:\pssts.dmp owner=pssts log=D:\pssts.log
-- 刪除用戶
drop user pssts cascade;
-- 刪除表空間
drop tablespace pssts including contents and datafiles;