Your database instance is running. db01 is a net service name. You issue a connection request by using the command:
SQL> CONNECT scott/tiger@db01
Which component receives the request and establishes the appropriate connection?
When executing shutdown abort in a pluggable database (PDB), you ____________.
Which two options can you use to list Oracle Database 12c patches by using Queryable Patch Inventory?
Identify three key properties of a transaction in Oracle Database 12c.
Which two statements correctly distinguish between undo and redo data?
John is a CDB administrator, and Mike and Tim are PDB administrators of their respective databases- John takes a complete CDB backup by using RMAN>Backup Database. Mike and Tim may need point-in-time recovery of their PDBs. Which statement is true?
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;
Which three statements are true about a database instance that has mounted a database but has not opened it?
What happens if you execute these SQL statements?
SQL> show con_name
CON_NAME
--------------------------------
CDB$ROOT
SQL> create user 1_freed identified by y container=current;
You add the following code in the tnsnames.ora file on a client PC:
sales=
(DESCRIPTION=
(ADDRESS= (PROTOCOL=TCP)(HOST=salesdata) (PORT=1521) )
(CONNECT_DATA=
(SERVICE_NAME=sales.acme)))
Which statement is true about the code with respect to creating a new connect identifier?