上一页 1 ··· 152 153 154 155 156 157 158 159 160 ··· 177 下一页
摘要: 转义字符:要求一:查出vname中包含字符串“CED”的行SQL> select * from v where vname like '%CED%';VNAME-------ABCEDF_BCEDF_\BCEDF要求二:查出vname中包含字符串“_BCE”的行SQL> SELECT * FROM ... 阅读全文
posted @ 2014-05-18 19:58 czcb 阅读(148) 评论(0) 推荐(0) 编辑
摘要: SQL> select 'xxxx'oooo' from dual;ERROR:ORA-01756: quoted string not properly terminatedSQL> select "xxxx'oooo" from dual;select "xxxx'oooo" from dual... 阅读全文
posted @ 2014-05-18 16:12 czcb 阅读(170) 评论(0) 推荐(0) 编辑
摘要: coalesce 函数 :Oracle COALESCE函数语法为COALESCE(表达式1,表达式2,...,表达式n),n>=2,此表达式的功能为返回第一个不为空的表达式,如果都为空则返回空值。注意:所有表达式必须为同一类型或者能转换成同一类型。返回第一个不为空的CREATE OR REPLAC... 阅读全文
posted @ 2014-05-18 14:45 czcb 阅读(2478) 评论(0) 推荐(0) 编辑
摘要: SQL> desc TEST_IDX Name Null? Type ----------------------------------------- -------- ---------------------------- OWNER VARCHAR2(3... 阅读全文
posted @ 2014-05-17 08:56 czcb 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 运行top后,按P键就按CPU排序,按M键就按内存排序P – 以 CPU 占用率大小的顺序排列进程列表M – 以内存占用率大小的顺序排列进程列表在系统维护的过程中,随时可能有需要查看 CPU 使用率,并根据相应信息分析系统状况的需要。在 CentOS 中,可以通过 top 命令来查看 CPU 使用状... 阅读全文
posted @ 2014-05-16 09:48 czcb 阅读(196) 评论(0) 推荐(0) 编辑
摘要: SQL> select count(*) from test_idx; COUNT(*)---------- 19087751SQL> select segment_name,segment_type,bytes/1024/1024 as MB from user_segments wher... 阅读全文
posted @ 2014-05-14 14:51 czcb 阅读(245) 评论(0) 推荐(0) 编辑
摘要: [oracle@OAPRIMARY shell]$ cat expect.sh while read linedouser=`echo $line | awk '{print $1}'`ip=`echo $line |awk '{print $2}'`passwd=`echo $line | awk... 阅读全文
posted @ 2014-05-13 16:28 czcb 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2014-05-13 13:21 czcb 阅读(487) 评论(0) 推荐(0) 编辑
摘要: [oracle@june ~]$ cat continue.sh for i in a b c d e f gdoif [ "$i" = "c" ]thenecho xxxxxxxxxxxxxxecho "跳过的字符为"$icontinuefidone[oracle@june ~]$ sh -x... 阅读全文
posted @ 2014-05-13 10:12 czcb 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 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/... 阅读全文
posted @ 2014-05-13 09:37 czcb 阅读(365) 评论(0) 推荐(0) 编辑
上一页 1 ··· 152 153 154 155 156 157 158 159 160 ··· 177 下一页