对dbfsize输出的解释

[[email protected] test]$ which dbfsize
/u02/app/oracle/product/11.2.0.4/db_1/bin/dbfsize
[[email protected] test]$
[[email protected] test]$
[[email protected] test]$
[[email protected] test]$ dbfsize control01.ctl 

Database file: control01.ctl
Database file type: file system
Database file size: 594 16384 byte blocks
[[email protected] test]$ ll control01.ctl
-rw-r-----. 1 oracle oinstall 9748480 Jan  9 04:42 control01.ctl
对control01.ctl计算如下:  9748480-16384*594=16384, 也就是说 os命令显示的control01.ctl 大小要比 oracle层面“认为”的 control01.ctl大小要 多 一个 16384 byte

[[email protected] test]$ dbfsize redo01.log 

Database file: redo01.log
Database file type: file system
Database file size: 102400 512 byte blocks
[[email protected] test]$
[[email protected] test]$ ll redo01.log
-rw-r-----. 1 oracle oinstall 52429312 Jan  9 04:42 redo01.log
对redo01.log计算如下:  52429312-512*102400 =512,也就是说 os命令显示的redo01.log 大小要比 oracle层面“认为”的 redo01.log大小要 多 一个 512 byte

[[email protected] test]$ dbfsize users01.dbf 

Database file: users01.dbf
Database file type: file system
Database file size: 960 8192 byte blocks
[[email protected] test]$
[[email protected] test]$ ll users01.dbf
-rw-r-----. 1 oracle oinstall 7872512 Jan  9 03:15 users01.dbf
对users01.dbf计算如下:  7872512-8192*960 =8192,也就是说 os命令显示的redo01.log 大小要比 oracle层面“认为”的 redo01.log大小要 多 一个 8192 byte
时间: 2024-10-26 18:32:30

对dbfsize输出的解释的相关文章

ThinkPHP模版引擎之变量输出具体解释

ThinkPHP模版引擎之变量输出具体解释 使用ThinkPHP开发有一定时间了,今日对ThinkPHP的模板引擎变量解析深入了解了一下.做出一些总结,分享给大家供大家參考. 详细分析例如以下: 我们已经知道了在Action中使用assign方法能够给模板变量赋值,赋值后怎么在模板文件里输出变量的值呢? 假设我们在Action中赋值了一个name模板变量: $name = 'ThinkPHP'; $this->assign('name',$name); 使用内置的模板引擎输出变量,仅仅须要在模版

printf格式化字符输出对应解释

printf 对应的字符代表的意思如下所示: printf("%_", i); /* %a:浮点数.十六进制数字和p-记数法(C99) * %A:浮点数.十六进制数字和p-记法(C99) * %c:一个字符char * %C:一个ISO宽字符 * %d:有符号十进制整数int * %ld,%Ld:长整型数据long * %hd:短整型数据 * %e:浮点数.e-记数法 * %E:浮点数.E-记数法 * %f:单精度浮点数(默认float),十进制记数法 * %.nf:这里n表示精确到小

几个日志输出的解释

我们通过源代码,找到下面一段,该段实现了上述日志的输出. if ((my_now – rli->mts_last_online_stat)>= mts_online_stat_period) { sql_print_information("Multi-threadedslave statistics%s: " "seconds elapsed = %lu; " "events assigned = %llu; " "wor

《linux命令》ps -aux详细解释

本文转载自http://blog.chinaunix.net/uid-21516619-id-1824945.html 显示其他用户启动的进程(a) 查看系统中属于自己的进程(x) 启动这个进程的用户和它启动的时间(u) 使用“date -s”命令来修改系统时间 比如将系统时间设定成1996年6月10日的命令如下. #date -s 06/10/96 将系统时间设定成下午1点12分0秒的命令如下. #date -s 13:12:00 -------------------------------

iOS 程序员 6 级考试(答案和解释)

iOS 程序员 6 级考试(答案和解释) 我是前言 1. 下面的代码分别输出什么? @implementation Son : Father- (id)init { self = [super init]; if (self) { NSLog(@"%@", NSStringFromClass([self class])); NSLog(@"%@", NSStringFromClass([super class])); } return self;}@end 答案:都

Linux下date命令,格式化输出,时间设置

date命令的帮助信息 [root@localhost  source]# date --help用法:date [选项]... [+格式] 或:date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]以给定的格式显示当前时间,或是设置系统日期. -d,--date=字符串              显示指定字符串所描述的时间,而非当前时间  -f,--file=日期文件            类似--date,从日期文件中按行读入时间描述  -r,

ios程序员6级考试(答案和解释)

http://blog.sunnyxx.com/2014/03/06/ios_exam_0_key/ 我是前言 上次发了个ios程序员6级考试题 ,还在不断补充中,开个帖子配套写答案和解释. 1. 下面的代码分别输出什么? 1 2 3 4 5 6 7 8 9 10 11 12 @implementation Son : Father - (id)init { self = [super init]; if (self) { NSLog(@"%@", NSStringFromClass(

Linux命令执行的屏幕输出内容重定向到日志文件

摘要: 作者:Syn良子 出处:http://www.cnblogs.com/cssdongl 转载请注明出处 快速mark一下这个命令细节,免得以后使用又忘记了 大家都知道可以用echo来输出内容到文件,比如 echo "hello,word">> temp.txt 那么我现在想把hadoop或者spark的命令执行的屏幕输出到文件怎么办?很简单,命令如下 hadoop jar *.jar $mrClass > mr.log 2>&1 注意上面命令 *

shell date格式化输出

1-  echo `date "+%Y-%m-%d %H:%M:%S"` 2014-11-13 15:06:26 2-  echo `date "+%y-%m-%d %H:%M:%S"` 14-11-13 15:06:51 注意: "+%y-%m-%d %H:%M:%S" 大小写 给定的格式FORMAT 控制着输出,解释序列如下: %%    一个文字的 %  %a    当前locale 的星期名缩写(例如: 日,代表星期日)  %A    当