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

本文涉及的产品
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
简介: 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运维与优化》的作者。


相关实践学习
基于CentOS快速搭建LAMP环境
本教程介绍如何搭建LAMP环境,其中LAMP分别代表Linux、Apache、MySQL和PHP。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
6月前
|
存储 Java 关系型数据库
JSP考试质量分析系统myeclipse开发mysql数据库bs框架java编程web网页结构
JSP 考试质量分析系统是一套完善的web设计系统,对理解JSP java编程开发语言有帮助,系统具有完整的源代码和数据库,开发环境为TOMCAT7.0,Myeclipse8.5开发,数据库为Mysql5.0,使用java语言开发,系统主要采用B/S模式开发。
184 1
|
6月前
|
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
108 0
|
10月前
|
SQL 运维 Oracle
MySQL 8.0 OCP(1Z0-908)中文题库解析
使用 MySQL Enterprise Monitor的无代理安装监视 MySQL服务器。
370 0
|
10月前
|
关系型数据库 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 了。
125 0
|
10月前
|
关系型数据库 MySQL 测试技术
django基于python智能在线考试阅卷系统(源码+系统+mysql数据库+Lw文档)
随着计算机多媒体技术的发展和网络的普及。采用当前流行的B/S模式以及3层架构的设计思想通过Python技术来开发此系统的目的是建立一个配合网络环境的基于python的学校对在线考试阅卷系统的平台,这样可以有效地解决基于python的在线考试阅卷系统混乱的局面。本文首先介绍了基于python的在线考试系统的发展背景与发展现状,然后遵循软件常规开发流程,首先针对系统选取适用的语言和开发平台,根据需求分析制定模块并设计数据库结构,再根据系统总体功能模块的设计绘制系统的功能模块图,流程图以及E-R图。然后,设计框架并根据设计的框架编写代码以实现系统的各个功能模块。最后,对初步完成的系统进行测试,主要是
344 0
|
10月前
|
存储 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的工作。
217 0
|
15天前
|
关系型数据库 MySQL 数据库
mysql卸载、下载、安装(window版本)
mysql卸载、下载、安装(window版本)
|
1月前
|
关系型数据库 MySQL 数据库连接
关于MySQL-ODBC的zip包安装方法
关于MySQL-ODBC的zip包安装方法
|
1月前
|
关系型数据库 MySQL 数据库
rds安装数据库客户端工具
安装阿里云RDS的数据库客户端涉及在本地安装对应类型(如MySQL、PostgreSQL)的客户端工具。对于MySQL,可选择MySQL Command-Line Client或图形化工具如Navicat,安装后输入RDS实例的连接参数进行连接。对于PostgreSQL,可以使用`psql`命令行工具或图形化客户端如PgAdmin。首先从阿里云控制台获取连接信息,然后按照官方文档安装客户端,最后配置客户端连接以确保遵循安全指引。
84 1
|
4天前
|
关系型数据库 MySQL 数据库
《MySQL 简易速速上手小册》第1章:MySQL 基础和安装(2024 最新版)
《MySQL 简易速速上手小册》第1章:MySQL 基础和安装(2024 最新版)
26 4