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?
A.
It enables the Oracle Data Mining option in your Oracle binary files.
B.
It creates the Fast Recovery Area disk group.
C.
It generates Client Static Library.
D.
It configures one of the Oracle user accounts.
E.
It configures Oracle Net Services.
F.
It configures Oracle Messaging Gateway.
Answer:
A
Explanation: Reference: http://docs.oracle.com/cd/E16655_01/install.121/e17889/postinst.htm#RILIN1049 (see 4.4)
User Votes:
A
50%
B
50%
C
50%
D
50%
E
50%
F
50%
Discussions
0/ 1000
Question 3
Exhibit below: Which three statements are true about terminating a session?
A.
Without any error, you can terminate the active session by executing: SQL> ALTER SYSTEM KILL SESSION '7, 15'; B. You can terminate the active session by executing: SQL> ALTER SYSTEM KILL SESSION "7, 15'; But you also get the error message: ORA-00028: your session has been killed
C.
You cannot terminate the active session. You have to wait until that session becomes inactive.
D.
Without any error, you can terminate the inactive session by executing: SQL> ALTER SYSTEM KILL SESSION '12, 63';
E.
When an inactive session is killed, the status of that session remains visible in VSSESSION with status KILLED. The rowf the terminated session is removed from VSSESSION after the user attempts to use the session again.
F.
You cannot terminate the inactive session. You have to wait until that session becomes active again.
Answer:
BDE
Explanation: 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. Reference: Oracle Database Administrator's Guide, Terminating Sessions URL: http://docs.oracle.com/cd/B28359_01/server.111/b28310/manproc008.htm#ADMIN11192
User Votes:
A
50%
C
50%
D
50%
E
50%
F
50%
Discussions
0/ 1000
Question 4
Which two statements are true about shared server sessions?
A.
No Program Global Area (PGA) is allocated for shared server processes.
B.
User Global Area is stored in System Global Area (SGA).
C.
Shared SQL Area is allocated from Program Global Area (PGA).
D.
Private SQL Area is allocated from Library Cache.
Which targets can be managed by using Enterprise Manager Cloud Control?
A.
Hosts and databases
B.
Hosts, databases, and application servers
C.
Application servers and web applications
D.
Databases, Oracle Management Server (OMS), and Oracle Management Repository (OMR)
E.
Databases, application servers, and web applications
F.
Hosts, databases, application servers, web applications, OMS, and OMR
Answer:
F
Explanation: Reference: http://www.oracle.com/technetwork/oem/framework-infra/wp-em12c-security-best-practicesv2- 1493383.pdf (page 3, second bulleted point, last couple of sentences)
User Votes:
A
50%
B
50%
C
50%
D
50%
E
50%
F
50%
Discussions
0/ 1000
Question 6
Which two statements are true regarding SQL*Plus?
A.
It has commands for performing database administration operations.
B.
It can be used in interactive but not batch mode for SQL commands.
C.
It has to be installed separately after the Oracle Database 12c installation.
D.
Operating system commands can be executed from the SQL*Plus command prompt.
Which two items are key for maintaining data consistency in Oracle Database 12c?
A.
undo data
B.
isolation level
C.
lock mechanism
D.
serializability
Answer:
BC
Explanation: Reference: http://docs.oracle.com/cd/E11882_01/server.112/e25789/consist.htm#CNCPT88969 (overview of the oracle database locking mechanism)
User Votes:
A
50%
B
50%
C
50%
D
50%
Discussions
0/ 1000
Question 13
You are about to install Oracle Database 12c Enterprise Edition. Which statement is true?
A.
You should not install the Oracle Database software into an existing Oracle home from a different release.
B.
A multitenant container database (CDB) can have several pluggable databases (PDBs) with different character sets.
C.
Oracle recommends that you back up the root. sh script after you complete the installation.
D.
Cloning an Oracle home is useful if you are performing multiple Oracle Database Installations.
E.
You can stop existing Oracle processes, including the listener and the database running in the Oracle home, before the database software installation.
Which two statements about multitenant architecture are true?
A.
Multiple PDBs on a single server need multiple database instances and multiple sets of database files.
B.
Although consolidated into a single physical database, PDBs mimic the behavior of non-CDBs.
C.
A PDB administrator can use Oracle Flashback or point-in-time recovery to retrieve lost data from a PDB, only by shutting down all the PDBs from the CDB.
D.
It is easier to collect performance metrics for many databases in a CDB than individual non-CDB databases.
E.
It takes more time to apply a patch to one CDB that holds hundreds of PDBs than to hundreds of non-CDB databases.
Answer:
BD
Explanation: B: A PDB is a portable collection of schemas, schema objects, and nonschema objects that appears to an Oracle Net client as a non-CDB. All Oracle databases before Oracle Database 12c were non-CDBs. D: Ease of performance tuning It is easier to collect performance metrics for a single database than for multiple databases. It is easier to size one SGA than 100 SGAs. Explanation: Reference: Benefits of the Multitenant Architecture for Database Consolidation URL: http://docs.oracle.com/cd/E16655_01/server.121/e17633/cdbovrvw.htm#CNCPT89239