国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 數(shù)據(jù)庫(kù) > Oracle > 正文

oracle 常用SQL查詢,望對(duì)大家有所啟示(ZT)

2024-08-29 13:44:11
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

轉(zhuǎn)自:WWW.LOVEUNIX.COM    MADE BY SDAWNYJ
[color=red:5cc31c680c]1、查看表空間的名稱及大小[/color:5cc31c680c]
select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size
from dba_tablespaces t, dba_data_files d
where t.tablespace_name = d.tablespace_name
group by t.tablespace_name;
[color=red:5cc31c680c]2、查看表空間物理文件的名稱及大小[/color:5cc31c680c]
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name;
[color=red:5cc31c680c]3、查看回滾段名稱及大小[/color:5cc31c680c]
select segment_name, tablespace_name, r.status, 
(initial_extent/1024) InitialExtent,(next_extent/1024) NextExtent, 
max_extents, v.curext CurExtent
From dba_rollback_segs r, v$rollstat v
Where r.segment_id = v.usn(+)
order by segment_name ;
[color=red:5cc31c680c]4、查看控制文件[/color:5cc31c680c]
select name from v$controlfile;
[color=red:5cc31c680c]5、查看日志文件[/color:5cc31c680c]
select member from v$logfile;
[color=red:5cc31c680c]6、查看表空間的使用情況[/color:5cc31c680c]
select sum(bytes)/(1024*1024) as free_space,tablespace_name 
from dba_free_space
group by tablespace_name;

SELECT A.TABLESPACE_NAME,A.BYTES TOTAL,B.BYTES USED, C.BYTES FREE,
(B.BYTES*100)/A.BYTES "% USED",(C.BYTES*100)/A.BYTES "% FREE"
FROM SYS.SM$TS_AVAIL A,SYS.SM$TS_USED B,SYS.SM$TS_FREE C
WHERE A.TABLESPACE_NAME=B.TABLESPACE_NAME AND A.TABLESPACE_NAME=C.TABLESPACE_NAME; 
[color=red:5cc31c680c]7、查看數(shù)據(jù)庫(kù)庫(kù)對(duì)象[/color:5cc31c680c]
select owner, object_type, status, count(*) count# from all_objects group by owner, object_type, status;
[color=red:5cc31c680c]8、查看數(shù)據(jù)庫(kù)的版本[/color:5cc31c680c] 
Select version FROM PRodUCt_component_version 
Where SUBSTR(PRODUCT,1,6)='Oracle';
[color=red:5cc31c680c]9、查看數(shù)據(jù)庫(kù)的創(chuàng)建日期和歸檔方式[/color:5cc31c680c]
Select Created, Log_Mode, Log_Mode From V$Database; 
[color=red:5cc31c680c]10、捕捉運(yùn)行很久的SQL[/color:5cc31c680c]
column username format a12 
column opname format a16 
column progress format a8 


select username,sid,opname, 
       round(sofar*100 / totalwork,0)  '%' as progress, 
       time_remaining,sql_text 
from v$session_longops , v$sql 
where time_remaining <> 0 
and sql_address = address 
and sql_hash_value = hash_value 
/
[color=red:5cc31c680c]11。查看數(shù)據(jù)表的參數(shù)信息[/color:5cc31c680c]
SELECT   partition_name, high_value, high_value_length, tablespace_name,
         pct_free, pct_used, ini_trans, max_trans, initial_extent,
         next_extent, min_extent, max_extent, pct_increase, FREELISTS,
         freelist_groups, LOGGING, BUFFER_POOL, num_rows, blocks,
         empty_blocks, avg_space, chain_cnt, avg_row_len, sample_size,
         last_analyzed
    FROM dba_tab_partitions
   --WHERE table_name = :tname AND table_owner = :towner
ORDER BY partition_position

[color=red:5cc31c680c]12.查看還沒(méi)提交的事務(wù)[/color:5cc31c680c]
select * from v$locked_object;
select * from v$transaction;
[color=red:5cc31c680c]13。查找object為哪些進(jìn)程所用[/color:5cc31c680c]
select 
p.spid,
s.sid,
s.serial# serial_num,
s.username user_name,
a.type  object_type,
s.osuser os_user_name,
a.owner,
a.object object_name,
decode(sign(48 - command),
1,
to_char(command), 'Action Code #'  to_char(command) ) action,
p.program oracle_process,
s.terminal terminal,
s.program program,
s.status session_status   
from v$session s, v$access a, v$process p   
where s.paddr = p.addr and
      s.type = 'USER' and   
      a.sid = s.sid   and
   a.object='SUBSCRIBER_ATTR'
order by s.username, s.osuser

[color=red:5cc31c680c]14。回滾段查看[/color:5cc31c680c]
select rownum, sys.dba_rollback_segs.segment_name Name, v$rollstat.extents 
Extents, v$rollstat.rssize Size_in_Bytes, v$rollstat.xacts XActs, 

