[20190415]11g下那些latch是共用的.txt

来源:https://www.cnblogs.com/lfree/archive/2019/04/15/10710674.html
-Advertisement-
Play Games

[20190415]11g下那些latch是共用的.txthttp://andreynikolaev.wordpress.com/2010/11/23/shared-latches-by-oracle-version/--//oracle並沒有文檔準確說明那些latch是支持共用,作者的鏈接通過使用 ...


[20190415]11g下那些latch是共用的.txt

http://andreynikolaev.wordpress.com/2010/11/23/shared-latches-by-oracle-version/

--//oracle並沒有文檔準確說明那些latch是支持共用,作者的鏈接通過使用orderbug手工調用kslgetsl()函數(10g)或者kslgetsl_w()函
--//數(11g),確定那些latch支持共用模式.我僅僅重覆測試看看.

1.環境:
SYS@book> @ ver1
PORT_STRING                    VERSION        BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx            11.2.0.4.0     Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

2.建立測試腳本:
--//drop table shared_latches purge;
create table shared_latches(
  version varchar2(50),   /* Oracle version */
  latch# number,          /* latch# */
  name   varchar2(200),   /* ltach name */
  shared varchar2(1)      /* if 'Y' then latch is shared  */
);
--//建立表shared_latches.

spool list_shared_latches.sh
select 'sqlplus /nolog @is_latch_shared 0x'||addr||' '||latch#||' "'||translate(name,'''',' ')||'"'
   from v$latch_parent;
spool off
--//獲得latch list.僅僅測試latch parent就ok了.適當編輯整理腳本.

$ cat is_latch_shared.sql
/*
     This file is part of demos for "Contemporary Latch Internals" seminar v.24.08.2010
     Copyright:   (c) Andrey S. Nikolaev ([email protected]) RDTEX
     http://AndreyNikolaev.wordpress.com
     for 32bit Oracle 10g and above
*/
connect / as sysdba
set verify off
WHENEVER SQLERROR EXIT;
set pagesize 0

alter session set max_dump_file_size=0;
/*
   before 11g shared latch get function was named kslgetsl()
   in 11g - kslgetsl_w()
*/
col shared_latch_function new_value shared_latch_function
var db_v varchar2(100);
var db_comp varchar2(100);
begin dbms_utility.db_version(:db_v,:db_comp); end;
/
select decode(sign(replace(:db_v,'.','')-110000),1,'kslgetsl_w', 'kslgetsl') shared_latch_function from dual;
--//11g use kslgetsl_w,other use kslgetsl.

