Oracle 1z0-883 Exam Practice Questions (P. 5)
- Full Access (100 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
What are three actions performed by the mysql_secure_installation tool?
- AIt prompts you to set the root user account password.
- BIt checks whether file permissions are appropriate within datadir.
- CIt asks to remove the test database, which is generated at installation time.
- DIt can delete any anonymous accounts.
- EIt verifies that all users are configuration with the longer password hash.
Correct Answer:
ACD
Reference:
http://prefetch.net/blog/index.php/2006/06/18/securing-mysql-installations-with-mysql_secure_installation/
ACD
Reference:
http://prefetch.net/blog/index.php/2006/06/18/securing-mysql-installations-with-mysql_secure_installation/
send
light_mode
delete
Question #22
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?
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?
- AExecute the run_2 index because it has caused a conflict in the choice of key for this query.
- BDrop the run_2 index because it has caused a conflict in the choice of key for this query.
- CDo not pass a user variable in the WHERE clause because it limits the ability of the optimizer to use indexes.
- DAdd an index on the objective column so that is can be used in both the WHERE and GROUP BY operations.
- EAdd a composite index on (run,objective,stage) to allow the query to fully utilize an index.
Correct Answer:
B
B
send
light_mode
delete
Question #23
Consider typical High Availability (HA) solutions that do not use shared storage.
Which three HA solutions do not use shared storage?
Which three HA solutions do not use shared storage?
- AMysql Replication
- BDistributed Replicated Block Device (DRBD) and Mysql
- CWindows Cluster and Mysql
- DSolaris Cluster and Mysql
- EMysql NDB Cluster
Correct Answer:
ABE
ABE
send
light_mode
delete
Question #24
Which three statements are characteristic of the MEMORY storage engine?
- AEach table is represented on disk as an.frm file.
- BEach table has a corresponding.MYI and .MYD file.
- CIt can support foreign keys.
- DIt cannot contain text or BLOB columns.
- ETable contents are not saved if the server is restarted.
- FIt can support transactions
Correct Answer:
ADE
ADE
send
light_mode
delete
Question #25
Consider the Mysql Enterprise Audit plugin.
The following event detail is found in the audit log:
<AUDIT_RECORD
TIMESTAMP="2013-04-09t01:54:17"
NAME="Connect"
CONNECTION_ID="3"
STATUS="1045"
USER="kate"
PROXY_USER=""
HOST="localhost"
IP=""
DB=""/>
Which two points can be concluded from the given event?
The following event detail is found in the audit log:
<AUDIT_RECORD
TIMESTAMP="2013-04-09t01:54:17"
NAME="Connect"
CONNECTION_ID="3"
STATUS="1045"
USER="kate"
PROXY_USER=""
HOST="localhost"
IP=""
DB=""/>
Which two points can be concluded from the given event?
- AA connection was blocked by a firewall or a similar security mechanism.
- BA connection was attempted via socket rather than TCP.
- CA connection failed because the proxy user privileges did not match the login user.
- DA connection as the user kate was successful.
- EA connection failed due to authentication being unsuccessful.
Correct Answer:
BE
B: <IP>
A string representing the client IP address. This element appears only if the <NAME> value is Connect, Change user, or Query.
Example:
<IP>127.0.0.1</IP>
E: ERROR 1045 (28000): Access denied for user
BE
B: <IP>
A string representing the client IP address. This element appears only if the <NAME> value is Connect, Change user, or Query.
Example:
<IP>127.0.0.1</IP>
E: ERROR 1045 (28000): Access denied for user
send
light_mode
delete
All Pages