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

1z0-908 MySQL 8.0 Database Administrator Questions and Answers

Questions 4

You recently upgraded your MySQL installation to MySQL 8.0.

Examine this client error:

1z0-908 Question 4

Which option will allow this client to connect to MySQL Server?

Options:

A.

[mysqld]

default_authentication_plugin=sha256_password

B.

ALTER USER user -

IDENTIFIED WITH mysql_native_password

BY 'password';

C.

[mysqld]

default_authentication_plugin=caching_sha2_password

D.

ALTER USER user -

IDENTIFIED WITH caching_sha2_password

BY 'password';

E.

ALTER USER user -

IDENTIFIED WITH sha256_password -

BY 'password';

F.

[mysqld]

default_authentication_plugin=mysql_native_password

Buy Now
Questions 5

Which two are features of MySQL Enterprise Firewall? (Choose two.)

Options:

A.

recording incoming SQL statement to facilitate the creation of a whitelist of permitted commands

B.

blocking of potential threats by configuring pre-approved whitelists

C.

modifying SQL statement dynamically with substitutions

D.

automatic locking of user accounts who break your firewall

E.

provides stateless firewall access to TCP/3306

Buy Now
Questions 6

What is the correct syntax for using transparent data encryption with an existing InnoDB table?

Options:

A.

ALTER TABLE t1 ADD ENCRYPTED_TABLESPACE = 'Y';

B.

ALTER TABLE t1 ENCRYPTION='Y';

C.

ALTER TABLE t1 WITH ENCRYPTION USING MASTER KEY;

D.

ALTER TABLE t1 SET TDE = 'ON';

Buy Now
Questions 7

Which three requirements must be enabled for group replication? (Choose three.)

Options:

A.

slave updates logging

B.

semi-sync replication plugin

C.

primary key or primary key equivalent on every table

D.

binary log checksum

E.

binary log ROW format

F.

binary log MIXED format

G.

replication filters

Buy Now
Questions 8

Examine this query and output:

1z0-908 Question 8

Which two statements are true? (Choose two.)

Options:

A.

The country table is accessed as the first table, and then joined to the city table.

B.

It takes more than 8 milliseconds to sort the rows.

C.

The optimizer estimates that 51 rows in the country table have Continent = ‘Asia’.

D.

35 rows from the city table are included in the result.

E.

The query returns exactly 125 rows.

Buy Now
Questions 9

You plan to install MySQL Server by using the RPM download.

Which two statements are true? (Choose two.)

Options:

A.

You can provide the root password interactively.

B.

You must manually initialize the data directory.

C.

The MySQL RPM package installation supports deploying multiple MySQL versions on the same host.

D.

MySQL uses the RPM relocatable installation target feature.

E.

The functionality is split among several RPM package files.

F.

You can find the root password in the error log after the first start.

Buy Now
Questions 10

Which statement is true about InnoDB persistent index statistics?

Options:

A.

Updating index statistics is an I/O expensive operation.

B.

Index statistics are calculated from pages buffered in the buffer pool for tables with InnoDB storage engine.

C.

Setting innodb_stats_auto_recalc=ON causes statistics to be updated automatically when a new index is created.

D.

Execution plans based on transient index statistics improve precision when innodb_stats_persistent_sample_pages is increased.

E.

Increasing innodb_stats_persistent_sample_pages determines higher pages scanning speed, at the cost of increased memory usage.

Buy Now
Questions 11

Which four are types of information stored in the MySQL data dictionary? (Choose four.)

Options:

A.

performance metrics

B.

table definitions

C.

access control lists

D.

view definitions

E.

server runtime configuration

F.

server configuration rollback

G.

stored procedure definitions

Buy Now
Questions 12

You are backing up raw InnoDB files by using mysqlbackup.

Which two groups of files will be backed up during a full backup? (Choose two.)

Options:

A.

ibbackup files

B.

*.CSM files

C.

*.sdi files

D.

*.ibd files

E.

ib_logfile* files

Buy Now
Questions 13

Which two are true about binary logs used in asynchronous replication? (Choose two.)

Options:

A.

They are pushed from the master to the slave.

B.

They contain events that describe database changes on the master.

C.

They contain events that describe all queries run on the master.

D.

They contain events that describe only administrative commands run on the master.

E.

They are pulled from the master to the slave.

Buy Now
Questions 14

An attempt to recover an InnoDB Cluster fails.

Examine this set of messages and responses:

host3:3377 ssl JS > dba.rebootClusterFromCompleteOutage() Reconfiguring the default cluster from complete outage…

