真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

oracle臨時表空間的增刪改查命令

本篇內(nèi)容介紹了“oracle臨時表空間的增刪改查命令”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)建站公司2013年成立,先為平塘等服務(wù)建站,平塘等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為平塘企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

oracle 臨時表空間的增刪改查

1、查看臨時表空間 (dba_temp_files視圖)(v_$tempfile視圖)
select tablespace_name,file_name,bytes/1024/1024 file_size,autoextensible from dba_temp_files;
select status,enabled, name, bytes/1024/1024 file_size from v_$tempfile;--sys用戶查看

2、縮小臨時表空間大小
alter database tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\TELEMT\TEMP01.DBF' resize 100M;

3、擴展臨時表空間:
方法一、增大臨時文件大?。?br/>SQL> alter database tempfile ‘/u01/app/oracle/oradata/orcl/temp01.dbf’ resize 100m;
方法二、將臨時數(shù)據(jù)文件設(shè)為自動擴展:
SQL> alter database tempfile ‘/u01/app/oracle/oradata/orcl/temp01.dbf’ autoextend on next 5m maxsize unlimited;
方法三、向臨時表空間中添加數(shù)據(jù)文件:
SQL> alter tablespace temp add tempfile ‘/u01/app/oracle/oradata/orcl/temp02.dbf’ size 100m;

4、創(chuàng)建臨時表空間
SQL> create temporary tablespace temp1 tempfile ‘/u01/app/oracle/oradata/orcl/temp11.dbf’ size 10M;

5、更改系統(tǒng)的默認(rèn)臨時表空間:
--查詢默認(rèn)臨時表空間
select * from database_properties where property_name='DEFAULT_TEMP_TABLESPACE';
--修改默認(rèn)臨時表空間
alter database default temporary tablespace temp1;
所有用戶的默認(rèn)臨時表空間都將切換為新的臨時表空間:
select username,temporary_tablespace,default_ from dba_users;
--更改某一用戶的臨時表空間:
alter user scott temporary tablespace temp;

6、刪除臨時表空間
刪除臨時表空間的一個數(shù)據(jù)文件:
SQL> alter database tempfile ‘/u01/app/oracle/oradata/orcl/temp02.dbf’ drop;
刪除臨時表空間(徹底刪除):
SQL> drop tablespace temp1 including contents and datafiles cascade constraints;

7、查看臨時表空間的使用情況(GV_$TEMP_SPACE_HEADER視圖必須在sys用戶下才能查詢)
GV_$TEMP_SPACE_HEADER視圖記錄了臨時表空間的使用大小與未使用的大小
dba_temp_files視圖的bytes字段記錄的是臨時表空間的總大小
SELECT temp_used.tablespace_name,
       total - used as "Free",
       total as "Total",
       round(nvl(total - used, 0) * 100 / total, 3) "Free percent"
  FROM (SELECT tablespace_name, SUM(bytes_used) / 1024 / 1024 used
          FROM GV_$TEMP_SPACE_HEADER
         GROUP BY tablespace_name) temp_used,
       (SELECT tablespace_name, SUM(bytes) / 1024 / 1024 total
          FROM dba_temp_files
         GROUP BY tablespace_name) temp_total
 WHERE temp_used.tablespace_name = temp_total.tablespace_name

新建個臨時表空間,查看空間情況,新的臨時表空間TEMP1從v$temp_space_header和dba_temp_free_space

統(tǒng)計出來的free space是一樣的,但當(dāng)前的Default TEMP從兩個視圖里統(tǒng)計結(jié)果怎么不一樣,TEMP在v$temp_space_header里的free space 是0,

但在dba_temp_free_space里統(tǒng)計的是134217728。 

SQL> create temporary tablespace temp1 tempfile 'E:\oracle\oradata\ORCL\DATAFILE\temp01.dbf' size 200M;

表空間已創(chuàng)建。

SQL> select tablespace_name,bytes_used,BLOCKS_USED,bytes_free from v$temp_space_header;

TABLESPACE_NAME                                              BYTES_USED BLOCKS_USED     BYTES_FREE

------------------------------------------------------------ ---------- ----------- ------------------------------

TEMP                                                                  137355264       16767                0

TEMP1                                                                1048576           128                    208666624

SQL> select * from dba_temp_free_space;

TABLESPACE_NAME                                              TABLESPACE_SIZE ALLOCATED_SPACE FREE_SPACE SHARED                        INST_ID

------------------------------------------------------------ --------------- --------------- ---------- -------------------------- ----------

TEMP                                                               137355264       137355264  134217728 SHARED

TEMP1                                                              209715200         1048576  208666624 SHARED


8、查找消耗資源比較的sql語句
Select se.username,
       se.sid,
       su.extents,
       su.blocks * to_number(rtrim(p.value)) as Space,
       tablespace,
       segtype,
       sql_text
  from v$sort_usage su, v$parameter p, v$session se, v$sql s
 where p.name = 'db_block_size'
   and su.session_addr = se.saddr
   and s.hash_value = su.sqlhash
   and s.address = su.sqladdr
 order by se.username, se.sid
 
9、查看當(dāng)前臨時表空間使用大小與正在占用臨時表空間的sql語句
select sess.SID, segtype, blocks * 8 / 1000 "MB", sql_text
  from v$sort_usage sort, v$session sess, v$sql sql
 where sort.SESSION_ADDR = sess.SADDR
   and sql.ADDRESS = sess.SQL_ADDRESS
 order by blocks desc;

