MySQL 8.0 OCP 1Z0-908认证考试题库(7-20)

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,高可用系列 2核4GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介: Examine the command, which execute successfully

Q7.

Examine the command, which execute successfully:

shell> mysqld --initialize-insecure

Which statement is true?

A)The installation creates a temporary test environment with data in the /tmp directory.

B)The installation is created without enforcing or generating SSL certificates.

C)The root password is created in the error log in plain text.

D)The root password is not created allowing easy access from the same host.

Answer:D


Q8.

Examine this command:

shell> mysqldump --no-create-info --all-databases --result-file=dump.sql

Which statement is true?

A)It will not write CREATE TABLESPACE statements.

B)It will not write CREATE LOGFILE GROUP statements.

C)It will not write CREATE TABLE statements.

D)It will not write CREATE DATABASE statements.

Answer:C


Q9.

The mysqld instance has the connection control plugin enabled with these settings: Connection_control_min_connection_delay=1000 ,默认1000微秒,1秒–

Connection_control_max_connection_delay=2000

The minimum and maximum delays need to be increased to 3000 and 5000, respectively. A command is executed:

Mysql> SET GLOBAL connection_control_min_connection_delay=3000;

What is the result?

A)The minimum connection value is changed to 2000.

B)Only the minimum connection value is increased to 3000.

C)The minimum value increases to 3000 and the maximum value increases to 4000.

D)An error is returned.

Answer:D

min不能设置成超过max。


Q10.

You must export data from a set of tables in the world_x database.

Examine this set of tables: Tables ( country, countryinfo, location)

Which two option will export data into one or more files?

A)mysql> CLONE LOCAL DATA DIRECTORY = ‘/var/lib/mysql/world_x/country’;

mysql> CLONE LOCAL DATA DIRECTORY = ‘/var/lib/mysql/world_x/countryinfo’;

mysql> CLONE LOCAL DATA DIRECTORY = ‘/var/lib/mysql/world_x/location’;

B)mysql>SELECT * INTO OUTFILE ‘/output/contry.txt’ FROM world_x.country;

mysql>SELECT * INTO OUTFILE ‘/output/contryinfo.txt’ FROM world_x.countryinfo;

mysql>SELECT * INTO OUTFILE ‘/output/location.txt’ FROM world_x.location;

C)shell> mysqlexport world_x country countryinfo location > mydump.sql

D)shell> mysql --batch world_x.country world_x.countryinfo world_x.location > mydump.sql

E)shell> mysqldump world_x country countryinfo location > mydump.sql

Answer:BE

只有mysqlimport没有mysqlexport工具


Q11.

Examine this command and output:


Mysql>SELECT *

FROM performance_schema.table_io_waits_summary_by_table WHERE COUNT_STAR >0\G

********************************2.row *************************************

OBJECT_TYPE:TABLE

OBJECT_SCHEMA:test

OBJECT_NAME:demo_test

COUNT_STAR:61567093

SUM_TIMER_WAIT:59009007572922

MIN_TIMER_WAIT:395922 AVG_TIMER_WAIT:958095 MAX_TIMER_WAIT:558852005358

COUNT_READ:38665056 SUM_TIMER_READ:20598719962188 MIN_TIMER_READ:395922 AVG_TIMER_READ:532728 MAX_TIMER_READ:558852005358

COUNT_WRITE:22902028 SUM_TIMER_WRITE:38410287610743 MIN_TIMER_WRITE:1130688 AVG_TIMER_WRITE:1677006 MAX_TIMER_WRITE:17205682920

COUNT_FETCH:38665056 SUM_TIMER_FETCH:20598719962188 MIN_TIMER_FETCH:395922 AVG_TIMER_FETCH:532728 MAX_TIMER_FETCH:558852005358

… COUNT_DELETE:22902028

SUM_TIMER_DELETE:38410287610743 MIN_TIMER_DELETE:1130688 AVG_TIMER_DELETE:1677006 MAX_TIMER_DELETE:17205682920

Which two are true?

A)The longest I/O wait was for writes.(从记录中看是读)

B)I/O distribution is approximately 50/50 read/write.(读比写多近一倍)

C)22902028 rows were deleted.

D)Average read times are approximately three times faster than writes. E)The I/O average time is 532728.

