Oracle 1z0-888 Exam Practice Questions (P. 2)
- 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 #6

What does the possible_keys column in this output denote?
- Aif it is possible for you to include any indexes in your query
- Bwhether there are any indexes on the tables that you are querying
- Cif there are any indexes that may be used to solve this queryMost Voted
- Dwhether you are using any indexes in your query
Correct Answer:
A
A
send
light_mode
delete
Question #7
Is it true that binary backups always take less space than text backups?
- AYes, because binary backups only contain data, and not statements required to insert data into the tables.
- BNo, because text backups can have optimizations, which make them smaller, such as updating many rows at once.
- CNo, because if InnoDB tables contain many empty pages, they could take more space than the INSERT statements.
- DYes, because even if InnoDB tables contain many empty pages, text backups have empty INSERT statements for them.
Correct Answer:
C
C
send
light_mode
delete
Question #8
You have a consistent InnoDB backup created with mysqldump, the largest table is 50 GB in size.
You start to restore your backup with this command;
shell> mysql –u root –p < backup.sql
After 30 minutes, you notice that the rate of restore seems to have slowed down. No other processes or external factors are affecting server performance.
Which is the most likely explanation for this slowdown?
You start to restore your backup with this command;
shell> mysql –u root –p < backup.sql
After 30 minutes, you notice that the rate of restore seems to have slowed down. No other processes or external factors are affecting server performance.
Which is the most likely explanation for this slowdown?
- AThe MySQL server has stopped inserting data to check index consistency.
- BInnoDB is doing CRC32 checks over the tablespace data as it grows.
- CThe MySQL server is taking a periodical snapshot of data so it can resume the restore if it is interrupted mid-way.
- DInnoDB has filled the redo log and now must flush the pages.Most Voted
- ESecondary indexes no longer fit into the buffer pool.
Correct Answer:
A
A
send
light_mode
delete
Question #9
Which two options describe how MySQL Server allocates memory? (Choose two.)
- AEach connection may have its own per-thread memory allocations.
- BThread memory is pre-allocated up to thread_cache_size for performance.
- CEach thread allocates memory from a global pool.
- DGlobal memory resources are allocated at server startup.
Correct Answer:
AD
AD
send
light_mode
delete
Question #10
Which three are key advantages of standard MySQL replication? (Choose three.)
- Asupports native automatic failover
- Benables automatic resync of databases when discrepancies are detected
- Cprovides arbitrary geographic redundancy with minimal overhead to master
- Dsynchronously guarantees identical slave copy
- Eis easy to configure and has low performance overhead
- Fcan easily add slaves for read scaling
Correct Answer:
B, E, F
B, E, F
send
light_mode
delete
All Pages