偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

分享幾個(gè)常用的Oracle 11g內(nèi)存視圖腳本

數(shù)據(jù)庫 Oracle
今天主要分享幾個(gè)關(guān)于Oracle數(shù)據(jù)庫的內(nèi)存視圖的腳本,僅供參考。

今天主要分享幾個(gè)關(guān)于Oracle數(shù)據(jù)庫的內(nèi)存視圖的腳本,僅供參考。

一、V$MEMORY_DYNAMIC_COMPONENTS

  1. V$MEMORY_DYNAMIC_COMPONENTS displays information about the dynamic SGA components. This view summarizes information based on all completed SGA resize operations since instance startup. All sizes are expressed in bytes. 

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

腳本: Provides information about dynamic memory components.

  1. COLUMN component FORMAT A30 
  2. ​ 
  3. SELECT component, 
  4.  ROUND(current_size/1024/1024) AS current_size_mb, 
  5.  ROUND(min_size/1024/1024) AS min_size_mb, 
  6.  ROUND(max_size/1024/1024) AS max_size_mb 
  7. FROM v$memory_dynamic_components 
  8. WHERE current_size != 0 
  9. ORDER BY component; 

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

二、V$MEMORY_RESIZE_OPS

  1. V$MEMORY_RESIZE_OPS displays information about the last 800 completed memory resize operations (both automatic and manual). This does not include in-progress operations. All sizes are expressed in bytes. 

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

腳本:Provides information about memory resize operations.

  1. SET LINESIZE 200 
  2. COLUMN parameter FORMAT A25 
  3. SELECT start_time, 
  4.  end_time, 
  5.  component, 
  6.  oper_type, 
  7.  oper_mode, 
  8.  parameter, 
  9.  ROUND(initial_size/1024/1024) AS initial_size_mb, 
  10.  ROUND(target_size/1024/1024) AS target_size_mb, 
  11.  ROUND(final_size/1024/1024) AS final_size_mb, 
  12.  status 
  13. FROM v$memory_resize_ops 
  14. ORDER BY start_time; 

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

三、V$MEMORY_TARGET_ADVICE

  1. V$MEMORY_TARGET_ADVICE provides information about how the MEMORY_TARGET parameter should be sized based on current sizing and satisfaction metrics. 

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

腳本3: Provides information to help tune the MEMORY_TARGET parameter.

  1. SELECT * FROM v$memory_target_advice ORDER BY memory_size; 

分享幾個(gè)常用的oracle 11g內(nèi)存視圖腳本

 

責(zé)任編輯:趙寧寧 來源: 今日頭條
相關(guān)推薦

2010-05-10 14:46:54

Oracle 11g

2009-11-20 12:55:08

Oracle 11g功

2009-09-15 09:52:25

Oracle 11g分

2012-05-07 13:45:45

Oraclen 11g虛擬列數(shù)據(jù)庫

2010-04-01 15:19:56

Oracle 11g壓

2010-04-13 15:56:03

Oracle 11g

2011-04-15 09:11:21

2010-04-26 11:26:48

Oracle 11g

2009-02-15 14:41:19

SQL Perform新特性Oracle

2010-04-07 17:27:38

Oracle 11g

2009-03-12 10:28:32

數(shù)據(jù)庫Oracle11g自我調(diào)整

2009-07-08 00:24:00

數(shù)據(jù)壓縮Oracle 11g

2022-11-29 17:03:00

數(shù)據(jù)庫Oracle

2009-08-12 10:54:54

2010-04-16 09:50:26

Oracle 11g

2010-05-05 17:06:31

Oracle 11g

2011-08-23 15:56:19

SQL Server Oracle 11g

2011-08-19 09:11:24

Oracle 11g回啟動(dòng)閃回?cái)?shù)據(jù)庫

2009-11-19 17:28:43

Oracle數(shù)據(jù)庫11

2009-07-15 08:37:48

布Oracle SOA
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)