Answer:CD


Q12.

A developer accidentally dropped the InnoDB table Customers from the Company database. There is a datadir copy from two days ago in the /dbbackup directory.

Which set of steps would restore only the missing table?

A)Stop the MySQL Server process, and execute:

mysqlbackup --datadir=/var/lib/mysql --backup-dir=/dbbackup

–include-tables=‘Company.Customers’

copy-back Start the mysqld process.

B)Stop the MySQL Server process and restart it with the command:

mysqld --basedir=/usr/local/mysql --datadir=/var/lib/mysql

Run mysqldump on this table and restore the dump file.

C)Stop the MySQL Server process and restart it with the command:

mysqld --basedir=/usr/local/mysql --datadir=/dbbackup

Run mysqldump on this table and restore the dump file.

D)Stop the MySQL Server process, copy the Customers.ibd file from the dbbackup directory, and start the mysqld process.

Answer:C


A 不对在8.20中,使用全备集,mysqlbackup的Table-Level Recovery (TLR)也可以进行表恢复,但company表可能存在未提交的数据

For non-TTS backups only, these additional limitations apply:

After partial restores, tables could contain changes from uncommitted transactions.

而且这个题目可能是对8.20之前的版本


Q13.

There has been an accidental deletion of data in one of your MySQL databases.

You determine that all entries in the binary log file after position 1797 must be replayed. Examine this partial command:

mysqlbinlog binlog.000008 --start-position=1798

Which operation will complete the command?

A)–write-to-remote-server must be added to the command line to update the database tables.

B)It can be piped into the MySQL Server via the command-line client. |mysql

C)You must use --stop-position=1797 to avoid the DELETE statement that caused the initial problem.

D)No changes required. It automatically updates the MySQL Server with the data.

Answer:B


Q14.

Table t is an InnoDB table. Examine these statements and output:

Selet count(1) from t;

±-----------+

| count(1) |

±-----------+

| 72 |

±-----------+

Mysql show indexes from t\G

1.row

Table: t

Non_unique:0

Key_name:PRIMARY

Seq_in_index: 1

Column_name: a

Collation:A

Cardinality: 72

Sub_part:NULL

Packed:NULL

Null:

Index_type:STREE

Comment: Index_comment:

Visible:YES

Expression:NULL

2.row

Table: t

Non_unique:1

Key_name:b_idx

Seq_in_index: 1

Column_name: b

Collation:A

Cardinality: 1

Sub_part:NULL

Packed:NULL

Null:YES

Index_type:BTREE

Comment:

Index_comment:

Visible:NO – 不可见索引

Expression:NULL

2 row in set (0.00 sec)

Which two are true?

ANALYZE TABLE t would update index statistics uniquely for the PRIMARY index.

B)Table t has two viable indexes to be used for queries.

C)SELECT b from t would perform a table scan.

D)Index b_idx has a low number of unique values.

E)SELECT a FROM t would perform a table scan.

Answer:CD


Q15.

You are using the InnoDB engine and the innodb_file_per_table option is set. You delete a significant number of rows of a large table named FACTORY.INVENTORY.

Which command will reorganize the physical storage of table data and associated index data for the INVENTORY table, in order to reduce storage space and improve I/O efficiency?

A)CHECK TABLE FACTORY.INVENTORY

B)ANALYZE TABLE FACTORY.INVENTORY

C)OPTIMIZE TABLE FACTORY.INVENTORY

D)mysqlcheck -u root -p FACTORY.INVENTORY

E)mysqldump -u root -p FACTORY INVENTORY

Answer:C


Q16.

The data in this instance transient;no backup or replication will be required.It is currently under performing.

The database size is static and including indexes is 19G

Total system memory is 32G

After profiling the system,you highlight these MySQL status and global variables:

Com_rollback |85408355 |

Com_commit |1234342 |

Innodb_buffer_pool_pages_free |163840 |

[mysqld]

Buffer_pool_size=20G

Innodb_flush_log_at_trx_commit=2

Disable-log-bin

The OS metrics indicate that disk is a bottleneck. Other variables retain their default values.

Which two changes will provide the most benefit to the instance?

A)Max_connections=10000

B)Innodb_log_file_size=1G

C)Sync_binlog=0

D)Innodb_doublewrite=0

