简述drop table
tmp_qry_cus_186mcc_highuser_d;create global temporary table
tmp_qry_cus_186mcc_highuser_d( user_id number(15))on commit preserve rows; 这....
分类:
数据库 时间:
2014-05-19 20:57:00
阅读次数:
399
Given a linked list and a valuex, partition it
such that all nodes less thanxcome before nodes greater than or equal tox.You
should preserve the origi...
分类:
其他好文 时间:
2014-05-19 11:38:43
阅读次数:
246
代码SELECT A.*FROM( SELECT ROW_NUMBER()
OVER(PARTITION BY Host ORDER BY Host,count(EntranceURL) DESC) AS ROW, Host,
EntranceURL as PageURL ...
分类:
数据库 时间:
2014-05-19 09:12:59
阅读次数:
338
hive有textFile,SequenceFile,RCFile三种文件格式。textfile为默认格式,建表时不指定默认为这个格式,导入数据时会直接把数据文件拷贝到hdfs上不进行处理。SequenceFile,RCFile格式的表不能直接从本地文件导入数据,数据要先导入到textfile格式的...
分类:
其他好文 时间:
2014-05-19 08:33:35
阅读次数:
349
简单的创建表create table table_name ( id int,
dtDontQuery string, name string)创建有分区的表create table table_name ( id ...
分类:
其他好文 时间:
2014-05-19 08:30:57
阅读次数:
493
Hive安装配置详解本文主要是在Hadoop单机模式中演示Hive默认(嵌入式Derby模式)安装配置过程。1、下载安装包到官方网站下载最新的安装包,这里以Hive-0.12.0为例:$tar-zxfhive-0.12.0-bin.tar.gz-C/home/ubuntu/hive-0.12.0在这里,HIVE_HOME=”/home/ubuntu/hive-0.12.0”。..
分类:
其他好文 时间:
2014-05-16 02:36:44
阅读次数:
369
前一直用MDT部署64位系统,今有需要需要一台32位的,发现在部署时出同了这个错误,网上查了下资料一般都是说U盘问题,但我是用PXE启动的,上图FAILURE(5456):UnabletodetermineDestinationDisk,Partition,and/orDrive.SeeBDD.LOG百思不得其解时,晚上睡觉想起一事,第二天查了..
分类:
其他好文 时间:
2014-05-16 02:07:02
阅读次数:
392
我们经常会遇到,在删除数据库某条记录时,原来的ID排序会有间隔,比如删除了ID为8的数据,这个表的ID排序就会从7直接到9,那我们如何解决这个ID重新排列的问题呢?只需一下三步:1.删除这个表的IDALTER
TABLE `table_name` DROP `id`;2.重新建立ID字段ALTER ...
分类:
数据库 时间:
2014-05-16 00:09:54
阅读次数:
452
Row_number配合over(partition by xx order by xx) 与
Group by 的区别, = order + group?SqlBulkCopyGuidance Automation Toolkit 2010
Reference
分类:
其他好文 时间:
2014-05-15 20:39:55
阅读次数:
249