Database Administration
12 QuestionsQuestion:
You want to view the initialization parameter settings for only a specific PDB. Which of the following statements is true?
- D. From the PDB, execute SELECT NAME, VALUE, ISPDB_MODIFIABLE FROM v$parameter;
Question:
Your database instance is started with an SPFILE. A PFILE is also available. You execute this command: ALTER SYSTEM SET DB_CACHE_SIZE=100K; Where does the value change?
- B. In the SPFILE and memory
Question:
In the SPFILE of a single instance database, LOCAL_LISTENER is set to LISTENER_1. The TNSNAMES.ORA file in $ORACLE_HOME/network/admin in the database home contains: LISTENER_1 = (ADDRESS = (PROTOCOL = TCP)(HOST = host1.abc.com)(PORT = 1521)). Which statement is true?
- C. The LREG process registers services dynamically with the LISTENER_1 listener.
Question:
Which three statements are true about the Oracle Dat abase server during and immediately after SHUTDOWN TRANSACTIONAL?
- C. New connection requests made to the database instance are refused.
- D. Sessions remain connected even if they are not running a transaction.
- E. Uncommitted transactions are allowed to continue to the next COMMIT.
Question:
You execute the SHUTDOWN ABORT command. Which two statements are true?
- C. Subsequent instance startup performs instance recovery.
- E. Uncommitted transactions are not rolled back by the shutdown.
Question:
Which three relationships between instances and Oracle databases are possible without using Multi- tenant?
- B. Two or more instances on separate servers all mounting and opening the same database.
- D. One instance on one server that has no database mounted.
- E. One instance on one server mounting and opening one database.
Question:
You execute this command: [oracle@host01 ~]$ expdp system/o racle FULL=Y DUMPFILE=exp_db_full.dmp PARALLEL=4 LOGFILE=exp_db_full.log JOB_NAME=exp_db_full. During the export operation, you detach from the job by using CTRL+C a nd then execute this command: Export> STOP_JOB=IMMEDIATE. Are you sure you wish to stop th e job ([yes]/no): yes. Which two statements are true about the job?
- C. You can reattach to it and monitor it.
- D. It terminates.
Question:
You start your database instance in NOMOUNT state. Which two actions are performed?
- A. All required background processes are started.
- D. Memory is allocated for the SGA.
Question:
Which two account management capabilities can be configured using Oracle profiles?
- D. The ability to prevent a password from ever being reused.
- E. The number of days for which an account may be inactive before it is locked.
Question:
Which three statements are true about an SPFILE?
- A. It can be created by SYS from an idle instance.
- C. It can be used to create a PFILE.
- E. It contains initialization parameters whose values can be changed using the ALTER SYSTEM statement.
Question:
orcl.dmp contains a full export of the ORCL database. This command is executed to load data from orcl.dmp into the TESTDB database: [oracle@host01 ~] impdp sys tem/oracle SCHEMAS=sh,oe REMAP_SCHEMA=sh:hr DUMPFILE=orcl.dmp EXCLUDE=index TABLE_ EXISTS_ACTION=replace LOGFILE=impdp.log Which two statements are true?
- C. It skips all indexes of ORCL:SH and in both ORCL:SH and TESTDB:HR.
- D. It drops and re -creates tables that exist in both ORCL:SH and TESTDB:HR.
Question:
Which two are benefits of external tables?
- D. They can be queried, transformed, and joined with other tables with out having to load the data first.
- E. The results of a complex join or aggregating function or both can be unloaded to a file for transportation to other systems.