建立使用者 表空間 分配許可權以及匯入匯出資料

2021-06-23 04:17:29 字數 713 閱讀 9190

a.建立使用者、表空間、分配許可權  

第1步:建立資料表空間  

create tablespace topscf_chs_bs_ts   

logging 

datafile 'd:\oracle\product\10.2.0\oradata\zhang\topscf_chs_bs_ts.dbf'  

size 50m 

autoextend on 

next 50m maxsize 20480m 

extent management local; 

第2步:建立使用者並指定表空間  

create user topscf_chs_bs identified by pass1234  

default tablespace topscf_chs_bs_ts  

temporary tablespace temp;  

第3步:給使用者授予許可權  

grant connect,resource,dba to topscf_chs_bs;

b.資料庫的匯出匯入,進入cmd

匯出:exp topscf_chs_bs/pass1234@deve15 file=d:\topscfchsbs.dmp owner=topscf_chs_bs

匯入:imp topscf_chs_bs/pass1234@zhang  file=d:\topscfchsbs.dmp full=y

建立使用者 表空間 分配許可權 匯入dmp

建立使用者 create user fdjtest identified by zzg123 修改使用者的密碼 alter user fdjtest identified by fdjtest 預設情況下使用者建立好後系統會預設給該使用者分配乙個表空間 users 檢視使用者所在的表空間 selec...

建立表空間 使用者 分配許可權

建立表空間 size 500m autoextend on next 50m maxsize unlimited extent management local uniform segment space management auto size 100m autoextend on next 50...

Oracle建立表空間,使用者,分配許可權

查詢某登陸使用者下的表 select from user tables 查詢非登陸使用者下的表 select from all tables where owern user name 注意大小寫,user name要為大寫 以某個使用者登陸,如果要查詢同一例項下其它使用者的表,可以在表名前加上 u...