【SQL】使用v$license檢視獲得自啟動以來資料庫曾經達到的最大 session 數
sys@psdb> select SESSIONS_HIGHWATER from v$license;
SESSIONS_HIGHWATER
------------------
494
在結合process引數的設定來判斷是否有必要適當的加大允許系統併發的數量。
Oracle官方文件中關於檢視V$LICENSE的描述:
-- The End --
SESSIONS_HIGHWATER
------------------
494
在結合process引數的設定來判斷是否有必要適當的加大允許系統併發的數量。
Oracle官方文件中關於檢視V$LICENSE的描述:
V$LICENSE
This view contains information about license limits.
Column | Datatype | Description |
---|---|---|
SESSIONS_MAX | NUMBER | Maximum number of concurrent user sessions allowed for the instance |
SESSIONS_WARNING | NUMBER | Warning limit for concurrent user sessions for the instance |
SESSIONS_CURRENT | NUMBER | Current number of concurrent user sessions |
SESSIONS_HIGHWATER | NUMBER | Highest number of concurrent user sessions since the instance started |
USERS_MAX | NUMBER | Maximum number of named users allowed for the database |
CPU_COUNT_CURRENT | NUMBER | Current number of logical CPUs or processors on the system |
CPU_CORE_COUNT_CURRENT | NUMBER | Current number of CPU cores on the system (includes subcores of multicore CPUs, as well as single-core CPUs) |
CPU_SOCKET_COUNT_CURRENT | NUMBER | Current number of CPU sockets on the system (represents an absolute count of CPU chips on the system, regardless of multithreading or multicore architectures) |
CPU_COUNT_HIGHWATER | NUMBER | Highest number of logical CPUs or processors on the system since the instance started |
CPU_CORE_COUNT_HIGHWATER | NUMBER | Highest number of CPU cores on the system since the instance started (includes subcores of multicore CPUs, as well as single-core CPUs) |
CPU_SOCKET_COUNT_HIGHWATER | NUMBER | Highest number of CPU sockets on the system since the instance started (represents an absolute count of CPU chips on the system, regardless of multithreading or multicore architectures) |
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-598142/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 檢視資料庫啟動以來回滾率資料庫
- 【檢視】使用V$SQL_PLAN檢視獲取曾經執行過的SQL語句執行計劃SQL
- ABAP 從檢視獲得資料
- 【實驗】【檢視】使用v$bgprocess檢視獲得所有後臺程式資訊
- v$session 檢視Session
- V$ACTIVE_SESSION_HISTORY檢視的使用Session
- 【SESSION】v$session and v$license 中sessions_current 的區別Session
- 如何知道資料庫建立以來併發事務的最大數量資料庫
- 達夢資料庫SQL執行計劃檢視方法資料庫SQL
- 常用的檢視資料庫的SQL資料庫SQL
- 檢視資料庫的當前連線session,以及其執行的sql資料庫SessionSQL
- 啟動資料庫,啟動監聽,檢視是否歸檔資料庫
- 3.1.1.1 使用 SQL*Plus 啟動資料庫SQL資料庫
- 資料庫檢視的使用資料庫
- 【SQL】通過對分析使用者快速獲得資料庫中表記錄數SQL資料庫
- ORACLE之檢視資料庫的SQLOracle資料庫SQL
- 檢視oracle資料庫的連線數以及使用者檢視Oracle資料庫
- (轉)檢視sql server 資料庫連線數方法SQLServer資料庫
- 使用SQL來分析資料庫引數(二)SQL資料庫
- 【Flashback】使用檢視快速獲得Flashback Query閃回查詢資料
- 批量更新SQL Server資料庫的使用者檢視SQLServer資料庫
- 轉載--V$ACTIVE_SESSION_HISTORY檢視的使用Session
- 使用V$SQL_PLAN檢視SQL
- 使用mysqldump以SQL格式來dump資料MySql
- 【會話】V$SESSION檢視會話Session
- 【實驗】修改資料庫檔案為自動擴充套件以達到表空間自動擴充套件的目的資料庫套件
- 如何利用VoC資料獲得客戶需求的全景檢視?
- V$session 檢視的小運用Session
- 10g以後檢視未使用繫結變數的sql變數SQL
- v$sql檢視和v$sqlarea檢視的構建SQL
- SQL Server 檢視資料庫日誌SQLServer資料庫
- 自動備份SQL資料庫到雲端儲存StorageSQL資料庫
- v$session_wait和v$session_event檢視SessionAI
- 幾個檢視 v$mystat v$systata v$sessionSession
- 動態檢視V$SESSION_LONGOPS學習SessionGo
- v$active_session_history檢視Session
- 授權某使用者,檢視動態效能檢視的許可權(如v$latch,v$lock,v$sqlarea,v$sql,v$sysstat)SQL
- V$SESSION_LONGOPS 檢視的用法SessionGo