The instance ‘host1:3377'’ was part of the cluster configuration. Would you like to rejoin it to the cluster? [y/N]: y

The instance ‘host2:3377’ was part of the cluster configuration. Would you like to rejoin it to the cluster? [y/N]: y

Dba.rebootClusterFromCompleteOutage: The active session instance isn’t the most updated in comparison with the ONLINE instances of the Cluster’s metadata. Please use the most up to date instance: ‘host1:3377’. (RuntimeError)

Which statement is true?

Options:

A.

The instance deployed on host3 must be rebuilt with a backup from the primary instance.

B.

The cluster is running and there is at least one ONLINE instance.

C.

The instance deployed on host3 must be synchronized from a donor deployed on host1 by using the command cluster.addInstance(‘host1:3377’).

D.

It is possible to determine the most up-to-date instance by comparing different global transaction identifier (GTID) sets with GTID_SUBSET(set1,set2).

E.

The active session instance is invalid and must be re-created by using the command shell.connect (‘host3:3377’).

Buy Now
Questions 15

Which three are requirements for a secure MySQL Server environment? (Choose three.)

Options:

A.

Restrict the number of OS users that have access at the OS level.

B.

Ensure appropriate file system privileges for OS users and groups.

C.

Minimize the number of non-MySQL Server-related processes running on the server host.

D.

Encrypt the file system to avoid needing exact file-system permissions.

E.

Keep the entire software stack on one OS host.

F.

Run MySQL server as the root user to prevent incorrect sudo settings.

Buy Now
Questions 16

A user wants to connect without entering his or her username and password on the Linux command prompt.

Which three locations can be used to store the user’s mysql credentials to satisfy this requirement? (Choose three.)

Options:

A.

$HOME/.my.cnf file

B.

$MYSQL_HOME/my.cnf file

C.

DATADIR/mysqld-auto.cnf file

D.

$HOME/.mylogin.cnf file

E.

$HOME/.mysql/auth/login file

F.

/etc/my.cnf file

G.

$HOME/.mysqlrc file

Buy Now
Questions 17

Which four connection methods can MySQL clients specify with the --protocol option when connecting to a MySQL server? (Choose four.)

Options:

A.

TCP

B.

SOCKET

C.

PIPE

D.

DIRECT

E.

IPv6

F.

FILE

G.

IPv4

Buy Now
Questions 18

Your MySQL instance is capturing a huge amount of financial transactions every day in the finance database.

Company policy is to create a backup every day.

The main tables being updated are prefixed with transactions-.

These tables are archived into tables that are prefixed with archives- each month. mysqlbackup --optimistic-busy-tables="^finance\.transactions-.*" backup

Which optimization process best describes what happens with the redo logs?

Options:

A.

The redo logs are backed up first, then the transaction and archive tables.

B.

The redo logs are backed up only if there are changes showing for the transactions tables.

C.

The redo logs are not backed up at all.

D.

The archive tables are backed up first, then the transaction tables and redo logs.

E.

The transaction tables are backed up first, then the archive tables and redo logs.

Buy Now
Questions 19

Which two storage engines provide a view of the data consistent with the storage system at any moment? (Choose two.)

Options:

A.

MyISAM

B.

NDB

C.

MEMORY

D.

ARCHIVE

E.

InnoDB

Buy Now
Questions 20

Examine this query:

1z0-908 Question 20

What information does this query provide?

Options:

A.

total memory used across all connections associated with the user on connection number 10

B.

total memory used by the first 10 connections

C.

total memory used by thread number 10

D.

total memory used across all connections associated with the user on thread number 10

E.

total memory used by connection number 10

F.

total memory used by the first 10 threads

Buy Now
Questions 21

MySQL programs look for option files in standard locations.

Which method will show the option files and the order in which they are read?

Options:

A.

shell> mysqladmin --debug

B.

shell> mysql --print-defaults

C.

shell> mysqld --help --verbose

D.

mysql> SHOW GLOBAL VARIABLES;

Buy Now
Exam Code: 1z0-908
Exam Name: MySQL 8.0 Database Administrator
Last Update: May 1, 2024
Questions: 140

PDF + Testing Engine

$56  $159.99

Testing Engine

$42  $119.99
buy now 1z0-908 testing engine

PDF (Q&A)

$35  $99.99
buy now 1z0-908 pdf
dumpsmate guaranteed to pass
24/7 Customer Support

DumpsMate's team of experts is always available to respond your queries on exam preparation. Get professional answers on any topic of the certification syllabus. Our experts will thoroughly satisfy you.

Site Secure

mcafee secure

TESTED 04 May 2024