E)Buffer_pool_size=24G

F)Innodb_flush_log_at_trx_commit=1

Answer:B D

E不对,实际数据19g,buffer设置成20或24没有区别。


Q17.

You are having performance issues with MySQL instances.

Those servers are monitored with MySQL Enterprise Monitor.

Using Query Analyzer, where do you begin to look for problem queries?

A)Look for queries with big prolonged spikes in row activity/access graph in the times series graph.

B)Sort the “Exec” column and check for SQL queries with high Query Response Time index (QRTi) values.

C)Look for queries with low total latency times in the Latency section in the time series graph.

D)Sort the “Exec” column and check for SQL queries with low Query Response Time index (QRTi) values.

Answer:D


QRTi越低越慢


Q18.

Examine the full path name of the backup image from MySQL Enterprise Backup with the --compress option:

/backup/full/mybackup/myimage.img

mysqlbackup.cnf contains this data: [mysqlbackup]

backup-dir=/backup/full/myrestore

backup-image=/backup/full/mybackup/myimage.img uncompress

You must perform a database restore to a new machine.

which command can provision the new database in datadir as /data/MEB?

A)mysqlbackup --defaults-file=mysqlbackup.cnf --datadir=/data/MEB restore-and-apply-log B)mysqlbackup --defaults-file=mysqlbackup.cnf --datadir=/data/MEB image-to-dir-and-apply-log

C)mysqlbackup --defaults-file=mysqlbackup.cnf --datadir=/data/MEB apply-log-and-copy-back

D)mysqlbackup --defaults-file=mysqlbackup.cnf --datadir=/data/MEB copy-back-and-apply-log

E)mysqlbackup --defaults-file=mysqlbackup.cnf --datadir=/data/MEB image-to-dir

Answer:D


Q19.

All mysql server instances belonging to innodb cluster have SSL configured and enabled. You must configure innodb cluster to use SSL for group communication.

Which two statements are ture?

A)Configuring SSL group communication also configures SSL distributed recovery.

B)SSL group communication requires the use of an additional set of parameters group_replication_recovery_*.

C)If only some innoDB cluster members are enabled for SSL group communication, and

–ssl-mode=PREFERED, communication will fail back to unencrypted connection.

D)An existing innoDB cluster must be dissolved and created form scratch to enable SSL for group communication.

E)SSL group communication can be enabled for an existing cluster,one instance at time,

by setting group_replication_ssl_mode.

F)SSL group communication must be enable at cluster creation time by

pecifying createCluster{{membersslmode:’REQUIRED’}}

Answer:DF


在mysqlshell中有这样的话:

The SSL mode of a cluster can only be set at the time of creation.

但在mysql的官方文档中并没有,因为8.0.27后的版本增加了用mysql自身通讯加密方式,因此并不需要重新创建集群,这里的答案是按旧的文档编写的。


Q20.

Which two are true about differences between logical and physical upgrades of MySQL databases?

A)Post-upgrade table storage requirements after physical upgrades are usually smaller than that after logical upgrades.

B)Physical upgrades leave data in place, whereas logical upgrades require data to be restored from mysqldump-type backups taken before the upgrades.

C)Physical upgrades are much faster because they do not require restarting the mysqld process.

D)Physical upgrades are performed for current instances on bare metal deployments, whereas logical upgrades are used for virtual machines or containerized instances.

E)Logical upgrades are much faster because they do not require starting the mysqld process.

F)Post-upgrade table storage requirements after logical upgrades are usually smaller than that after physical upgrades.

Answer:BF


关于作者

姚远:Oracle ACE(Oracle和MySQL数据库方向),华为云MVP,曾任IBM公司数据库部门经理。拥有包括Oracle 10g和12c OCM在内的20多项数据库相关技术认证,数据库类畅销书《MySQL 8.0运维与优化》的作者。