oradebug setmypid
/* try to get latch as shared in S mode */
oradebug call &shared_latch_function &1 1 2 3 8
/* if ORA-00600: [545] was raised in previous statement then latch was exclusive.  The error terminates the script */
/* free the latch */
oradebug call kslfre &1
/* if we are here, the latch was shared */
insert into shared_latches(version,latch#,name,shared) select version,latch#,name,'Y' from v$latch,v$instance where latch#=&2;
commit;
exit

--//說明:作者利用oradebug調用報錯,後面的插入語句不會執行,來完整獲得那些shared latch的列表.

3.執行:
$ . list_shared_latches.sh
--//略.

4.結果:
VERSION        LATCH# NAME                                     S
---------- ---------- ---------------------------------------- -
11.2.0.4.0          6 test shared non-parent l0                Y
11.2.0.4.0         14 session idle bit                         Y
11.2.0.4.0         15 client/application info                  Y
11.2.0.4.0         21 ksim group membership cache              Y
11.2.0.4.0         24 parameter table management               Y
11.2.0.4.0         49 resmgr group change latch                Y
11.2.0.4.0         50 channel handle pool latch                Y
11.2.0.4.0         51 channel operations parent latch          Y
11.2.0.4.0         52 message pool operations parent latch     Y
11.2.0.4.0         75 sixteenth spare latch - S non-parent     Y
11.2.0.4.0         76 seventeenth spare latch - S non-parent   Y
11.2.0.4.0         77 eighteenth spare latch - S non-parent    Y
11.2.0.4.0         78 nineteenth spare latch - S non-parent    Y
11.2.0.4.0         79 twentieth spare latch - S non-parent     Y
11.2.0.4.0         80 twenty-first spare latch - S par         Y
11.2.0.4.0         81 twenty-second spare latch - S par        Y
11.2.0.4.0         82 twenty-third spare latch - S par         Y
11.2.0.4.0         83 twenty-fourth spare latch - S par        Y
11.2.0.4.0         84 twenty-fifth spare latch - S par         Y
11.2.0.4.0         92 SGA mapping latch                        Y
11.2.0.4.0         93 active service list                      Y
11.2.0.4.0        102 storage server table manipulation latch  Y
11.2.0.4.0        144 name-service namespace bucket            Y
11.2.0.4.0        149 gcs remastering latch                    Y
11.2.0.4.0        150 gcs partitioned table hash               Y
11.2.0.4.0        151 gcs pcm hashed value bucket hash         Y
11.2.0.4.0        155 recovery domain hash list                Y
11.2.0.4.0        160 gcr global ctx                           Y
11.2.0.4.0        164 Memory Management Latch                  Y
11.2.0.4.0        171 kcbtsemkid latch                         Y
11.2.0.4.0        173 buffer pool                              Y
11.2.0.4.0        177 cache buffers chains                     Y
11.2.0.4.0        183 tablespace key chain                     Y
11.2.0.4.0        189 object queue header operation            Y
11.2.0.4.0        215 gc element                               Y
11.2.0.4.0        275 MinActiveScn Latch                       Y
11.2.0.4.0        280 In memory undo latch                     Y
11.2.0.4.0        281 KTF sga latch                            Y
11.2.0.4.0        283 Change Notification Hash table latch     Y
11.2.0.4.0        286 change notification client cache latch   Y
11.2.0.4.0        289 lob segment hash table latch             Y
11.2.0.4.0        290 lob segment query latch                  Y
11.2.0.4.0        291 lob segment dispenser latch              Y
11.2.0.4.0        296 space background SGA latch               Y
11.2.0.4.0        301 kssmov protection latch                  Y
11.2.0.4.0        305 domain validation update latch           Y
11.2.0.4.0        306 kdlx hb parent latch                     Y
11.2.0.4.0        308 Dedup Write Append Table Latch           Y
11.2.0.4.0        317 global KZLD latch for mem in SGA         Y
11.2.0.4.0        318 Read Only Database Account Status        Y
11.2.0.4.0        320 Policy Refresh Latch                     Y
11.2.0.4.0        321 Policy Hash Table Latch                  Y
11.2.0.4.0        322 OLS label cache                          Y
11.2.0.4.0        323 instance information                     Y
11.2.0.4.0        324 policy information                       Y
11.2.0.4.0        325 global ctx hash table latch              Y
11.2.0.4.0        326 Role grants to users                     Y
11.2.0.4.0        327 Role graph                               Y
11.2.0.4.0        328 Security Class Hashtable                 Y
11.2.0.4.0        331 third Audit Vault latch                  Y
11.2.0.4.0        332 fourth Audit Vault latch                 Y
11.2.0.4.0        344 resmgr:active threads                    Y
11.2.0.4.0        349 resmgr:plan CPU method                   Y
11.2.0.4.0        355 Shared B-Tree                            Y
11.2.0.4.0        356 Memory Queue                             Y
11.2.0.4.0        357 Memory Queue Subscriber                  Y
11.2.0.4.0        369 ODM-NFS:Global file structure            Y
11.2.0.4.0        373 SGA heap creation lock                   Y
11.2.0.4.0        375 SGA pool creation lock                   Y
11.2.0.4.0        378 SGA blob lock                            Y
11.2.0.4.0        380 kgb latch                                Y
11.2.0.4.0        382 SGA table lock                           Y
11.2.0.4.0        383 Event Group Locks                        Y
11.2.0.4.0        385 Sage HT Latch                            Y
11.2.0.4.0        409 JOX SGA heap latch                       Y
11.2.0.4.0        410 JOX JIT latch                            Y
11.2.0.4.0        425 hash table dml freq tracking latch       Y
11.2.0.4.0        426 hash table column usage latch            Y
11.2.0.4.0        433 compile environment latch                Y
11.2.0.4.0        436 Result Cache: RC Latch                   Y
11.2.0.4.0        464 KWQP Prop Status                         Y
11.2.0.4.0        465 KWQS pqueue ctx latch                    Y
11.2.0.4.0        466 KWQS pqsubs latch                        Y
11.2.0.4.0        467 AQ Propagation Scheduling Proc Table     Y
11.2.0.4.0        468 AQ Propagation Scheduling System Load    Y
11.2.0.4.0        471 rules engine rule set statistics         Y
11.2.0.4.0        472 rules engine rule statistics             Y
11.2.0.4.0        477 kwqbsn:qsga                              Y
11.2.0.4.0        479 bufq statistics                          Y
11.2.0.4.0        481 queue sender's info. latch               Y
11.2.0.4.0        482 bq:time manger info latch                Y
11.2.0.4.0        486 KWQMN job cache list latch               Y
11.2.0.4.0        487 KWQMN to-be-Stopped Buffer list Latch    Y
11.2.0.4.0        504 XDB NFS Stateful SGA Latch               Y
11.2.0.4.0        505 qmne Export Table Latch                  Y
11.2.0.4.0        507 XDB Byte Lock SGA Latch                  Y
11.2.0.4.0        508 XDB Mcache SGA Latch                     Y
11.2.0.4.0        565 WCR: sync                                Y
11.2.0.4.0        566 WCR: processes HT                        Y
11.2.0.4.0        578 JS Sh mem access                         Y
11.2.0.4.0        579 PL/SQL warning settings                  Y
101 rows selected.

--//我導入作者的測試結果在鏈接https://andreynikolaev.wordpress.com/上可以找到.
--//https://andreynikolaev.wordpress.com/summary-tables/shared_latches-ctl/,作者沒有做11.2.0.4測試.
--//11.2.0.3結果如下:
SYS@book> select count(*) from  scott.shared_latches where version='11.2.0.3.0';
  COUNT(*)
----------
        93


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在此處只給出find的基本用法示例,都是平時我個人非常常用的搜索功能。如果有不理解的部分,則看後面的 "find運行機制詳解" 對於理論的說明,也建議在看完這些基本示例後閱讀一遍理論說明,它是本人翻譯自find的man文檔並加上了個人的理解。另外,在該理論說明結束後,還有find深入用法示例和分析。 ...
  • [20190416]11g下那些latch是Exclusive的.txt--//昨天測試了11g下那些latch是共用的,鏈接:--//是否反過來剩下的都是Exclusive的.繼續測試:1.環境:SYS@book> @ ver1PORT_STRING VERSION BANNER x86_64/L ...
  • 先說一下場景,產品中用到了簡單的表單構造器,開始提供了一系列的控制項,例如單行文本框、多行文本框、單選、覆選、時間等,之後你可以拖拽控制項自己組裝你想要的表單……網上有很多的表單構造器,這裡就不細說了,可能功能有多有少,但是原理類似。因為這種表單的這種實現方式,我們不單單要存儲表單的真實數據,還要存儲對 ...
  • 資料庫操作-- 查看當前資料庫 SELECT DATABASE();-- 顯示當前時間、用戶名、資料庫版本 SELECT now(), user(), version();-- 創建庫 CREATE DATABASE[ IF NOT EXISTS] 資料庫名 資料庫選項 資料庫選項: CHARACT ...
  • MySQL資料庫引擎類別 能用的資料庫引擎取決於mysql在安裝的時候是如何被編譯的。要添加一個新的引擎,就必須重新編譯MYSQL。在預設情況下,MYSQL支持三個引擎:ISAM、MYISAM和HEAP。另外兩種類型INNODB和BERKLEY(BDB),也常常可以使用。 ISAM ISAM是一個定 ...
  • 前提已經安裝好hadoop的hdfs集群,可以查看 https://www.cnblogs.com/tree1123/p/10683570.html Mapreduce是hadoop的運算框架,可以對hdfs中的數據分開進行計算,先執行很多maptask,在執行reducetask,這個過程中任務的 ...
  • 快速查找所有存儲過程中是否包含某個字元串 ...
  • 一、通過SQL語句訪問遠程資料庫 --OPENROWSET函數 使用OPENROWSET()是個不錯的選擇,也可以用做跨庫查詢包括增、刪、改、查 下麵就來介紹一下OPENROWSET函數的運用 包含訪問 OLE DB 數據源中的遠程數據所需的全部連接信息。當訪問鏈接伺服器中的表時,這種方法是一種替代 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...