2015年6月26日

摘要: 挂载U盘1、进入mnt目录:#cd /mnt2、新建一个USB目录:#mkdir usb3、查看U盘的目录:#fdisk –l4、挂载:#mount –t vfat /dev/sdb1 /mnt/usb-t vfat是指fat的格式,/dev/sdb1 指的是U盘,/mnt/usb是指挂载的地方5、... 阅读全文
posted @ 2015-06-26 14:35 kenwong 阅读(337) 评论(0) 推荐(0) 编辑

2015年6月25日

摘要: CPU:Intel i3 3.40GHzMemory : 8GKettle默认配置将MySQL上的一张29W条数据的表,通过Kettle增量抽取到Vertica数据库中,结果在排序这一步报内存溢出异常。本来以为是kettle运行出错了,然后又重新试了一次,结果错误重现了。具体异常如下:org.ecl... 阅读全文
posted @ 2015-06-25 11:07 kenwong 阅读(2731) 评论(0) 推荐(0) 编辑

2015年3月30日

摘要: 在查看sql执行计划时,我们会发现表的连接方式有多种,本文对表的连接方式进行介绍以便更好看懂执行计划和理解sql执行原理。一、连接方式: 嵌套循环(NestedLoops (NL)) (散列)哈希连接(Hash Join (HJ)) (归并)排序合并连接(Sort Merge Join (SM... 阅读全文
posted @ 2015-03-30 15:07 kenwong 阅读(1171) 评论(0) 推荐(0) 编辑

2014年12月25日

摘要: 1.select*fromEMP twheret.deptno=10;EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO7782 CLARK MANAGER 7839 1981/6/9 2450.00 107839 KING PRESIDENT 198... 阅读全文
posted @ 2014-12-25 16:30 kenwong 阅读(2694) 评论(0) 推荐(0) 编辑

2014年12月1日

摘要: Oracle中TIMESTAMP时间的显示格式Oracle数据库的时间字段我们通常是使用timestamp 格式,在未做设置前,查询出来的数据类似于“27-1月 -08 12.04.35.877000 上午”,经过to_char函数转换后得到如下结果:“2008-01-27 00:04:35:877... 阅读全文
posted @ 2014-12-01 14:46 kenwong 阅读(2923) 评论(0) 推荐(0) 编辑

2014年11月4日

摘要: instr(title,'手册')>0相当于title like '%手册%'instr(title,'手册')=1相当于title like '手册%'instr(title,'手册')=0相当于title not like '%手册%'特殊用法:select id, name from user... 阅读全文
posted @ 2014-11-04 17:06 kenwong 阅读(652) 评论(0) 推荐(0) 编辑

2014年10月30日

摘要: insert allwhen sum_orders = 1000 and sum_orders <1000 theninto mediums_customerselseinto large_customersselect customer_id,sum(order_total) sum_orders... 阅读全文
posted @ 2014-10-30 10:58 kenwong 阅读(299) 评论(0) 推荐(0) 编辑

2014年10月20日

摘要: --登录:sys/ken@orcl as sysdba1、建立表空间、授予权限/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp... 阅读全文
posted @ 2014-10-20 17:19 kenwong 阅读(124) 评论(0) 推荐(0) 编辑

2014年9月17日

摘要: --测试数据create table rowtocol_test asselect 2009 year,1 month,'部门1' dept,50000 expenditure from dualunion all select 2009,2,'部门1',20000 from dualunion a... 阅读全文
posted @ 2014-09-17 10:59 kenwong 阅读(190) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE CC (Student NVARCHAR2(2),Course NVARCHAR2(2),Score INT ); INSERT into CC select N'张三',N'语文',78 from dual union all select N'张三... 阅读全文
posted @ 2014-09-17 10:05 kenwong 阅读(477) 评论(0) 推荐(0) 编辑

导航