Oracle MySQL 5.6 Database Administrator - 1z0-883 Exam Practice Test

Which statement is true about FLUSH LOGS command?
Correct Answer: C Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
What are two methods of taking a binary backup of a Mysql Server using InnoDB storage engine?
Correct Answer: D,E Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
A general purpose MySQL instance is configured with the following options:
-- log-slow-queries -- long-query-time=,0001 -- log-slow-admin-queries -- general-log -- log-bin -- binlog-format=STATEMENT -- innodb-flush-log-at-trx-commit=1
Which three statements are true?
Correct Answer: A,B,D Vote an answer
Your developers have created table to store some of their program's data. After examining the slow Query Log, you see that they are using the LIKE operator and SUBSTER () functions against a VARCHAR (10000) column quite often.
An example of the start of one row of data:
'GREEN01020495888331993-12-10/2...'
What should you do to improve the overall performance?
Correct Answer: D Vote an answer
Following a server crash, the automatic recovery of InnoDB fails.
How would you begin to manually repair the InnoDB tables?
Correct Answer: D Vote an answer
Consider the query:
Mysql> SET @run = 15;
Mysql> EXPLAIN SELECT objective, stage, COUNT (stage)
FROM iteminformation
WHERE run=@run AND objective='7.1'
GROUP BY objective,stage
ORDER BY stage;

The iteminformation table has the following indexes; Mysql> SHOW INDEXES FROM iteminformation:

This query is run several times in an application with different values in the WHERE clause in a growing data set.
What is the primary improvement that can be made for this scenario?
Correct Answer: E Vote an answer
Consider the events_% tables in performance Schema.
Which two methods will clear or reset the collected events in the tables?
Correct Answer: C,F Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
What are three methods to reduce Mysql server exposure to remote connections?
Correct Answer: A,C,E Vote an answer
Which three statements describe how the strict SQL mode provides added security?
Correct Answer: A,C,E Vote an answer
You install a copy of Mysql 5.6.13 on a brand new Linux server by using RPM packages. The server starts successfully as verified by the following commands:
$ pidof mysqld
$tail - n2 /var/lib.mysql/hostname.err
2013-08-18 08:18:38 3132 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.6.13-enterprise-commercial-advaced' socket: '/tmp/mysql.sock' port;
3306 Mysql Enterprise Server - Advanced Edition (Commercial)
You attempt to log in as the root user with the following command:
$mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
Which statement is true about this scenario?
Correct Answer: B Vote an answer