ChinaUnix.net
相关文章推荐:

check unix usage

SELECT tbs.tablespace_name,
tot.bytes / 1024 total,
tot.bytes / 1024 -SUM(nvl(fre.bytes, 0)) / 1024 used,
SUM(nvl(fre.bytes, 0)) / 1024 free,
(1 -SUM(nvl(fre.bytes, 0)) / tot.bytes) *100 pct,
decode(greatest((1 -SUM(nvl(fre.bytes, 0)) / tot.bytes) *100, 90), 90, '', '*') pct_warn
FROM dba_free_space fre,
(SELECT tablespace_name,
SUM(bytes) bytes
FROM dba_data_files<...

by 听星星唱歌 - Oracle - 2011-12-21 08:44:01 阅读(646) 回复(0)

相关讨论

Can anyone teach me how to view the current share memory (e.g.: semaphore) usage on Solaris 9??

by olaysk2 - Solaris - 2006-07-04 19:15:41 阅读(940) 回复(1)

我是在进入License manager时出现的报错: Brand usage Error,check details for correct usage. 请问这是怎么回事呀??

by Jalen1130 - 其他UNIX - 2004-10-11 11:51:44 阅读(2194) 回复(10)

How to check cable link staus and ndd usage? checking link status with ndd # ndd -set /dev/qfe instance 0 (instance set to "0" checks qfe0 status; "1" for qfe1,etc...) # ndd /dev/qfe link_status 1 ( 1 -up, 0 = down -------------------- ndd /dev/hme ? # list all the parameters for the hme drivers ndd dev/hme link_speed # output the link speed; 0 is 10M, ...

by pianoch - Solaris文档中心 - 2005-09-28 10:56:16 阅读(985) 回复(0)

报错 Brand usage Error, check details for correct usage Error: Adding license failed Error Stack: Adding license failed Please enter one of the following: 'r' To retry the operation 'i' To ignore the error, and continue 'ca' To cancel Enter choice: i Unexpected exit code (105) from /etc/licenseMgr

by xuqingsong1981 - 其他UNIX - 2006-06-21 14:31:05 阅读(1143) 回复(0)

hp-ux: swapinfo -tm solaris: prtconf | grep -i mem linux: free aix: lsdev -C | grep mem 本文来自Chinaunix博客,如果查看原文请点:http://blog.chinaunix.net/u/21444/showart_138718.html

by jamesbang2003 - Linux文档专区 - 2006-07-10 15:50:58 阅读(621) 回复(0)

usage的用法和作用 thx usage消息和普通的消息有什么区别么?

by PurpleYUE - Shell - 2008-11-05 12:03:23 阅读(2922) 回复(3)

hp-ux: ioscan -C processor | grep processor | wc -l solaris: psrinfo -v | grep "Status of processor" | wc -l linux: cat /proc/cpuinfo | grep processor | wc -l aix: lsdev -C | grep -i processor | wc -l 本文来自Chinaunix博客,如果查看原文请点:http://blog.chinaunix.net/u/21444/showart_138717.html

by jamesbang2003 - Linux文档专区 - 2006-07-10 15:50:30 阅读(691) 回复(0)

unix tips: Learn 10 good unix usage habitsBreak bad unix usage patterns Document options Document options requiring JavaScript are not displayed Print this page E-mail this page New forum features Try private messaging, read-tracking, and more --> Rate this page Help us improve this content Level: Intermediate Michael Stutz ( [email=stutz@dsl.org?subject=Learn%2010%20good%20UNI...

by tiaot - Linux文档专区 - 2008-05-15 20:50:18 阅读(642) 回复(0)

wget手册 wget命令使用方法 wget 使用指南 wget是一个从网络上自动下载文件的自由工具。它支持HTTP,HTTPS和FTP协议,可以使用HTTP代理. 所谓的自动下载是指,wget可以在用户退出系统的之后在后台执行。这意味这你可以登录系统,启动一个wget下载任务,然后退出系统,wget将在后台执行直到任务完成,相对于其它大部分浏览器在下载大量数据时需要用户一直的参与,这省去了极大的麻烦。 wget 可以跟踪HTML页面上的链接依次下载来创建...

by BENNYSNAKE - Linux文档专区 - 2009-07-07 16:43:45 阅读(809) 回复(0)

Python glob模块 2008-12-04 15:26:52 Python glob模块的相关用法 主要方法就是glob,用它在脚本中处理一批文件名非常方便,glob函数根据参数中指定的路径模式[可以使用Shell环境下的通配符wildcard]返回一个 符合该匹配模式的文件路径列表。 [console] >>> import glob >>> dir(glob) ['__all__', '__builtins__', '__doc__', '__file__', '__name__', 'fnmatch', 'glob', 'glob1', 'has_magic', 'magic_check', 'os', 're'] >>> h...

by BENNYSNAKE - Python文档中心 - 2009-05-26 14:18:31 阅读(1612) 回复(0)