单项选择题
关于InnoDB 的关闭参数innodb_fast_shutdown 说法正确的是()。
A.值为0表示在InnoDB 关闭时,需要purge all,mer insert buffer,flush dirty page
B.值为1表示在InnoDB 关闭时,不需要purge all,只需要mer insert buffer,flush dirty page
C.值为2表示在InnoDB 关闭时,需要purge all,mer insert buffer,不需要flush dirty page
D.值为3表示在InnoDB 关闭时,不需要purge all,mer insert buffer,flush dirty page
相关考题
-
单项选择题
查看二进制日志mysql-bin.000001的时间和位置的命令是()。
A.mysqlbinlog mysql-bin.000001
B.show binlog events in ’mysql-bin.000001’
C.mysqlbinlog ’mysql-bin.000001’
D.show binlog events in mysql-bin.000001 -
单项选择题
如果误删除了employees 数据库中的数据表departments ,现使用()命令回复SQL 格式的备份数据。
A.mysql-uroot-p123456employees< departments.sql
B.mysql-uroot-p123456employees>departments.sql
C.mysql-uroot-p123456employees departments< departments.sql
D.mysql-uroot-p123456employees departments>departments.sql -
单项选择题
向数据库SC 中的数据表course (cid,cname,credit)导入数据,数据文件的内容形式如下:“20121107”,“操作系统”,3“20121110”,“数据库”,5根据数据文件内容的形式,下面mysqlimport 语句正确的是()。
A.mysqlimport-uroot-p123456SC course.txt-fields-terminated-by=’,’-enclosed-by=’"’-lines-terminated-by=’\n’
B.mysqlimport-uroot-p123456SC course.txt-fields-terminated-by=,-fields-optionally-enclosed-by="\"-lines-terminated-by=\n
C.mysqlimport -uroot -p123456SC course.txt -fields -terminated -by=,-optionally -enclosed-by="\"-lines-terminated-by=\n
D.mysqlimport -uroot -p123456SC course.txt -fields -terminated -by=’,’-fields -optionally-enclosed-by=’"’-lines-terminated-by=’\n’
