Labour Day Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

1z0-888 PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

1z0-888 PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: MySQL 5.7 Database Administrator
  • Last Update: May 4, 2024
  • Questions and Answers: 124
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

1z0-888 Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

1z0-888 Practice Exam Questions with Answers MySQL 5.7 Database Administrator Certification

Question # 6

A MySQL database uses all InnoDB tables and is configured as follows;

1z0-888 question answer

You will be setting up a replication slave by using mysqldump. You will need a consistent backup taken from your running production server. The process should have minimal impact to active database connections.

Which two arguments will you pass to mysqldump to achieve this? (Choose two.)

A.

--skip-opt

B.

--lock-all-tables

C.

--create-apply-log

D.

--single-transaction

E.

--master-data

Full Access
Question # 7

Which two capabilities are granted with the SUPER privilege?

A.

allowing change of the server runtime configuration

B.

allowing a client to shut down the server

C.

allowing client accounts to take over the account of another user

D.

allowing a client to kill other client connections

Full Access
Question # 8

Which statement is correct about how InnoDB storage engine uses disk space?

A.

It stores data in .MYD files and its index and undo information in the common tablespace.

B.

It stores data in .MYD files, index information in .MYI files, and undo information the common tablespace.

C.

It stores its data in tablespace file(s). Index and data dictionary details are stored in .FRM files.

D.

It stores its data, index and undo information in .MYD and .MYI files.

E.

It stores data, index and undo information in tablespace file(s).

Full Access
Question # 9

Which storage option for MySQL data directory typically offers the worst performance in a highly concurrent, OLTP-heavy, IO-bound workload?

A.

battery-backed locally-attached RAID 5 array

B.

iSCSI Lun

C.

SAN (Fibre Channel) Lun

D.

NFS (Networked File System) mount

Full Access
Question # 10

You have installed MySQL Server for the first time on your system. However, the data directory along with the tables in the mysql system database are missing. Which step do you perform to create the contents of the data directory?

A.

Run the create_system_tables.sql file

B.

Run the mysql_unpack.sql file

C.

Invoke mysqld with the --initialize option.

D.

Invoke mysql with the --initialize option.

Full Access
Question # 11

You want to create a temporary table named OLD_INVENTORY in the OLD_INVENTORY database on the master server. This table is not to be replicated to the slave server.

Which two changes would ensure that the temporary table does not propagate to the slave? (Choose two.)

A.

Set binlog_format=MIXED with the --replicate-ignore-temp-table option.

B.

Use the --replicate-do-db, --replicate-do-table, or --replicate-wild-do-table option with the value equal to OLD_INVENTORY.

C.

Change the binlog_format option to ROW and restart mysqld before you create the OLD_INVENTORY table.

D.

Stop SQL_THREAD on the slave until you have finished using the OLD_INVENTORY temporary table.

E.

Use the --replicate-ignore-table option with the value equal to OLD_INVENTORY.OLD_INVENTORY and restart mysqld before creating the temporary table.

Full Access
Question # 12

A MySQL instance is running on a dedicated server. Developers access the server from the same network subnet. Users access the database through an application that is running on a separate server in a DMZ.

Which two will optimize the security of this setup? (Choose two.)

A.

enabling and using SSL for connections to the MySQL database

B.

running the server with –-skip-networking specified

C.

disabling connections from named pipes or socket files (depending on the operating system of the server)

D.

starting the server with –-bind-address=0.0.0.0 specified

E.

limiting logins to originate from the application server or the server’s subnet

F.

installing MySQL on the application server, and running the database and application on the same server

Full Access
Question # 13

SQL injection is a common security threat.

Which two methods would help protect against this risk?

A.

using stored procedures to validate values that are input

B.

using SQL variables to secure input values

C.

using prepared statements to handle unsecured values

D.

installing the SQL Protection plugin to catch such attempts

E.

starting the server with the –-injection-protection command-line option.

Full Access
Question # 14

Which two statements are true regarding the creating of new MySQL physical and logical backups? (Choose two.)

A.

Physical backups can be used to recover from data corruption.

B.

Logical backups are human-readable whereas physical backups are not.

C.

Logical backups are always larger than physical backups.

D.

Physical backups are usually slower than text backups.

E.

Physical backups are usually faster than text backups.

Full Access
Question # 15

A MySQL server was initialized with separate UNDO tablespaces. Users complain that when they roll back large transactions, the time to process the request takes too long. The DBA would like to move the MySQL InnoDB UNDO tablespace to a solid-state drive (SSD) for better performance. Is this possible and how?

A.

Yes. Shut down the mysqld process, enable the transportable_tablespace option, and move the UNDO directory to the SSD.

B.

Yes. Shut down, copy the UNDO tablespaces to the new location, and change the innodb_undo_directory value in your my.cnf.

C.

No. The UNDO tablespaces must remain on the same file system as the system tablespaces.

D.

No. The sequential write pattern of the UNDO tablespaces is not supported on modern SSD block devices.

Full Access
Question # 16

On a master server that is using statement-based replication, a table of log data has become very large.

You decide to delete 100,000 rows.

Which two methods can be independently invoked to ensure that the delete is properly propagated to the slave? (Choose two.)

A.

Change the replication mode to MIXED before issuing any delete statements when the LIMIT clause is used.

B.

If the data modification is non-deterministic, the query optimizer will resolve any potential issues.

C.

Use the LIMIT clause to limit the deletion to 100,000 rows.

D.

Use the LIMIT clause in conjunction with the ORDER BY clause.

Full Access
Question # 17

You want to immediately stop access to a database server for remote user ‘mike’@’client.example.com’. This user is currently not connected to the server.

Which two actions can you take to stop any access from the user?

A.

Use ALTER USER ‘mike’@’client.example.com’ PASSWORD EXPIRE;

B.

Use REVOKE ALL PRIVILEGES FROM ‘mike’@’client.example.com’;

C.

Execute the mysql_secure_installation command.

D.

Use DROP USER ‘mike’@’client.example.com’;

E.

Use GRANT USAGE ON *.* TO ‘mike’@’client.example.com’ MAX_USER_CONNECTIONS=0;

F.

Use ALTER USER ‘mike’@’client.example.com’ ACCOUNT LOCK;

Full Access
Question # 18

Which statement is true about tablespaces?

A.

All tablespace files must be in the directory specified by the –-datadir option.

B.

General tablespaces can be configured to span multiple files.

C.

All tables must be in either the system tablespace or a general tablespace.

D.

The system tablespace can be configured to span multiple files.

Full Access