摘要:
转义字符:要求一:查出vname中包含字符串“CED”的行SQL> select * from v where vname like '%CED%';VNAME-------ABCEDF_BCEDF_\BCEDF要求二:查出vname中包含字符串“_BCE”的行SQL> SELECT * FROM ... 阅读全文
摘要:
SQL> select 'xxxx'oooo' from dual;ERROR:ORA-01756: quoted string not properly terminatedSQL> select "xxxx'oooo" from dual;select "xxxx'oooo" from dual... 阅读全文
摘要:
coalesce 函数 :Oracle COALESCE函数语法为COALESCE(表达式1,表达式2,...,表达式n),n>=2,此表达式的功能为返回第一个不为空的表达式,如果都为空则返回空值。注意:所有表达式必须为同一类型或者能转换成同一类型。返回第一个不为空的CREATE OR REPLAC... 阅读全文
摘要:
SQL> desc TEST_IDX Name Null? Type ----------------------------------------- -------- ---------------------------- OWNER VARCHAR2(3... 阅读全文
摘要:
运行top后,按P键就按CPU排序,按M键就按内存排序P – 以 CPU 占用率大小的顺序排列进程列表M – 以内存占用率大小的顺序排列进程列表在系统维护的过程中,随时可能有需要查看 CPU 使用率,并根据相应信息分析系统状况的需要。在 CentOS 中,可以通过 top 命令来查看 CPU 使用状... 阅读全文
摘要:
SQL> select count(*) from test_idx; COUNT(*)---------- 19087751SQL> select segment_name,segment_type,bytes/1024/1024 as MB from user_segments wher... 阅读全文
摘要:
[oracle@OAPRIMARY shell]$ cat expect.sh while read linedouser=`echo $line | awk '{print $1}'`ip=`echo $line |awk '{print $2}'`passwd=`echo $line | awk... 阅读全文
摘要:
AAAAAAAAA(A)/app/cbsrun/sbin> cat reloadtuxconfig.exp puts "Start"set i 1set max_i [lindex $argv 0]set passwd [lindex $argv 1]spawn r... 阅读全文
摘要:
[oracle@june ~]$ cat continue.sh for i in a b c d e f gdoif [ "$i" = "c" ]thenecho xxxxxxxxxxxxxxecho "跳过的字符为"$icontinuefidone[oracle@june ~]$ sh -x... 阅读全文
摘要:
date=`echo $1 | tr -d '-'`date1=`echo $1`date_end=`get_date $2 +1 | sed 's/-//g'`while [ 1 ]dodateecho $date1 if [ ! -d "/home/dataun/ETL_init/DATA/... 阅读全文