Oracle 1z0-908 Exam Practice Questions (P. 3)
- Full Access (152 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 #11
You have just installed MySQL on Oracle Linux and adjusted your /etc/my.cnf parameters to suit your installation.
Examine the output:

What statement is true about the start attempt?
Examine the output:

What statement is true about the start attempt?
- AMySQL server was not started due to a problem while executing process 2732.
- BMySQL server continued to start up even though another process existed.
- Csystemd found the mysqld service disabled and failed to start it.
- Dsystemd waited for 30 seconds before timing out and start up failed.
- Esystemd attempted to start mysqld, found another systemd mysqld process running, and shut it down.
Correct Answer:
E
E
send
light_mode
delete
Question #12
Examine these entries from the general query log:

All UPDATE statements reference existing rows.
Which describes the outcome of the sequence of statements?

All UPDATE statements reference existing rows.
Which describes the outcome of the sequence of statements?
- AConnection 24 experiences a lock wait timeout.
- BConnection 25 experiences a lock wait timeout.
- CA deadlock occurs immediately.Most Voted
- DAll statements execute without error.
- EA deadlock occurs after innodb_lock_wait_timeout seconds.
Correct Answer:
E
E
send
light_mode
delete
Question #13
Examine this command, which executes successfully:
$ mysqlrouter --bootstrap user@hostname:port --directory=directory_path
Which activity is performed?
$ mysqlrouter --bootstrap user@hostname:port --directory=directory_path
Which activity is performed?
- AMySQL Router is configured based on the information in files in directory_path.
- BMySQL Router configures itself based on the information retrieved from the InnoDB cluster metadata server.Most Voted
- CMySQL Router is restarted.
- DMySQL Router configures all the cluster nodes based on the information retrieved from the InnoDB cluster metadata server.
Correct Answer:
B
B
send
light_mode
delete
Question #14
You encountered an insufficient privilege error in the middle of a long transaction.
The database administrator is informed and immediately grants the required privilege:
GRANT UPDATE ON world.city TO ‘user1’;
How can you proceed with your transaction with the least interruption?
The database administrator is informed and immediately grants the required privilege:
GRANT UPDATE ON world.city TO ‘user1’;
How can you proceed with your transaction with the least interruption?
- ARoll back the transaction and start the transaction again in the same session.
- BRe-execute the failed statement in your transaction.Most Voted
- CChange the default database and re-execute the failed statement in your transaction.
- DClose the connection, reconnect, and start the transaction again.
Correct Answer:
B
B
send
light_mode
delete
Question #15
Examine these statements, which execute successfully:
CREATE ROLE r_world_rd;
GRANT SELECT ON world.* TO r_world_rd;
CREATE USER john IDENTIFIED BY ‘P@ssw0rd’;
GRANT r_world_rd TO john;
Examine these statements issued by user John:

What is the reason for the error?
CREATE ROLE r_world_rd;
GRANT SELECT ON world.* TO r_world_rd;
CREATE USER john IDENTIFIED BY ‘P@ssw0rd’;
GRANT r_world_rd TO john;
Examine these statements issued by user John:

What is the reason for the error?
- AThe statement was blocked by MySQL Firewall.
- BJohn has not activated the role.Most Voted
- CJohn needs to reconnect to the database.
- DThe DBA needs to execute FLUSH PRIVILEGES.
Correct Answer:
B
B
send
light_mode
delete
All Pages