题目内容

RDS采用的主备MM的高可用架构,其主备之间的数据同步依靠日志的方式实现,Mysql数据库和SQLServer分别使用的日志是什么()

A. 均为事务日志
B. Mysql数据库为事务日志, SQL Server为BINLOG日志
C. Mysql数据库为BINLOG日志 SQL Serve为事务日志
D. 均为 BINLOG日志

查看答案
更多问题

运营人员为了搞促销需要找出目标客户名单,这批客户的信息存储在大数据计算服务(MaxCompute,原ODPS)的user表中,并且用户名字段username中包含vip字样,通过执行SQL语句可以找出这批客户()

A. select* from user where username contains(‘vip’)
B. Select* from user where username=’vlp’
C. Select * from user where username like “%vip%”
D. Select* from user where usemame like “vip”

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

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

使用大数据计算服务(MaxCompute。原ODPS)tunnel命令上传logtxt文件到表tlog中去,t-log为分区表,分区列为(p1string,p2string)。下列命令中正确的是?()

A. tunnel uplad 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=2)

大数据计算服务中的日志表log是一张分区表,分区键是d每天产生一个分区用于存储当天新增的数据,现在共有dt='20160101'至dt='20160131'共31个分区的数据,为了删除20160101当天新增的数据,可以通过方式实现()

A. delete from log where dt= 20160101
B. alter table log drop partition(dt=20160101)
C. truncate table where dt=20160101
D. drop partition log(dt=20160101)

答案查题题库