直接来例子
$ cat datafile
northwest NW Joel Craig 3.0 .98 3
4
western WE Sharon Kelly 5.3 .97 5
23
southwest SW Chris Foster 2.7 .8 2
18
southern SO ...
分类:
其他好文 时间:
2015-05-19 22:50:45
阅读次数:
225
还是按照惯例,直接上例子。
$ awk 'BEGIN{"date" | getline d; print d}' datafile
Mon Jan 15 11:24:24 PST 2015
说明:将Linux的date命令通过管道传给getline函数,结果保存在变量d中并打印出来。
范例
$ awk 'BEGIN{"date" | getline d; sp...
分类:
其他好文 时间:
2015-05-19 10:50:09
阅读次数:
180
直接举个例子来说明
code lang="powershell">
$ cat datafile
northwest NW Joel Craig 3.0 .98 3
4
western WE Sharon Kelly 5.3 .97 5
23
southwest SW Chris Foster 2.7 .8...
分类:
其他好文 时间:
2015-05-18 09:11:29
阅读次数:
133
对oracle datafile header进行转储...
分类:
数据库 时间:
2015-05-16 21:58:28
阅读次数:
174
从control file 和 datafile header上获得不同的scn信息...
分类:
其他好文 时间:
2015-05-16 21:55:00
阅读次数:
231
--Oracle数据库创建表空间 create tablespace new_taspace--表空间名DATAFILE 'D:\NEWTABLESPACE.DBF' --表空间关联的数据文件和位置size 200M --文件初始大小 autoextend on next 20MB MAXSIZE ...
分类:
数据库 时间:
2015-05-15 22:48:49
阅读次数:
190
当非system的datafile 无法写入时,控制db instance crash 还是 datafile offline的 参数...
分类:
数据库 时间:
2015-05-15 20:00:17
阅读次数:
248
1、创建表空间 create tablespace ts_aw logging datafile 'd:\app\Administrator\product\tablespace\ts_aw.dbf' size 10M autoextend on next 5M maxsize 20...
分类:
数据库 时间:
2015-05-13 10:12:22
阅读次数:
138
GoalThis document explains in detail about what happens when a tablespace/datafile is kept in hot backup/begin backup mode.SolutionTo perform online/hot backup we have to put the tablespace in begin b...
分类:
移动开发 时间:
2015-05-11 14:55:11
阅读次数:
184
新建表空间启用sql plus:SQL> conn sys as sysdba;SQL> create tablespace CTL datafile 'D:\db\CTL.dbf' size 1000M 2 autoextend on next 1m maxsize 3000M extent ma...
分类:
其他好文 时间:
2015-05-10 22:09:27
阅读次数:
135