Oracle 1z0-888 Exam Practice Questions (P. 5)
- Full Access (155 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #21
Due to an authentication plug-in that is used on the server, passwords are required to be sent as clear text as opposed to the usual encrypted format.
Which two methods would allow the mysql client to connect to the server and send clear text passwords? (Choose two.)
Which two methods would allow the mysql client to connect to the server and send clear text passwords? (Choose two.)
- Amysql --protocol=PLAIN –uroot –p –h dbhost.example.com
- BINSTALL PLUGIN mysql_cleartext_password SONAME ‘mysql_cleartext_password.so’;
- Cexport LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN=’Y’
- DSET GLOBAL mysql_cleartext_passwords=1;
- Emysql --enable-cleartext-plugin –uroot –p –h dbhost.example.com
Correct Answer:
DE
DE
send
light_mode
delete
Question #22
Which are three facts about backups with mysqldump? (Choose three.)
- Awill lock all storage engines for duration of backup
- Bcan back up a remote database server
- Callow a consistent backup to be taken
- Dare able to back up specific items within a database
- Ecreate automatically compressed backups
- Fare always faster to restore than binary backups
Correct Answer:
BCD
BCD
send
light_mode
delete
Question #23
Consider the key buffer in a MySQL server.
Which two statements are true about this feature? (Choose two.)
Which two statements are true about this feature? (Choose two.)
- AIt caches index blocks for MyISAM tables only.
- BIt caches index blocks for all storage engine tables.
- CIt is a global buffer.
- DIt is set on a per-connection basis.
- EIt caches index blocks for InnoDB tables only.
Correct Answer:
AD
AD
send
light_mode
delete
Question #24
You will configure a MySQL Server to act as a replication master. Which two options must be configured correctly to allow this? (Choose two.)
- Alog-master-updates
- Brpl-recovery-rank
- Cserver-id
- Denable-master-start
- Elog-bin
- Fmaster-logging
Correct Answer:
CE
CE
send
light_mode
delete
Question #25
You have a MySQL instance with the following variables in the /etc/my.cnf file:

You issue these statements:
USE prices;
UPDATE sales.january SET amount=amount+1000;
An hour after excluding the statements, you realize that you made a mistake and you want to go to the binary log and look at the statements again.
Which statement is true? (Choose two.)

You issue these statements:
USE prices;
UPDATE sales.january SET amount=amount+1000;
An hour after excluding the statements, you realize that you made a mistake and you want to go to the binary log and look at the statements again.
Which statement is true? (Choose two.)
- AYou would receive an error on the statement because you cannot update a different database that what is specified with the USE statement.
- BThe changes caused by the UPDATE statement are logged to the binary log because the instance is using --binlog-format = ROW
- CThe statement would fail because you cannot update more than one row at a time when using --binlog-format = ROW.
- DNothing is logged because you are executing an UPDATE statement that will cause changes to more than one row, and you do not have the --binlog-format value set to STATEMENT.
- ENothing was written to the binary log because you cannot perform a calculation in a query without enclosing the statement in single quotation marks.
Correct Answer:
DE
DE
send
light_mode
delete
All Pages