v$osstat
SQL> select * from v$osstat; STAT_NAME VALUE OSSTAT_ID COMMENTS CUM
---------------------------------------- ---------- ---------- ---------------------------------------------------------------- ---
NUM_CPUS Number of active CPUs NO
IDLE_TIME 6.5569E+10 Time (centi-secs) that CPUs have been in the idle state YES
BUSY_TIME Time (centi-secs) that CPUs have been in the busy state YES
USER_TIME Time (centi-secs) spent in user code YES
SYS_TIME Time (centi-secs) spent in the kernel YES
IOWAIT_TIME Time (centi-secs) spent waiting for IO YES
NICE_TIME Time (centi-secs) spend in low-priority user code YES
RSRC_MGR_CPU_WAIT_TIME Time (centi-secs) processes spent in the runnable state waiting YES
LOAD . Number of processes running or waiting on the run queue NO
NUM_CPU_CORES Number of CPU cores NO
NUM_CPU_SOCKETS Number of physical CPU sockets NO
PHYSICAL_MEMORY_BYTES 1.0142E+11 Physical memory size in bytes NO
VM_IN_BYTES Bytes paged in due to virtual memory swapping YES
VM_OUT_BYTES Bytes paged out due to virtual memory swapping YES
TCP_SEND_SIZE_MIN TCP Send Buffer Min Size NO
TCP_SEND_SIZE_DEFAULT TCP Send Buffer Default Size NO
TCP_SEND_SIZE_MAX TCP Send Buffer Max Size NO
TCP_RECEIVE_SIZE_MIN TCP Receive Buffer Min Size NO
TCP_RECEIVE_SIZE_DEFAULT TCP Receive Buffer Default Size NO
TCP_RECEIVE_SIZE_MAX TCP Receive Buffer Max Size NO
GLOBAL_SEND_SIZE_MAX Global send size max (net.core.wmem_max) NO
GLOBAL_RECEIVE_SIZE_MAX Global receive size max (net.core.rmem_max) NO rows selected. SQL>
v$osstat的更多相关文章
- 设置Hyper V
1.打开服务器管理器 2.添加角色和功能 3.安装类型 -> 基于角色或基于功能的安装 4.服务器选择 -> 下一步 5.服务器角色 勾选"Hyper V"
- algorithm@ Shortest Path in Directed Acyclic Graph (O(|V|+|E|) time)
Given a Weighted Directed Acyclic Graph and a source vertex in the graph, find the shortest paths fr ...
- Exception in thread "main" java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(I)V
在学习CGlib动态代理时,遇到如下错误: Exception in thread "main" java.lang.NoSuchMethodError: org.objectwe ...
- [Erlang 0118] Erlang 杂记 V
我在知乎回答问题不多,这个问题: "对你职业生涯帮助最大的习惯是什么?它是如何帮助你的?",我还是主动回答了一下. 做笔记 一开始笔记软件做的不好的时候就发邮件给自己, ...
- for(String s:v)
s是遍历后赋值的变量,v是要遍历的list.可以通过以下语句进行测试: List<String> v=new ArrayList(); v.add("one"); v. ...
- SIP模块版本错误问题:the sip module implements API v??? but XXX module requires API v???
系统安装了python 2.7,继续安装PyQt4,于是依次下载sip.pyqt4源码进行安装.用以下代码测试: import PyQt4.QtGui 显示出错.错误信息:the sip module ...
- 数据库软件dbForge Studio for MySQL更新至v.6.1
本文转自:慧都控件网 说到MariaDB,这个数据库算是MySQL的一个分支.现在非常的流行,很多地方都能看到它的身影.MariaDB作为一种新的数据库管理系统,在短时间内获得如此高的关注度.这也是D ...
- Exception raised during rendering: java.lang.System.arraycopy([CI[CII)V
最近下载一个新版本的adt-bundle,Android API是20. 把Plain Text控件往布局上面拖时,发现拖不上去,出现了下面的错误: Exception raised during r ...
- Java集合源码分析(七)HashMap<K, V>
一.HashMap概述 HashMap基于哈希表的 Map 接口的实现.此实现提供所有可选的映射操作,并允许使用 null 值和 null 键.(除了不同步和允许使用 null 之外,HashMap ...
随机推荐
- maven中GroupID 和ArtifactID怎么写
groupId :the unique identifier of the organization or group that created the project artifactId :uni ...
- PHP面向对象程序设计的61条黄金法则
PHP面向对象程序设计的61条黄金法则 你不必严格遵守这些原则,违背它们也不会被处以宗教刑罚.但你应当把这些原则看成警铃,若违背了其中的一条,那么警铃就会响起 . ----- Arthur J.R ...
- HttpStatusCodeResult
HttpStatusCodeResult:让mvc回传特定的http状态代码与消息给客户端,对于一些特殊的http响应,可利用httpStatusCodeResult帮助我们响应适当的状态代码: 1X ...
- flink - accumulator
读accumlator JobManager 在job finish的时候会汇总accumulator的值, newJobStatus match { case JobStatus.FINISHE ...
- jdk1.7
http://download.oracle.com/otn-pub/java/jdk/7u79-b15/jdk-7u79-windows-i586.exe?AuthParam=1450748157_ ...
- bootstrap响应式实用工具
- jeecg的cq查询方式
@RequestMapping(params = "datagrid") public void datagrid(TbStudentDepEntity tbStudentD ...
- hadoop、hbase、hive、zookeeper版本对应关系
本文引用自:http://www.aboutyun.com/blog-61-62.html 最新版本: hadoop和hbase版本对应关系: Hbase Hadoop 0.92.0 1.0.0 ...
- VS2013编译Qt5.6.0静态库(乌合之众)
获取qt5.6.0源码包 直接去www.qt.io下载就好了,这里就不详细说了. 这里是我已经编译好的** 链接:http://pan.baidu.com/s/1pLb6wVT 密码: ak7y ** ...
- 安装CentOS Core之后布置环境脚本
#启动ssh服务 service sshd start #安装vim编辑器 echo y | yum install vim #安装网络工具包 echo y | yum install net-too ...