v$rollstat.gets Gets, v$rollstat.waits Waits, v$rollstat.writes Writes, 
sys.dba_rollback_segs.status status from v$rollstat, sys.dba_rollback_segs, 
v$rollname where v$rollname.name(+) = sys.dba_rollback_segs.segment_name and 
v$rollstat.usn (+) = v$rollname.usn order by rownum

[color=red:5cc31c680c]15。耗資源的進(jìn)程(top session)[/color:5cc31c680c]
select s.schemaname schema_name,    decode(sign(48 - command), 1, 
to_char(command), 'Action Code #'  to_char(command) ) action,    status 
session_status,   s.osuser os_user_name,   s.sid,         p.spid ,         s.serial# serial_num,  
nvl(s.username, '[Oracle process]') user_name,   s.terminal terminal,   
s.program program,   st.value criteria_value  from v$sesstat st,   v$session s  , v$process p   
where st.sid = s.sid and   st.statistic# = to_number('38') and   ('ALL' = 'ALL' 
or s.status = 'ALL') and p.addr = s.paddr order by st.value desc,  p.spid asc, s.username asc, s.osuser asc

[color=red:5cc31c680c]16。查看鎖(lock)情況[/color:5cc31c680c]
select /*+ RULE */ ls.osuser os_user_name,   ls.username user_name,  
decode(ls.type, 'RW', 'Row wait enqueue lock', 'TM', 'DML enqueue lock', 'TX', 
'Transaction enqueue lock', 'UL', 'User supplied lock') lock_type,  
o.object_name object,   decode(ls.lmode, 1, null, 2, 'Row Share', 3, 
'Row Exclusive', 4, 'Share', 5, 'Share Row Exclusive', 6, 'Exclusive', null) 
lock_mode,    o.owner,   ls.sid,   ls.serial# serial_num,   ls.id1,   ls.id2    
from sys.dba_objects o, (   select s.osuser,   s.username,   l.type,   
l.lmode,   s.sid,   s.serial#,   l.id1,   l.id2   from v$session s,   
v$lock l   where s.sid = l.sid ) ls  where o.object_id = ls.id1 and    o.owner 

<> 'SYS'   order by o.owner, o.object_name

[color=red:5cc31c680c]17。查看等待(wait)情況[/color:5cc31c680c]
SELECT v$waitstat.class, v$waitstat.count count, SUM(v$sysstat.value) sum_value 
FROM v$waitstat, v$sysstat WHERE v$sysstat.name IN ('db block gets', 
'consistent gets') group by v$waitstat.class, v$waitstat.count

[color=red:5cc31c680c]18。查看sga情況[/color:5cc31c680c]
SELECT NAME, BYTES FROM SYS.V_$SGASTAT ORDER BY NAME ASC

[color=red:5cc31c680c]19。查看catched object[/color:5cc31c680c]
SELECT owner,              name,              db_link,              namespace,  
            type,              sharable_mem,              loads,              executions,   
           locks,              pins,              kept        FROM v$db_object_cache
           
[color=red:5cc31c680c]20。查看V$SQLAREA[/color:5cc31c680c]
SELECT SQL_TEXT, SHARABLE_MEM, PERSISTENT_MEM, RUNTIME_MEM, SORTS, 
VERSION_COUNT, LOADED_VERSIONS, OPEN_VERSIONS, USERS_OPENING, EXECUTIONS, 
USERS_EXECUTING, LOADS, FIRST_LOAD_TIME, INVALIDATIONS, PARSE_CALLS, DISK_READS,
 BUFFER_GETS, ROWS_PROCESSED FROM V$SQLAREA
 
2[color=red:5cc31c680c]1。查看object分類數(shù)量[/color:5cc31c680c]
select decode (o.type#,1,'INDEX' , 2,'TABLE' , 3 , 'CLUSTER' , 4, 'VIEW' , 5 , 
'SYNONYM' , 6 , 'SEQUENCE' , 'OTHER' ) object_type , count(*) quantity from 
sys.obj$ o where o.type# > 1 group by decode (o.type#,1,'INDEX' , 2,'TABLE' , 3 
, 'CLUSTER' , 4, 'VIEW' , 5 , 'SYNONYM' , 6 , 'SEQUENCE' , 'OTHER' ) union select 

'COLUMN' , count(*) from sys.col$ union select 'DB LINK' , count(*) from 

