sqlplus /nologSQL> conn /as sysdba2.刪除用戶drop user username casc..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Oracle 創(chuàng)建表空間,用戶,賦值(簡裝)

發(fā)布時間:2020-06-30 07:09:49 來源:網(wǎng)絡(luò) 閱讀:749 作者:v289 欄目:關(guān)系型數(shù)據(jù)庫

一,

1.Oracle 創(chuàng)建表空間,用戶,賦值(簡裝)

C:\Documents and Settings\Administrator>sqlplus /nolog
SQL> conn /as sysdba

2.刪除用戶
drop user username cascade;

3.創(chuàng)建自增表表空間
SQL> create tablespace 表空間 datafile 'E:\oracle\product\10.2.0\oradata\表空間.dbf' size 50m autoextend on;
4.創(chuàng)建用戶

create user username identified by password default tablespace 表空間;
5.賦值

grant dba to username;

exit

6.導(dǎo)入數(shù)據(jù)庫

在本地導(dǎo)入數(shù)據(jù)庫

C:\>imp 用戶名/用戶密碼@實例名 file=G:\oracle\oracle.bak full=y

7.導(dǎo)入數(shù)據(jù)庫

導(dǎo)出非本地數(shù)據(jù)庫

C:\>exp rows=y owner=用戶名 file="E:\289\庫名_201107.dmp" log="e:\289\庫名_201107.log"
額外操作

增加表空間
SQL> alter tablespace sjpt resize 500m;
ORA-32773: 不支持對小文件表空間 SJPT 的操作

如果報以上錯誤則換為:
SQL> alter tablespace sjpt add datafile 'd:\oradata\sjpt1.dbf' size 500m reuse autoextend on next 100m;

 

二,

http://jun0325.javaeye.com/blog/603783
2.1.查看所有表空間大小:
select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;

2.2.已經(jīng)使用的表空間大?。?br />select tablespace_name,sum(bytes)/1024/1024 from dba_free_space group by tablespace_name;

2.3. 所以使用空間可以這樣計算:
select a.tablespace_name,total,free,total-free used from    
( select tablespace_name,sum(bytes)/1024/1024 total from dba_data_files   
   group by tablespace_name) a,    
( select tablespace_name,sum(bytes)/1024/1024 free from dba_free_space   
   group by tablespace_name) b   
where a.tablespace_name=b.tablespace_name;

 

最近一直在導(dǎo)入Oracle的很多備份到新的服務(wù)器上的新的Oracle上,但是導(dǎo)入新服務(wù)器的Oracle上后,發(fā)現(xiàn)使用的仍然是之前默認使用的USERS表空間,并非使用我自行創(chuàng)建的表空間,于是從網(wǎng)上索羅了很多修改表空間的方法終于搞定了。
主要用到了下面幾個sql: 
(1) 查詢占用該表空間的表: select segment_name,bytes/1024/1024 from dba_segments where tablespace_name='ts_name' and segment_type='TABLE'; 
(2) 修改表所使用的表空間: alter table buffalo_wf_processinstance move tablespace "ts_name"; 
(3) 修改帶有大字段表的表空間: alter table tb_name(表名) move tablespace tbs_name(表空間名) lob(col_lob1(字段名),col_lob2) store as(tablesapce tbs_name); 
(4) 對于有索引的表重建索引: alter index PK_T_CMS_CATALOG(索引名) rebuild; 不知道各位高手在遇到這種情況的時候是如何修改它的表空間?

 

 三,

3.1

查看表空間是否為自增??

---如果有多個數(shù)據(jù)文件,則單個顯示分開顯示、

 select TABLESPACE_NAME, AUTOEXTENSIBLE from dba_data_files;

----表空間沒有自增屬性,而表空間中的數(shù)據(jù)文件是可以自增的,所以間接達到表空間自增

select distinct TABLESPACE_NAME, AUTOEXTENSIBLE from dba_data_files;

3.2

查看數(shù)據(jù)文件,有時會有多個,而且不在同一目錄,所以需要用到

select * from dba_data_files;


 2011-01-06


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI