题目内容

在使用ODPStunnel命令upload数据的时候,关于一些常见参数,说法正确的包括以下哪些项()

A. -c本地数据文件编码,缺省为utf8
B. - dfp DateTime类型数据格式,缺为yyyMMddHHmmss
C. -Cp指定是否在本地压缩后再上传,减少网络流量,缺省为true
D. -fd本地数据文件的列分隔符,缺省为逗号

查看答案
更多问题

Tbl_p为一个ODPS的分区表,包含一个p1=’1’的分区,现在想把该分区上的数据删除,达到使用select*fromtblwherepi='1’查询时,返回结果为空的目的。以下哪个SQL可以实现该功能?()

A. truncate table tbl.
B. alter table tbl drop partition(p1=1):
C. insert into table tbl select fron tbl where 1=2;
D. delete from table tbl

tb_p为一个ODPS的分区表,包含一个p1”=1”的分区,现在想把该分区上的数据删除达到select*fromtblwherep1=1查询时,返回结果为空的目的。以下哪个SQL可以实现这个功能()

A. alter table tbl drop partition(p1=’1);
B. delete from table tbl:
C. insert into table tbl select *from tbl where 1=2
D. truncate table tbl

大数据计算服务中的客户表customer是一张非分区表,现在想要清空表的内容然后重新上传数据,可以通过什么将数据清空()

A. insert overwrite table customer select*from customer.
B. truncate table customer
C. delete from customer
D. drop table customer

表中有1000万行数据,想要随薏抽取10行数据,在odpscmd中执行消耗时间最短的方式是哪种()

A. select from t where rownum <=10
B. select from t limit 10
C. read t 10
D. get t 10

答案查题题库