[color=red:5cc31c680c]22。按用戶查看object種類[/color:5cc31c680c]
select u.name schema,   sum(decode(o.type#, 1, 1, NULL)) indexes,  
sum(decode(o.type#, 2, 1, NULL)) tables,   sum(decode(o.type#, 3, 1, NULL)) 
clusters,   sum(decode(o.type#, 4, 1, NULL)) views,   sum(decode(o.type#, 5, 1, 
NULL)) synonyms,   sum(decode(o.type#, 6, 1, NULL)) sequences,  
sum(decode(o.type#, 1, NULL, 2, NULL, 3, NULL, 4, NULL, 5, NULL, 6, NULL, 1)) 
others   from sys.obj$ o, sys.user$ u   where o.type# >= 1 and    u.user# = 
o.owner# and   u.name <> 'PUBLIC'   group by u.name    order by 
sys.link$ union select 'CONSTRAINT' , count(*) from sys.con$

[color=red:5cc31c680c]23。有關(guān)connection的相關(guān)信息[/color:5cc31c680c]
1)查看有哪些用戶連接
select s.osuser os_user_name,    decode(sign(48 - command), 1, to_char(command),
 'Action Code #'  to_char(command) ) action,     p.program oracle_process,    
status session_status,    s.terminal terminal,    s.program program,   
s.username user_name,    s.fixed_table_sequence activity_meter,    '' query,   
0 memory,    0 max_memory,     0 cpu_usage,    s.sid,   s.serial# serial_num    
from v$session s,    v$process p   where s.paddr=p.addr and    s.type = 'USER'  
 order by s.username, s.osuser
2)根據(jù)v.sid查看對(duì)應(yīng)連接的資源占用等情況
select n.name, 
v.value, 
n.class,
n.statistic#  
from  v$statname n, 
v$sesstat v 
where v.sid = 71 and 
v.statistic# = n.statistic# 
order by n.class, n.statistic#
3)根據(jù)sid查看對(duì)應(yīng)連接正在運(yùn)行的sql
select /*+ PUSH_SUBQ */
command_type, 
sql_text, 
sharable_mem, 
persistent_mem, 
runtime_mem, 
sorts, 

version_count, 
loaded_versions, 
open_versions, 
users_opening, 
executions, 
users_executing, 
loads, 
first_load_time, 
invalidations, 
parse_calls, 
disk_reads, 
buffer_gets, 
rows_processed,
sysdate start_time,
sysdate finish_time,
'>'  address sql_address,
'N' status 
from v$sqlarea
where address = (select sql_address from v$session where sid = 71)

[color=red:5cc31c680c]24.查詢表空間使用情況[/color:5cc31c680c]select a.tablespace_name "表空間名稱",
100-round((nvl(b.bytes_free,0)/a.bytes_alloc)*100,2) "占用率(%)",
round(a.bytes_alloc/1024/1024,2) "容量(M)",
round(nvl(b.bytes_free,0)/1024/1024,2) "空閑(M)",
round((a.bytes_alloc-nvl(b.bytes_free,0))/1024/1024,2) "使用(M)",
Largest "最大擴(kuò)展段(M)",
to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') "采樣時(shí)間" 
from  (select f.tablespace_name,
  sum(f.bytes) bytes_alloc,
  sum(decode(f.autoextensible,'YES',f.maxbytes,'NO',f.bytes)) maxbytes 
from dba_data_files f 
group by tablespace_name) a,
(select  f.tablespace_name,
   sum(f.bytes) bytes_free 
from dba_free_space f 
group by tablespace_name) b,
(select round(max(ff.length)*16/1024,2) Largest,
  ts.name tablespace_name 
from sys.fet$ ff, sys.file$ tf,sys.ts$ ts 
where ts.ts#=ff.ts# and ff.file#=tf.relfile# and ts.ts#=tf.ts# 
group by ts.name, tf.blocks) c 
where a.tablespace_name = b.tablespace_name and a.tablespace_name = c.tablespace_name

[color=red:5cc31c680c]25. 查詢表空間的碎片程度[/color:5cc31c680c] 

select tablespace_name,count(tablespace_name) from dba_free_space group by tablespace_name 
having count(tablespace_name)>10; 

alter tablespace name coalesce; 
alter table name deallocate unused; 

create or replace view ts_blocks_v as 
select tablespace_name,block_id,bytes,blocks,'free space' segment_name from dba_free_space 
union all 
select tablespace_name,block_id,bytes,blocks,segment_name from dba_extents; 

select * from ts_blocks_v; 

select tablespace_name,sum(bytes),max(bytes),count(block_id) from dba_free_space 

group by tablespace_name;

[color=red:5cc31c680c]26.查看有哪些實(shí)例在運(yùn)行[/color:5cc31c680c]:

select * from v$active_instances;
 :em02:  :em02:  :em03:  :em03:

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 儋州市| 新兴县| 拜城县| 金塔县| 洮南市| 施秉县| 改则县| 江川县| 西林县| 桐庐县| 无为县| 颍上县| 城市| 高雄县| 乡城县| 永春县| 安西县| 屯门区| 双鸭山市| 聊城市| 龙门县| 阿合奇县| 朔州市| 洪洞县| 平遥县| 巴林右旗| 宁海县| 七台河市| 山西省| 定边县| 宜良县| 平南县| 柳河县| 龙州县| 南木林县| 长宁区| 锡林浩特市| 颍上县| 黄骅市| 高邑县| 墨玉县|