Oracle 1z0-497 - Oracle Database 12c Essentials
You execute some DMLcommands, followed by a COMMIT Statement.
Which option correctly describes how the logwriter (LGWR) process takes part in the transaction commit?
Which process is responsible for writing the contents of database buffers to data files?
Your database is down. You log in as the SYS user and issue this command:
SQL> STARTUP
What happens after the instance is started?
In this SQL statement, what is the partitioning criteria?
CREATE TABLE books_part
PARTITION BY RANGE (cell_id) (
PARTITION p0l VALUES LESS THAN (2),
PARTITION p02 VALUES LESS THAN (3) ,
. . .
PARTITION pl4 VALUES LESS THAN (15),
PARTITION pl5 VALUES LESS THAN (16),
PARTITION pl6 VALUES LESS THAN (MAXVALUE)
)
AS SELECT * FROM books;
YOU want to move all objects of the CONSULTANT user from the test database to theDB-USER schema of the production database. Which option of IMPDP would you use to accomplish this task?
Which three are initialization parameters for backup and recovery?
After a ___________ statement is issued, a transaction ends. (select three)
Which three options correctly match environment variables with their specific functionality?
Which three tasks can you perform in Database Express?
Your customer has two CDBs: one for Production and one for development. You are asked to create a new development PDB (salesdev) from an existing production PDB (salesprd). Which two options would accomplish this?