修改表空間大小

2021-09-12 12:44:35 字數 2351 閱讀 8621

--1、檢視表在那個表空間

select tablespace_name,table_name from user_talbes where table_name='employ';

--2、獲取使用者的預設表空間

select   username,   default_tablespace     from   dba_users where username='scott';

--3、檢視表空間所有的檔案  

select * from dba_data_files where tablespace_name='users';

--4、檢視表空間使用情況:

select tbs 表空間名,                                    

sum(totalm) 總共大小m,                                    

sum(usedm) 已使用空間m,                                    

sum(remainedm) 剩餘空間m,                                    

sum(usedm)/sum(totalm)*100已使用百分比,                            

sum(remainedm)/sum(totalm)*100剩餘百分比                            

from(                                            

select b.file_id id,                                    

b.tablespace_name tbs,                                    

b.file_name name,                                    

b.bytes/1024/1024totalm,                                    

(b.bytes-sum(nvl(a.bytes,0)))/1024/1024usedm,                        

sum(nvl(a.bytes,0)/1024/1024) remainedm,                            

sum(nvl(a.bytes,0)/(b.bytes)*100),                                

(100- (sum(nvl(a.bytes,0))/(b.bytes)*100))                            

from dba_free_space a,dba_data_files b                            

where a.file_id = b.file_id                                

group by b.tablespace_name,b.file_name,b.file_id,b.bytes                    

order by b.tablespace_name                                

)                                            

group by tbs                                        

--5、擴充套件表空間 

alter database datafile 'd:\oracle\product\oradata\test\users01.dbf' resize 50m;

--自動增長  

alter database datafile 'd:\oracle\product\oradata\test\users01.dbf' autoextend on next 50m maxsize 500m;    

--增加資料檔案

alter tablespace yourtablespacename add datafile 'd:\newtablespacefile.dbf' size 5m;   

修改表空間大小

修改表空間大小有兩種方法 一是修改當前資料檔案大小 alter database tempfile data hybzdb tempfile temp.263.792523499 resize 3g 說明 data hybzdb tempfile temp.263.792523499是乙個資料檔案的...

修改表空間大小

由於在最開始建立表空間時,表空間設的不夠大,而且不是autoextend的,今天發現不夠用了,資料導不進去。現在要做的事情有兩個,一是把表空間調整大一些,另乙個是把表空間設定成可以自動擴充套件的。與表空間有關的幾個檢視如下 select from dba tablespaces select fro...

Oracle修改表空間大小

使用oracle10g建立資料庫後,向資料庫中匯入了部分資料,第二天繼續向資料庫中匯入資料表時發生錯誤 org.hibernate.exception.genericjdbcexception ora 00604 遞迴 sql 級別 1 出現錯誤 ora 04031 無法分配 256 位元組的共享記...