DBA常用資料庫管理SQL (摘錄整理)
1.查詢系統中不能自動擴充套件(即無足夠空間)的物件
select a.owner||'.'||a.segment_name,
a.segment_type ,
a.bytes/1024/1024 ,
a.next_extent/1024/1024 ,
a.tablespace_name
from sys.dba_segments a
where a. next_extent * 3 > (
select max(b.bytes)
from dba_free_space b
where a.tablespace_name = b.tablespace_name)
order by 3 desc
SELECT * FROM dba_free_space
select bytes/1024/1024,TABLESPACE_NAME from dba_free_space where tablespace_name='MES_USER' ORDER BY BYTES DESC
***********************************************************************************************
************* 查詢chained row ****************************
select table_name , chain_cnt from user_tables order by chain_cnt desc ;
***********************************************************************************************
*************查詢當前執行的sql****************************
select a.username,a.machine,a.program,b.spid,c.sql_text from v$session a,v$process b,v$sqlarea c
where a.paddr=b.addr and c.hash_value=a.sql_hash_value and c.address=a.sql_address and b.spid=
***********************************************************************************************
*************查詢當前執行的程式****************************
select a.username,a.machine,a.program,b.spid,a.serial#,a.sid from v$session a,v$process b
where a.paddr=b.addr and b.spid in ()
select a.username,a.machine,a.program,b.spid,a.serial#,a.sid from v$session a,v$process b
where a.paddr=b.addr and a.sid in ()
SELECT a.machine,a.terminal,a.osuser, a.username, b.sql_text
from v$session a, v$sqlarea b, v$process c
where a.sql_address =b.address and a.paddr=c.addr
and c.spid in ()
order by b.address
**********************************************************************************************
kill session
**********************************************************************************************
SELECT sid, serial#, username
FROM v$session
SID SERIAL# USERNAME
----- --------- ----------------
1 1
2 1
3 1
4 1
5 1
7 1
8 28 OPS$BQUIGLEY
10 211 OPS$SWIFT
11 39 OPS$OBRIEN
12 13 SYSTEM
13 8 SCOTT
The following statement kills the session of the user scott using the SID and SERIAL# values from V$SESSION:
ALTER SYSTEM KILL SESSION '13, 8';
----------------------------------------------------------------------------------------------------
Linux 下kill Pid
kill -9 pid
windows orakill
C:>orakill
Usage: orakill sid thread
where sid = the Oracle instance to target
thread = the thread id of the thread to kill
The thread id should be retrieved from the spid column of a query such as:
select spid, osuser, s.program from
v$process p, v$session s where p.addr=s.paddr
***********************************************************************************************
*************檢視資料庫中物件空間是否成幾何增長***************
select * from dba_segments where pct_increase='50' and owner not in ('SYS','SYSTEM')
***********************************************************************************************
*************檢視當前使用者使用的操作****************************
SELECT a.machine,a.terminal,a.osuser, a.username, b.sql_text
from v$session a, v$sqlarea b
where a.sql_address =b.address order by b.address
***********************************************************************************************
*************監控事例的等待****************************
select event,sum(decode(wait_Time,0,0,1)) "Prev",
sum(decode(wait_Time,0,1,0)) "Curr",count(*) "Tot"
from v$session_Wait
group by event order by 4;
***********************************************************************************************
2. 回滾段的使用情況
select name, waits, gets, waits/gets "Ratio"
from v$rollstat a, v$rollname b
where a.usn = b.usn;
***********************************************************************************************
3. 監控表空間的 I/O 比例
select df.tablespace_name name,df.file_name "file",f.phyrds pyr,
f.phyblkrd pbr,f.phywrts pyw, f.phyblkwrt pbw
from v$filestat f, dba_data_files df
where f.file# = df.file_id
order by df.tablespace_name;
***********************************************************************************************
4. 監控檔案系統的 I/O 比例
select substr(a.file#,1,2) "#", substr(a.name,1,30) "Name",
a.status, a.bytes, b.phyrds, b.phywrts
from v$datafile a, v$filestat b
where a.file# = b.file#;
***********************************************************************************************
5.在某個使用者下找所有的索引
select user_indexes.table_name, user_indexes.index_name,uniqueness, column_name
from user_ind_columns, user_indexes
where user_ind_columns.index_name = user_indexes.index_name
and user_ind_columns.table_name = user_indexes.table_name
order by user_indexes.table_type, user_indexes.table_name,
user_indexes.index_name, column_position;
***********************************************************************************************
6. 監控 SGA 的命中率 (data buffer)
select a.value + b.value "logical_reads", c.value "phys_reads",
round(100 * ((a.value+b.value)-c.value) / (a.value+b.value)) "BUFFER HIT RATIO"
from v$sysstat a, v$sysstat b, v$sysstat c
where a.statistic# = 38 and b.statistic# = 39
and c.statistic# = 40;
***********************************************************************************************
7. 監控 SGA 中字典緩衝區的命中率
select parameter, gets,Getmisses , getmisses/(gets+getmisses)*100 "miss ratio",
(1-(sum(getmisses)/ (sum(gets)+sum(getmisses))))*100 "Hit ratio"
from v$rowcache
where gets+getmisses <>0
group by parameter, gets, getmisses;
***********************************************************************************************
8. 監控 SGA 中共享快取區的命中率,應該小於1%
select sum(pins) "Total Pins", sum(reloads) "Total Reloads",
sum(reloads)/sum(pins) *100 libcache
from v$librarycache;
select sum(pinhits-reloads)/sum(pins) "hit radio",sum(reloads)/sum(pins) "reload percent"
from v$librarycache;
***********************************************************************************************
9. 顯示所有資料庫物件的類別和大小
select count(name) num_instances ,type ,sum(source_size) source_size ,
sum(parsed_size) parsed_size ,sum(code_size) code_size ,sum(error_size) error_size,
sum(source_size) +sum(parsed_size) +sum(code_size) +sum(error_size) size_required
from dba_object_size
group by type order by 2;
***********************************************************************************************
10. 監控 SGA 中重做日誌快取區的命中率,應該小於1%
SELECT name, gets, misses, immediate_gets, immediate_misses,
Decode(gets,0,0,misses/gets*100) ratio1,
Decode(immediate_gets+immediate_misses,0,0,
immediate_misses/(immediate_gets+immediate_misses)*100) ratio2
FROM v$latch WHERE name IN ('redo allocation', 'redo copy');
## Shared pool hit radio
select sum(pinhits)/sum(pins)*100 "shared pool hit radio",sum(reloads)/sum(pins) "reload percent" from v$librarycache ;
***********************************************************************************************
11. 監控記憶體和硬碟的排序比率,最好使它小於 .10,增加 sort_area_size
SELECT name, value FROM v$sysstat WHERE name IN ('sorts (memory)', 'sorts (disk)');
The smallest , the best : sorts (disk)/(sorts (memory)+sorts (disk))
***********************************************************************************************
12. 監控當前資料庫誰在執行什么SQL語句
SELECT osuser, username, sql_text from v$session a, v$sqltext b
where a.sql_address =b.address order by address, piece;
***********************************************************************************************
13. 監控字典緩衝區
SELECT (SUM(PINS - RELOADS)) / SUM(PINS) "LIB CACHE" FROM V$LIBRARYCACHE;
SELECT (SUM(GETS - GETMISSES - USAGE - FIXED)) / SUM(GETS) "ROW CACHE" FROM V$ROWCACHE;
SELECT SUM(PINS) "EXECUTIONS", SUM(RELOADS) "CACHE MISSES WHILE EXECUTING" FROM V$LIBRARYCACHE;
後者除以前者,此比率小於1%,接近0%為好。
SELECT SUM(GETS) "DICTIONARY GETS",SUM(GETMISSES) "DICTIONARY CACHE GET MISSES"
FROM V$ROWCACHE
***********************************************************************************************
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-84242/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SQL Story摘錄(八)————資料抽取 (轉)SQL
- DBA(資料庫管理員)資料庫
- Oracle資料庫DBA日常Sql列表及常用檢視(轉)Oracle資料庫SQL
- SQLServer資料庫管理的常用SQL語句SQLServer資料庫
- DBA資料庫管理員要求資料庫
- SQL Server資料庫管理常用SQL和T-SQL語句SQLServer資料庫
- DBA常用SQLSQL
- 2 Day DBA-使用基於SQL的管理工具管理資料庫-啟動SQL*Plus連線資料庫SQL資料庫
- 資料庫效能 常用SQL資料庫SQL
- SQLServer資料庫管理常用的SQL和T-SQL語句SQLServer資料庫
- 2 Day DBA-使用基於SQL的管理工具管理資料庫SQL資料庫
- GreenPlum DBA常用SQLSQL
- 如何成為資料庫管理員(DBA)?資料庫
- 2 Day DBA-使用基於SQL的管理工具管理資料庫-關於SQL DeveloperSQL資料庫Developer
- 資料庫常用sql 語句資料庫SQL
- SQL - 常用資料庫分頁SQL資料庫
- ORACLE DBA常用SQL指令碼工具->管理篇(zt)OracleSQL指令碼
- Sql Server 資料庫學習-常用資料庫 物件SQLServer資料庫物件
- DBA日常維護SQL整理SQL
- 資料庫常用的sql語句大全--sql資料庫SQL
- 資料庫常用操作SQL語句資料庫SQL
- dba 常用維護sqlSQL
- DBA常用SQL語句SQL
- Oracle DBA常用sql分享OracleSQL
- ORACLE DBA常用SQL指令碼工具->管理篇(1) (轉)OracleSQL指令碼
- 2 Day DBA-管理方案物件-管理Oracle資料庫軟體-升級資料庫物件Oracle資料庫
- 2 Day DBA-開始資料庫管理-管理你的資料庫:路線圖資料庫
- 摘:Oracle資料庫補丁分類、安裝及管理Oracle資料庫
- 管理SQL Server資料庫安全SQLServer資料庫
- 資料庫管理日常sql列表資料庫SQL
- SQL資料庫備份管理SQL資料庫
- DBA不僅僅是管理資料庫--也要管理好需求資料庫
- oracle資料塊中資料儲存(摘錄)Oracle
- 常用的檢視資料庫的SQL資料庫SQL
- Oracle資料庫健康檢查常用SQLOracle資料庫SQL
- 2 Day DBA-使用基於SQL的管理工具管理資料庫-網路配置工具SQL資料庫
- 2 Day DBA-使用基於SQL的管理工具管理資料庫-Oracle Net Listener配置SQL資料庫Oracle
- DBA常用SQL語句[sql server] 2SQLServer