10、臨時表空間組介紹
  1)創(chuàng)建臨時表空間組:
create temporary tablespace tempts1 tempfile '/home/oracle/temp1_02.dbf' size 2M tablespace group group1;
create temporary tablespace tempts2 tempfile '/home/oracle/temp2_02.dbf' size 2M tablespace group group2;
 
 2)查詢臨時表空間組:dba_tablespace_groups視圖
select * from dba_tablespace_groups;
GROUP_NAME                     TABLESPACE_NAME
------------------------------ ------------------------------
GROUP1                         TEMPTS1
GROUP2                         TEMPTS2

 3)將表空間從一個臨時表空間組移動到另外一個臨時表空間組:
alter tablespace tempts1 tablespace group GROUP2 ;
select * from dba_tablespace_groups;

GROUP_NAME                     TABLESPACE_NAME
------------------------------ ------------------------------
GROUP2                         TEMPTS1
GROUP2                         TEMPTS2

 4)把臨時表空間組指定給用戶
alter user scott temporary tablespace GROUP2;

 5)在數(shù)據(jù)庫級設(shè)置臨時表空間
alter database default temporary tablespace GROUP2; 

 6)刪除臨時表空間組 (刪除組成臨時表空間組的所有臨時表空間)
drop tablespace tempts1 including contents and datafiles;
select * from dba_tablespace_groups;
GROUP_NAME                     TABLESPACE_NAME
------------------------------ ------------------------------
GROUP2                         TEMPTS2

drop tablespace tempts2 including contents and datafiles;
select * from dba_tablespace_groups;
GROUP_NAME                     TABLESPACE_NAME

11、對臨時表空間進行shrink(11g新增的功能)
--將temp表空間收縮為20M
alter tablespace temp shrink space keep 20M; 
--自動將表空間的臨時文件縮小到最小可能的大小
ALTER TABLESPACE temp SHRINK TEMPFILE ’/u02/oracle/data/lmtemp02.dbf’; 

臨時表空間作用
Oracle臨時表空間主要用來做查詢和存放一些緩沖區(qū)數(shù)據(jù)。臨時表空間消耗的主要原因是需要對查詢的中間結(jié)果進行排序。
重啟數(shù)據(jù)庫可以釋放臨時表空間,如果不能重啟實例,而一直保持問題sql語句的執(zhí)行,temp表空間會一直增長。直到耗盡硬盤空間。
網(wǎng)上有人猜測在磁盤空間的分配上,oracle使用的是貪心算法,如果上次磁盤空間消耗達到1GB,那么臨時表空間就是1GB。
也就是說當(dāng)前臨時表空間文件的大小是歷史上使用臨時表空間最大的大小。

臨時表空間的主要作用:
  索引create或rebuild;
  Order by 或 group by;
  Distinct 操作;
  Union 或 intersect 或 minus;
  Sort-merge joins;
  analyze.

轉(zhuǎn)自: http://www.blogjava.net/japper/archive/2012/06/28/381721.html

下面是一個處理臨時表空間例子

https://blog.csdn.net/u013050593/article/details/77850929/

運維人員在查詢億級數(shù)據(jù)排序時,數(shù)據(jù)庫報錯,提示:ora-01652無法通過128(在表空間temp中)擴展temp段,排查流程如下:

1、查詢表空間使用率:

select * from (

Select a.tablespace_name,

to_char(a.bytes/1024/1024,'99,999.999') total_bytes,

to_char(b.bytes/1024/1024,'99,999.999') free_bytes,

to_char(a.bytes/1024/1024 - b.bytes/1024/1024,'99,999.999') use_bytes,

to_char((1 - b.bytes/a.bytes)*100,'99.99') || '%'use

from (select tablespace_name,

sum(bytes) bytes

from dba_data_files

group by tablespace_name) a,

(select tablespace_name,

sum(bytes) bytes

from dba_free_space

group by tablespace_name) b

where a.tablespace_name = b.tablespace_name

union all

select c.tablespace_name,

to_char(c.bytes/1024/1024,'99,999.999') total_bytes,

to_char( (c.bytes-d.bytes_used)/1024/1024,'99,999.999') free_bytes,

to_char(d.bytes_used/1024/1024,'99,999.999') use_bytes,

to_char(d.bytes_used*100/c.bytes,'99.99') || '%'use

from

(select tablespace_name,sum(bytes) bytes

from dba_temp_files group by tablespace_name) c,

(select tablespace_name,sum(bytes_cached) bytes_used

from v$temp_extent_pool group by tablespace_name) d

where c.tablespace_name = d.tablespace_name

)

order by tablespace_name

發(fā)現(xiàn)表空間使用率100%。

2、使用11g表空間收縮表空間,降低使用率,sql語句:ALTER  TABLESPACE  TEMP SHRINK  SPACE

3、查看到temp表空間大小變?yōu)?.99M,使用率0%;

4、需添加臨時數(shù)據(jù)文件,設(shè)置大小,sql語句如下: alter tablespace temp add tempfile '/oracle/oradata/dbaxj/temp02.dbf' size 10240m autoextend on next 1024m maxsize 30G;

5、再次查看表空間使用率

降低到33%,問題解決

“oracle臨時表空間的增刪改查命令”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


當(dāng)前文章:oracle臨時表空間的增刪改查命令
轉(zhuǎn)載源于:http://weahome.cn/article/pceosi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部