相关实践学习
每个IT人都想学的“Web应用上云经典架构”实战
本实验从Web应用上云这个最基本的、最普遍的需求出发,帮助IT从业者们通过“阿里云Web应用上云解决方案”,了解一个企业级Web应用上云的常见架构,了解如何构建一个高可用、可扩展的企业级应用架构。
MySQL数据库入门学习
本课程通过最流行的开源数据库MySQL带你了解数据库的世界。   相关的阿里云产品:云数据库RDS MySQL 版 阿里云关系型数据库RDS(Relational Database Service)是一种稳定可靠、可弹性伸缩的在线数据库服务,提供容灾、备份、恢复、迁移等方面的全套解决方案,彻底解决数据库运维的烦恼。 了解产品详情: https://www.aliyun.com/product/rds/mysql 
相关文章
|
存储 Java 关系型数据库
JSP考试质量分析系统myeclipse开发mysql数据库bs框架java编程web网页结构
JSP 考试质量分析系统是一套完善的web设计系统,对理解JSP java编程开发语言有帮助,系统具有完整的源代码和数据库,开发环境为TOMCAT7.0,Myeclipse8.5开发,数据库为Mysql5.0,使用java语言开发,系统主要采用B/S模式开发。
308 1
|
NoSQL 关系型数据库 MySQL
基于Python和mysql开发的智慧校园答题考试系统(源码+数据库+程序配置说明书+程序使用说明书)
基于Python和mysql开发的智慧校园答题考试系统(源码+数据库+程序配置说明书+程序使用说明书)
444 0
|
SQL Oracle 关系型数据库
mysql面试题库
mysql面试题库
|
Java 关系型数据库 MySQL
JSP考试报名管理系统myeclipse开发mysql数据库bs框架java编程web网页结构
二、功能介绍 (1)权限管理:对权限信息进行添加、删除、修改和查看 (2)用户管理:对用户信息进行添加、删除、修改和查看 (3)公告管理:对公告信息进行添加、删除、修改和查看 (4)考试科目管理:对考试科目信息进行添加、删除、修改和查看 (5)考试安排管理:对考试安排信息进行添加、删除、修改和查看 (6)报名管理:对报名信息进行添加、删除、修改和查看,审核, (7)用户登录、身份验证 三、注意事项 1、管理员账号:admin密码:admin 数据库配置文件DBO.java 角色:普通用户,管理员 2、开发环境为TOMCAT7.0,Myeclipse8.5开发,数据库为Mysql
249 0
|
SQL 运维 Oracle
MySQL 8.0 OCP(1Z0-908)中文题库解析
使用 MySQL Enterprise Monitor的无代理安装监视 MySQL服务器。
923 0
|
关系型数据库 MySQL
第一个获得MySQL 8 OCP的?
2020年7月7日考了MySQL 8 OCP,从百度搜索结果来看,目前中国只有我一个人取得了MySQL 8 OCP,肯定别人也有人考过了MySQL 8 OCP,不过人家比较低调,没有写博客罢了。从 MySQL 3 开始使用 MySQL,MySQL 5.6和5.7 OCP,现在是第三个 OCP 了。
318 0
|
25天前
|
安全 关系型数据库 MySQL
MySQL安全最佳实践:保护你的数据库
本文深入探讨了MySQL数据库的安全防护体系,涵盖认证安全、访问控制、网络安全、数据加密、审计监控、备份恢复、操作系统安全、应急响应等多个方面。通过具体配置示例,为企业提供了一套全面的安全实践方案,帮助强化数据库安全,防止数据泄露和未授权访问,保障企业数据资产安全。
|
10天前
|
缓存 关系型数据库 BI
使用MYSQL Report分析数据库性能(下)
使用MYSQL Report分析数据库性能
42 3
|
16天前
|
关系型数据库 MySQL 数据库
自建数据库如何迁移至RDS MySQL实例
数据库迁移是一项复杂且耗时的工程,需考虑数据安全、完整性及业务中断影响。使用阿里云数据传输服务DTS,可快速、平滑完成迁移任务,将应用停机时间降至分钟级。您还可通过全量备份自建数据库并恢复至RDS MySQL实例,实现间接迁移上云。
|
1月前
|
存储 运维 关系型数据库
从MySQL到云数据库,数据库迁移真的有必要吗?
本文探讨了企业在业务增长背景下,是否应从 MySQL 迁移至云数据库的决策问题。分析了 MySQL 的优势与瓶颈,对比了云数据库在存储计算分离、自动化运维、多负载支持等方面的优势,并提出判断迁移必要性的五个关键问题及实施路径,帮助企业理性决策并落地迁移方案。

推荐镜像

更多