1Z0 497
1Z0 497
1Z0 497
2)-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.
a) Without any error, you can terminate the active session by executing:
SQL> ALTER SYSTEM KILL SESSIOU ‘7, 15’;
b) You can terminate the active session by executing:
SQL> ALTER SYSTEM KILL SESSIOM “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.
7)-Which two statements about the Process Monitor (PMON) process are true?
8)-Which statement is true about loading data by using the conventional path of
SQL*Loader?
a) durability
b) consistency
c) concurrency
d) isolation
e) scalability
f) manageability
10)-Which type of file system is NOT valid for storing data files, online redo log files,
and control files for a pluggable database?
12)-Which two items are key for maintaining data consistency in Oracle Database 12c?
a) undo data
b) isolation level
c) lock mechanism
d) serializability
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.
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 nonCDB 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.
a) You can unplug a PDB from a development CDB and plug it into a production
CDB, which allows for easier and more rapid movement of data and code.
b) You can consolidate shared database memory by combining multiple PDBs in a
single CDB.
c) Patching individual PDBs requires the same amount of time as patching
individual databases.
d) Consolidating separate databases into a single CDB requires the same amount of
storage allocation.
e) In multitenant architecture, a PDB behaves the same as a non-CDB as seen from
a client connecting with Oracle Net. No client modification is required.
17)-Which statement about the Oracle Advanced Security Data Redaction feature is
true?
a) 7801
b) 5500
c) 2243
d) 1521
e) 22
Online addition and removal of disks should automatically rebalance data across
new storage configurations while storage, database, and applications remain
online.
Dynamically add or remove clustered nodes without disrupting the database or
applications.
Automate the sizing and distribution of shared memory.
Add a column with a default value without disrupting the database or
applications.
Perform rolling patch upgrades.
a) b, c, a
b) d, a, e
c) a, e, d, b
d) d, b, c, a, e
e) c, b, d, a, e
24)-Which three operations can the PUBLIC user with the SYSOPER privilege
perform?
a) STARTUP
b) SHUTDOWN
c) CREATE DATABASE
d) DROP DATABASE
e) ALTER DATABASE RECOVER
25)-To revoke unnecessary and unused privileges, you can use Privilege Analysis.
Which sequence should you follow?
a) 1, 2, 3, 4, 5
b) 2, 1, 5, 3, 4
c) 5, 1, 2, 3, 4
d) 2, 3, I, 5, 4
e) 1, 2, 4, 5, 2
26)-Which command do you use to create a local role while you are connected as the
local user?
27)-YOU want to move all objects of the CONSULTANT user from the test database to
the DB-USER schema of the production database. Which option of IMPDP would you
use to accomplish this task?
a) FULL
b) SCHEMAS
c) TRANSFORM
d) REMAP_SCHEMA
e) REMAP_TABLESPACE
28)-For which database operation do you need the database to be in MOUNT state?
30)-A DBA informs you that an Oracle instance has started. What does this imply?
a) The average active sessions were more than three times the number of CPU
cores.
b) Active sessions were more than 10% of total load and CPU utilization was more
than 50%.
c) Memory allocations were more than 95% of physical memory.
d) Hung sessions were more than 10% of total sessions.
e) A deadlock was detected.
f) The session limit was close to 100%.
32)-Which command do you use to check for block corruption by validating the
database?
a) RMAN
b) Cold Backup
c) Traditional Export / Import
d) Data Pump
e) SQL*Plus
a) It replaces the first four digits of the value from the SALARY column with the
number 9.
b) It replaces the first digit of the value from the SALARY column with the
number 4.
c) It replaces the first digit of the value from the COMMISSION_PCT column
with 9.
d) It replaces the first nine digits of the value from the COMMISSION_PCT
column with 1.
e) It uses the full data redaction method.
f) It uses the random redaction method.
36)-Which option represents a function of Global Data Services (GDS)?
38)-When you start up a CDB, which operations are performed automatically and in
what order?
a) a, b, c, d, e, f
b) b, c, a, d, e, f
c) c, b, a, d, f, e
d) a, b, c, d
e) b, c, a, d
a) You copy all the PDBSSEEDdata files from the production CDB into the
development CDB and execute this on the development COB;
SQL> CREATE PLUGGABLE DATABASE salesdev ADMIN USER salesdm
IDENTIFIED by password;
b) You alter the salesprd source database to open in read-only mode, and start
cloning the source database:
SQL> ALTER PLUGGABLE DATABASE salesprd OPEN READ ONLY;
SQL> CREATE PLUGGABLE DATABASE salesdev FROM salesprd;
c) You alter the salesprd source database to open in read-only mode:
SQL> ALTER PLUGGABLE DATABASE salesprd OPEN READ ONLY;
In the development CDB, you create a databaselink “PRD” that connects to the
root of the source CDB, and start cloning the source PDB:
SQL> CREATE PLUGGABLE DATABASE salesdevFROM salesprd@prd;
d) Connected as the salesprd local DBA, you create an XML using:
SQL> ALTER PLUGGABLE DATABASE salespdb UNPLUG INTO ‘
/tmp/salesprd-xml’ ; Copy the XML file and all salesprd-related files to the
target CDB and start plugging the copy into
the development CDB using:
SQL> CREATE PLUGGABLE DATABASE salesdevUSING’
/tmp/salesprd.xml’;
43)-Your database is down. You log in as the SYS user and issue this command:
SQL> STARTUP
What happens after the instance is started?
44)-Which option represents the steps to add a multiplexed copy of the current control
file or to rename a control file in Oracle Database 12c?
a) b, c, d
b) a, c, d, b
c) a, d, b, c
d) c, d, b
45)-Your database is open and the listener is running. The DBA stops the listener by
using the command:
LSNRCTL> STOP
What happens to the sessions that are currently connected to the database instance?
46)-Your customer wants all email addresses from the database displayed as
[hidden]@company.com. What method of data redaction must you use?
a) full redaction
b) partial redaction
c) regular expressions
d) random redaction
e) no redaction
47)-Your customer is looking for a solution that meets these four needs:
1 – Replicate data from source to target for reporting purposes.
2 -Replicate data from one source to multiple targets.
3 – Replicate data between two databases for instant failover.
4 – Replicate data from multiple sources to a single target for a data warehouse.
Which GoldenGate-supported topology would you recommended?
a) Uni-directional for 1
Peer-to-peer for 2
Bi-directional for 3
Consolidation for 4
b) Peer-to-peer for 1
Broadcast for 2
Bi-directional for 3
Consolidation for 4
c) Uni-directional for 1
Broadcast for 2
Bi-directional for 3
Consolidation for 4
d) Peer-to-peer for 1
Consolidation for 2
Broadcast for 3
Cascading for 4
48)-You execute some DML commands, followed by a COMMIT statement which
option correctly describes how the log writer (LGWR) process takes part in the
transaction commit?
50)-You went to create a new CDB for your customer. Which two statements are true
about the seed pluggable database that will reside in the new CDB?
51)-You want to clone PDB1 and PDB2 into the same CDB. Which statement is
correct?
a) You cannot do this, because you can only clone PDBs into another CDB.
b) You can clone only one PDB (either PDB1 or PDB2) into the same CDB.
c) Cloning a PDB can use the source files copy method to the target PDB files.
d) Cloning a PDB can use the NOCOPY clause if the target PDB files use the
source files.
52)-Consider 10 scenarios that result in database downtime. Which five of them are
considered as planned downtime?
54)-A standby database is in mounted state and you are required to perform a failover to
the physical standby. Which solution is best suited for this scenario?
55)-Which two statements are true about transactions in Oracle Database 12c?
a) Data Recovery Advisor can be used to diagnose and repair data corruptions in
non-CDBs.
b) Data Recovery Advisor cannot be used to diagnose and repair data corruptions
in the root of a CDB.
c) Data Recovery Advisor can be used to diagnose and repair data corruptions in
PDBs.
d) You can use the ADVISE FAILURE command to display repair options after
running LIST FAILURE in an RMAN session.
57)-You are installing OracleDatabase 12c on a machine. When you run the installer;
Oracle Universal installer (OUI) shows a message that says one of the product-specific
prerequisite checks has failed:
Checking available swap space requirements…
Expected result: 1512MB
Actual Result: 1018MB
Check complete. The overall result of this check is: failed ««
Problem: The system does not have the required swap space.
What happens to the installation in this situation?
a) It can be continued.
b) It resizes the swap space automatically when you proceed further.
c) It can be continued, but the instance cannot be started without increasing swap
space.
d) It shows a message saying one or more prerequisite checks have failed and the
installation aborts.
Instance “oracle”, status UNKNOWN, has 1 handler(s) for this service… Handler(s):
“DEDICATED” established:2 refused:0 LOCAL SERVER The command completed
successfully
Which two statements are true about LISTENER2?
a) System administrators and users with the CREATE SESSION system privilege
may connect to the instance.
b) Data files are open in read-only mode.
c) A control file is open.
d) System Global Area (SGA) is allocated and background processes are started.
e) An alert log and trace files are open.
f) Instance recovery is performed for the database.
ddl_lock_timeout
integer 60
Distributed_lock_timeout
integer 60
dml_locks
integer 748
lock_sga
boolean
FALSE
enab1e_dd1_1ogging
boolean
FALSE
resumable_timeout
integer 0
A user logs in to the hrschema and issues the following commands:
SQL> CREATE TABLE emp
(empno NUMBER(3),
enamo VARCHAR2(20),
sal NUMBER (8, 2));
SQL> INSERT INTO emp (empno, ename) VALUES(1, ‘JAMES’);
At this moment, a second user also logs in to the hrschema and issues the following
command:
a) database files and parameter file (initialization parameter file or server parameter
file)
b) System Global Area (SGA) and background processes
c) a listener process, server processes, and background processes
d) System Global Area (SGA), server processes, and background processes
e) database files, System Global Area (SGA), and background processes
63)-You have two database servers EMP and EXP. A user of the database from the EXP
server wants to extract some information from the database in the EMP server for cross-
verification. Which schema object enables the user to access the information from the
remote database?
a) cluster
b) database link
c) mapping table
d) materialized view
a) Oracle GoldenGate
b) Oracle Advanced Replication
c) Oracle Active Data Guard
d) Oracle Streams
67)-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?
a) listener
b) user process
c) service name
d) server process
a) Moving a data file online prevents DML operations on segments stored in the
data file.
b) Flashing back a database to a point in time before a data file had been renamed
online retains the new name.
c) Moving a data file online can be performed if the data file is in OFFLINE mode.
d) Moving a data file online cannot be performed if the data file is under BEGIN
BACKUP.
70)-Which three operations would allow you to insert data without getting the error
message?
a) Extend the logical volume by 10 MB where the data files are stored;
# lvextend -L+10M /diskl
b) Add a data file:
SQL>ALTER TABLESPACE MYTBS ADD DATAFILE ‘ /disk1/mytbs_2 .dbf
SIZE 10M;
c) Move a partition to another tablespace:
SQL> CREATE TABLESPACE ADDITIONAL_TBS DATAFILE
‘/disk1/additional_tbs_1 .dbf’ SIZE
10M;
SQL> ALTER TABLE MYTAB MOVE PARTITION P2 TABLESPACE
ADDlTIONAL_TBS;
d) Resize the existing data file:
SQL> ALTER DATABASE DATAFILE ‘/diskl/mytbs_l .dbf’ RESIZE 20M;
e) Remove a data file:
SQL> ALTER TABLESPACE MYTBS DROP DATAFILE ‘/diskl/mytbs_l –
dbf’;
71)-Which two statements about Automatic Data Optimization (ADO) are true?
a) A container database has exactly one seed PDB, and a non-container database
has no seed PDB.
b) In a newly created non-CDB that does not yet contain user data, the data
dictionary contains only system metadata. When application users create their
own objects, this metadata is mixed with the system metadata. In a CDB, the
data dictionary metadata is split between the root and the PDBs. The data
dictionary in the PDB contains pointers to the data dictionary in the root.
c) New views are introduced. Next to DBA_views, AIL_-views, and USER_-
views, there are CDB_-views. Both CDB and non-CDB databases can access
this information.
d) You are allowed to create only a single HR user in a non-CDB database. This
restriction is identical for a CDB database.
e) Every PDB in a CDB has its own control file. A non-CDB, which has no
containers, needs only one control file.
74)-The session of user SCOTT receives the following error after executing an
UPDATE command on the EMP table:
ERROR at line 1:
ORA-00060: deadlock detected while waiting for resource
You find out that a session opened by user JIM has a transaction that caused the
deadlock. Which two statements are true about SCOTT’s session in this scenario?
a) The session is terminated after receiving the error and JIM can continue with his
transaction.
b) SCOTT should perform a COMMIT or ROLLBACK to allow JIM to continue
with his transaction.
c) The session is rolled back after receiving the error and JIM can continue with his
transaction.
d) SCOTT has to re-execute the last command in the transaction after he commits
the transaction.
76)-Which three options correctly match environment variables with their specific
functionality?
80)-Identify three types of important statistics collection that you can disable in Oracle
Database 12c by setting the STATISTIS_LEVEL parameter to BASIC.
a) Option A
b) Option B
c) Option C
d) Option D
e) Option E
85- Identify two types of solutions in which you would need to use Active Data Guard
and Golden Gate together.
86)-You create a CDB with four containers: the root, the seed, and two pluggable
databases PDB1 and PDB2. Which four items can reside In PDB1, but not in the root?
87)-Which two statements are true when you execute an invoker’s rights procedure?
a) The owner must have the INHERIT PRIVILEGES object privilege on the
invoking user, or the INHERIT ANY PRIVILEGES privilege.
b) Invoking users can control who can access their privileges when they run an
invoker’s rights procedure.
c) The calling user must be granted the INHERIT PRIVILEGES object privilege
on the user owner of the procedure.
d) The calling user must grant the INHERIT PRIVILEGES object privilege on the
user owner of the procedure.
a) db_name
b) maxdatafiles
c) control_files
d) instance_name
89)-Several tables are accidentally deleted from a PDB. Which database would you
immediately connect to, and as which user, to recover these tables?
a) merge patch
b) combine patch
c) overlay patch
d) dual patch
e) super patch
91)-You are in the middle of transaction, updating a table. The machine on which the
database is running reboots because of a power outage. This causes a database instance
failure.
Which statement is true in this situation?
a) The online redo log files and archived redo log files are required to accomplish a
recovery.
b) The uncommitted transaction is committed at the next startup of the database
instance.
c) The uncommitted transaction is rolled back automatically at the next opening of
the database.
d) The DBA has to perform a recovery on the database to recover the uncommitted
transaction.
92)-Which three options best describe Patch Set Updates (PSUs) in Oracle Database
12c?
a) non-cumulative
b) multi-version
c) proactive
d) stabilizing
e) cumulative
93)-For which use case would you use a rolling upgrade with the Oracle Active Data
Guard feature?
a) when upgrading from Oracle Database 12c to the first patch set of Oracle
Database 12c
b) when upgrading from Oracle Database 10gto Oracle Database 12c
c) when upgrading from Oracle Database 11gto Oracle Database 12c
d) when upgrading from any previous version of Oracle Database to Oracle
Database 12c
94)-Which two statements about multi section backup are true?
a) USERS
b) TEMP
c) SYSAUX
d) SYSTEM
e) EXAMPLE
a) recompile it
b) rewrite its SQL queries
c) relink
d) rework the applications schema
e) nothing; it is transparent
101)-Which three statements about common and local roles are true?
a) When a role is granted to a user, the privileges in the role are limited to the
context of the PDB.
b) Local roles can be granted only to local users.
c) Common roles can be granted to both local and common users.
d) A user can create common roles if the user has the CREATE ROLE privilege,
and SET CONTAINER for all PDBs
e) Common roles can be created in the root and PDBs.
sqlplus /nolog
In which scenario would this command execute successfully?
104)-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?
a) Recovery of individual PDBs is not possible, because John did not back up by
using
RMAN>Backup Pluggable database pdb1 pdb2. However, complete CDB
recovery is still possible.
b) Mike and Tim need to individually take backups of their respective PDBs,
because CDB-level
backup does not include PDB data dictionary objects.
c) Mike and Tim do not need to worry, because recovery of individual PDBs is
possible.
d) Recovery of individual PDBs is not possible at all.
a) books
b) pxx
c) MAXVALUE
d) cell_id
e) There is no partitioning criteria.
106)-Which four statements about users in Oracle Database 12c are correct?
a) A common user cannot have the same name as any local user across all PDBs.
b) A common user can be created only in the root container.
c) A local user with the proper privileges can also create a common user.
d) If a PDB is closed, the common and local users of the PDB are not visible.
e) A common user with the proper privileges can create a common user by using
the CONTAINER=CURRENT clause.
f) A common user is one that has the same username and authentication credentials
across multiple PDBs.
107)-Which three DBA operations can be performed by using Oracle SQL Developer?
108)-Consider an application in which memory required for each session is 400 KB and
memory required for each server process is 4 MB. The pool size is 100 and the number
of shared servers used is 100. If there are 5000 client connections, what is the amount of
memory used by a dedicated server?
a) 615 MB
b) 2.5 GB
c) 4 GB
d) 12 GB
e) 22 GB
a) serializable
b) read-only
c) read committed
d) read uncommitted
111)-Your customer is planning for a maximum-availability architecture at their data
center to address their planned downtime, unplanned downtime, and replication needs.
Consider these options:
– Instance, site recovery, and heterogeneous setup
– Inter-region and intra-region load balancing across replicated databases
– Fine-grained error investigation of incorrect results
– Integrated client and application failover
– Fastest and simplest database replication
Which four options would you recommend?
a) Oracle GoldenGate
b) Global Data Services
c) Oracle Data Guard
d) Data Recovery Advisor
e) Oracle Flashback technology
f) Oracle Advanced Queuing
a) EXPDP and IMPDP are the client components of Oracle Data Pump.
b) DBMS_DATAPUMP PL/SQL packages can be used independently of Data
Pump clients.
c) Oracle Data Pump export and import operations can be performed only by users
with the SYSDBA privilege.
d) Oracle Data Pump imports can be done from the export files generated in
Original Export Release 9.x.
e) EXPDP and IMPDP use the procedures provided by DBMS_METADATA to
execute export and import commands.
113)-Which two statements correctly distinguish between undo and redo data?
a) COMMIT
b) ROLLBACK
c) SAVEPOINT
d) SELECT
e) CREATE
115)-Which statement about Storage Snapshot Optimization is correct?
116)-There are two listeners, LISTENER1 arid LISTENER2, and one service name
ORCL available for your database. The database is running and currently, only
LISIENER1 is started. You issue thecommand:
lsnrctl start listener2 What would be the outcome?
117)-You add the following code in the tnsnames.ora file on a client PC:
sales=
(DESCRIPTION=
(ADDRESS= (PROTOCOL=TCP)(HOST=sales data) (PORT=1521) )
(CONNECT_DATA=
(SERVICE_NAME=sales.acme)))
Which statement is true about the code with respect to creating a new connect
identifier?
a) It is created for the SALES database in the network domain ACME on the
SALESDATA server.
b) It is created for the SALESDATA database on the SALES server in the network
domain called
ACME.
c) It generates an error because the connect identifier name cannot be a part of
SERVICE_NAME.
d) It generates an error because the server configuration mode (dedicated or shared)
is not
specified.
118)-Which three statements are true about database storage structures?
a) You should check the patch conflict with installed patches before applying the
patch.
b) You should make sure that you have a good backup of the software, database,
and configuration files.
c) You should install the latest O patch before applying the patch.
d) You should check the fifth digit of the release information to confirm that the
Patch Set Update (PSU) is applied successfully.
e) You should stop all applications running from the software directory that is
being patched.
a) 3, 4, and 5
b) 1, 2, 5, and 6
c) 1, 2, 3, and 4
d) 2, 3, 5, and 6
e) 2, 3, 4, 5, and 6
f) 1, 2, 3, 4, 5, and 6
121)-Which three statements are true about System Global Area (SGA)?
a) SGA contains shared memory structures for all Oracle processes running on a
single server.
b) Each server process has its own SGA.
c) SGA is allocated automatically when a database is started.
d) SGA is used to speed up queries by caching data blocks, program data,
information about database objects, and query results
e) SGA is allocated automatically when a database is mounted.
f) SGA is read and written by server and background processes.
122)- Why does performance degrade when many UPDATE, INSERT, or DELETE
statements are issued on a table that has an associated bitmap index?
123)-Which two options can you use to list Oracle Database 12c patches by using
Queryable Patch Inventory?
124)-What new role in Oracle Database 12c encompasses the administrative privileges
required for backup and recovery?
a) SYSBKP
b) SYSBKPRMAN
c) SYSRMAN
d) SYSBACKUP
a) The GDS catalog database of its listener may be down. Verify that the GDS
catalog database and its local listener are running.
b) The GDS pool database may be down. Make sure that the GDS pool databases
are up and the service is enabled and started.
c) The GDS pool database’s local listener may be down. Make sure that it is
running.
d) The global service may be down. Verify that the pool databases are up and the
service is started.
e) The global service may be disabled. Make sure that the pool databases are up
and the service is enabled and started.
127)-Which three events signal a database writer (DWR) to write buffers to disk?
a) These administrative privileges enable you to connect to the database only if the
database is open.
b) After connecting with these privileges, you are connected under a predefined
user whose name is the privilege name.
c) These administrative privileges allow a user to view DBA_xxx, GV$, VS, and
SELECT on application tables.
d) Without being a member of OSBACKUP. OSDG, and OSKM OS groups, users
cannot connect as administrative users by using OS authentication.
133)-Identify three outcomes of using the Oracle Multitenant option in Oracle Database
12c.
(LOAD_BALANCE=ON)
(ADDRESS=(host=sales-west1) (port=1522) )
(ADDRESS=(host=sales-west2) (port=JS22))
(ADDRESS=(host=sales-west3) (port=lS22) ) )
(CONNECT_DATA=
(SERVICE_NAME=sales)
(REGION=east)))
a) It contains three global service managers in the client’s local region (east).
b) Client-side load balancing has been enabled only for the global service managers
within the client’s buddy (west).
c) Connect-time failover between regions has not been enabled.
d) The REGION parameter is optional.
135)-You connect to a database instance and execute a DML command that changes
one data block.
The block is read from the buffer cache, modified, and modified, and marked as dirty.
You commit the transaction. What must take place before the block can be written to
disk?
138)-Which database feature can be used for organizing data when there is a very large
amount of data?
a) Index
b) Partitioning
c) Triggers
d) Row-level security
e) Database vault
139)-Which four items exist in the root of a CDB, but not in the PDBs?
a) They find a pattern of nine digits; break the digits into three groups that contain
the first three, the next two and then the last four digits; and replace all digits
with XXXXX concatenated with the last four digits.
b) They find a pattern of six digits; break the digits into two groups that contain the
first five, and then the last digit; and replace all digits with XXXXX
concatenated with the last digit.
c) They find a pattern of nine digits and display the digits as XXXXX XX XXXX.
d) They find a pattern of nine digits and display the first five digits as XXXXX and
the last four digits as 3333.
a) 1NF
b) 2NF
c) 3NF
d) BCNF
a) CLONEDB
b) FILESYSTEMIO_OPTIONS
c) DB_CREATE_FILE_DEST
d) RECYCLEBIN
e) TAPE_ASYNCH_IO
145)-In which situation would you use static database registration for a listener?
146)-YOUR database crashes after a user accidentally kills a background process. What
are threepossible ways to restart your database?
a) S sqlplus / as sysdba
SQL> restart;
b) S sqlplus / as sysdba
SQL> startup immediate;
c) S rman target /
RMAN> Startup
d) S sqlplus / as sysdba
SQL> startup open recover;
e) S srvctlstart database -db SORACLE_SID
147)-Which two statements are true about a buffer cache?
a) When a buffer is read from a buffer cache, it may be inconsistent and require
undo data to make it consistent.
b) A buffer cache stores copies of data blocks from all files of the database.
c) Buffer access is kept efficient by maintaining a least recently used (LRU) list for
dirty and clean buffers.
d) A buffer cache always resides completely in System Global Area (SGA).
e) A buffer cache contains exactly three pools: default, keep, and recycle pool.
148)-You want to drop a pluggable database from a multitenant container database that
is used for development, which two statements are true?
149)-Which process is responsible for writing the contents of database buffers to data
files?