1、清空数据库alert_sid.log文件内容
cat /dev/null > alter_sid.log
2、set timing on
在命令行窗口,可以打开计时器通过上述命令;能够实时跟踪到oracle对每一条语句的执行时间;
3、如何开启回收站的功能
[oracle@arcerzhang ~]$ sqlplus /nolog SQL*Plus: Release 11.2.0.1.0 Production on Mon May 27 10:08:43 2013 Copyright (c) 1982, 2009, Oracle. All rights reserved. SQL> conn /as sysdba Connected. SQL> show parameter recyclebin NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ recyclebin string on
4、如何清空回收站的内容
SQL> purge user_recyclebin; Recyclebin purged.
5、获取每月第一天、最后一天
SQL> select to_char(trunc(add_months(last_day(sysdate), -1) + 1), 'yyyy-mm-dd') "本月第一天",to_char(last_day(sysdate), 'yyyy-mm-dd') "本月最后一天" from dual; 本月第一天 本月最后一 ---------- ---------- 2013-05-01 2013-05-31 SQL> select trunc(sysdate, 'MONTH') 本月第一天,to_date(to_char(last_day(sysdate),'YYYY-MM-DD'),'YYYY-MM-DD') 本月最后一天 from dual; 本月第一天 本月最后一天 ------------------ ------------------ 01-MAY-13 31-MAY-13 SQL> select trunc(sysdate, 'MONTH') 本月第一天,to_char(last_day(sysdate), 'YYYY-MM-DD') 本月最后一天 from dual; 本月第一天 本月最后一 ------------------ ---------- 01-MAY-13 2013-05-31
6、verify what your default login shell has been set
note:You do not need any special privileges or the assistance of your system administrator to use the chsh command.
[oracle@arcerzhang backup]$ cat /etc/passwd | grep -i oracle oracle:x:506:506::/RealData/oracle:/bin/bash
7、如何开启行移动的功能?
ALTER TABLE employees ENABLE ROW MOVEMENT;
8、
在.bash_profile中添加命令stty erase ^h