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

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,集群系列 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运维与优化》的作者。


相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
3月前
|
关系型数据库 MySQL 数据安全/隐私保护
windows mysql8 安装后 提示密码不对,修改下密码认证方式就可以了
windows mysql8 安装后 提示密码不对,修改下密码认证方式就可以了
841 3
|
4月前
|
SQL Oracle 关系型数据库
mysql面试题库
mysql面试题库
|
SQL 运维 Oracle
MySQL 8.0 OCP(1Z0-908)中文题库解析
使用 MySQL Enterprise Monitor的无代理安装监视 MySQL服务器。
546 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 了。
167 0
|
存储 SQL Oracle
让ChatGPT做一下MySQL 8.0 OCP(1Z0-908)的真题,我松了一口气
MySQL OCP分成中文和英文两种,Oracle OCP只有英文考试,这里我们用MySQL 8.0 OCP(1Z0-908)的中文真题测试一下ChatGPT,看看ChatGPT能否获得MySQL OCP的认证,用这种方法判断ChatGPT会不会代替我们人类DBA的工作。
280 0
|
9天前
|
存储 SQL 关系型数据库
Mysql学习笔记(二):数据库命令行代码总结
这篇文章是关于MySQL数据库命令行操作的总结,包括登录、退出、查看时间与版本、数据库和数据表的基本操作(如创建、删除、查看)、数据的增删改查等。它还涉及了如何通过SQL语句进行条件查询、模糊查询、范围查询和限制查询,以及如何进行表结构的修改。这些内容对于初学者来说非常实用,是学习MySQL数据库管理的基础。
43 6
|
7天前
|
存储 关系型数据库 MySQL
Mysql(4)—数据库索引
数据库索引是用于提高数据检索效率的数据结构,类似于书籍中的索引。它允许用户快速找到数据,而无需扫描整个表。MySQL中的索引可以显著提升查询速度,使数据库操作更加高效。索引的发展经历了从无索引、简单索引到B-树、哈希索引、位图索引、全文索引等多个阶段。
38 3
Mysql(4)—数据库索引
|
9天前
|
SQL Ubuntu 关系型数据库
Mysql学习笔记(一):数据库详细介绍以及Navicat简单使用
本文为MySQL学习笔记,介绍了数据库的基本概念,包括行、列、主键等,并解释了C/S和B/S架构以及SQL语言的分类。接着,指导如何在Windows和Ubuntu系统上安装MySQL,并提供了启动、停止和重启服务的命令。文章还涵盖了Navicat的使用,包括安装、登录和新建表格等步骤。最后,介绍了MySQL中的数据类型和字段约束,如主键、外键、非空和唯一等。
27 3
Mysql学习笔记(一):数据库详细介绍以及Navicat简单使用
|
14天前
|
缓存 算法 关系型数据库
Mysql(3)—数据库相关概念及工作原理
数据库是一个以某种有组织的方式存储的数据集合。它通常包括一个或多个不同的主题领域或用途的数据表。
38 5
Mysql(3)—数据库相关概念及工作原理
|
1天前
|
存储 关系型数据库 MySQL
如何在MySQL中创建数据库?
【10月更文挑战第16天】如何在MySQL中创建数据库?