使用ODPStunnel命令上传log.txt文件到表中t_log去,t_log为分区表(p1string,p2string)。下列命令中正确的是?()
A. tunnel upload log. txt t_log/p1=”b1”/p2=“b2”
B. tunnel upload log. txt t_log (p1=b1”,p2=b2)
C. tunnel upload log. txt t_log/p1=b1”, p2=b2
D. tunnel upload log. txt t_log/(p1=b1”,p2=b2)
ADS可以使用explain命令查看执行计划。下面说法正确的是()
A. explain正确执行后返回信息中,第一行为逻辑计划,第二行为物理计划
B. 当用户发起一个 explain查询到ADS系统后,ADS会根据所有活跃节点上的数据来分析执行计划
C. 当用户通过查询的方式,想要获取文本格式的explain语句后,将会得到一个XML格式的串
D. 逻辑计划中, TableExecutor节点表示参与计算的信息, Join executor表示join的节点信息
从ODPS导入数据到ADS的时候,导入路径格式为?()
A. odps: //project name/table namepartiton spec
B. odps: //project name/table name partiton spec
C. odps: //project name/table name(partiton spec
D. odps: //project name/table name/partiton spec
开发人员在大数据计算服务(MaxCompute,原ODPS)进行数据探查时,发现浏览表browse中的数据字段user有空值(null),后续所有的数据加工都需要排除掉user字段有空值的行,因此他计划创建一张表t并且把过滤后的数据存放进去,合理的方式是()
A. create table t as select from browse where user is not null
B. create table t like browse;insert overwrite table t select from browse
C. create view t as select from browse where user is not null
D. select from browse where user is not null into t