摘要:
1、清空数据库alert_sid.log文件内容cat /dev/null > alter_sid.log2、set timing on在命令行窗口,可以打开计时器通过上述命令;能够实时跟踪到oracle对每一条语句的执行时间;3、如何开启回收站的功能[oracle@arcerzhang ~]$ sqlplus /nologSQL*Plus: Release 11.2.0.1.0 Production on Mon May 27 10:08:43 2013Copyright (c) 1982, 2009, Oracle. All rights reserved.SQL> conn 阅读全文
摘要:
1、输出命令echoView Code #!/bin/bash#echo命令可以显示文本行或变量,或者把字符串输入到文件#-e 解析转义#\c 不换行#\t 跳格#\n 换行echo -e "enter your name:\c"read nameecho "$name"echo -n "welco... 阅读全文
摘要:
Trace file分为 |-background trace file |-user trace file1、trace files是和进程相关的。2、在Oracle 中,Background Process Trace files是与server process严格区分的.3、如何查看oracle的background process trace files?View Code SQL> show parameter background_dump_destNAME TYPE VALUE-----------... 阅读全文