Which statement about CDB architecture is true?
Correct Answer:
A
🗳️
References:
As part of your Oracle Database 12c post-installation tasks, you run these commands:
Cd $ORACLE_HOME/bin -
srvctl stop database -d myDb
chopt enable dm
srvctl start database -d myDb
What does this do?
Correct Answer:
A
🗳️
References:
Exhibit below:
Which three statements are true about terminating a session?
Correct Answer:
BDE
🗳️
B (not A, Not C):
* You terminate a current session using the SQL statement ALTER SYSTEM KILL SESSION. The following statement terminates the session whose system identifier is 7 and serial number is 15:
* Terminating an Active Session
If a user session is processing a transaction (ACTIVE status) when you terminate the session, the transaction is rolled back and the user immediately receives the following message:
ORA-00028: your session has been killed
ALTER SYSTEM KILL SESSION '7,15';
E (not F): Terminating an Inactive Session
If the session is not making a SQL call to Oracle Database (is INACTIVE) when it is terminated, the ORA-00028 message is not returned immediately. The message is not returned until the user subsequently attempts to use the terminated session.
When an inactive session has been terminated, the STATUS of the session in the V$SESSION view is KILLED. The row for the terminated session is removed from V$SESSION after the user attempts to use the session again and receives the ORA-00028 message.
References:
Which two statements are true about shared server sessions?
Correct Answer:
BD
🗳️
References: