1z0-082
1z0-082
1z0-082
Oracle Database
Administration I
Version: 9.0
Question #:1
E. only in memory
Answer: D
Question #:2
Which three statements are true about views in an Oracle database? (Choose three.)
A. Views can be updated without the need to re-grant privileges on the view
B. Tables in the defining query of a view must always exist in order to create the view
C. The WITH CHECK clause prevents certain rows from being displayed when querying the view
E. Inserting one or more rows using a view whose defining query contains a GROUP BY clause will cause
an error
F. Deleting one or more rows using a view whose defining query contains a GROUP BY clause will cause
an error
G. The WITH CHECK clause prevents certain rows from being updated or inserted
Answer: A E F
Question #:3
1 of 71
Oracle - 1z0-082
The status column contains the values 'in stock' or 'out of stock' for each row.
A. SELECT prod_id Il q"'s not available" FROM product_status where status = 'OUT OF STOCK';
B. SELECT prod_id II q'l's not available)' FROM product_status WHERE status = 'OUT OF STOCK';
C. SELECT prod_id "CURRENT AVAILABILITY" II q'<'s not available)' FROM product_status WHERE
status = 'OUT OF STOCK
D. SELECT prod_id I I q' (*s not available)' "CURRENT AVAILABILITY" FROM product_status
WHERE status = 'OUT OF STOCK
E. SELECT prod_id I I q' ('s not available) • 'CURRENT AVAILABILITY' FROM product_status
WHERE status = 'OUT OF STOCK
F. SELECT prod_id q's not available" FROM product_status WHERE status = 'OUT OF STOCK*;
Answer: B D
Question #:4
Which three instance situations are possible with the Oracle Database server without multi-tenant? (Choose
three.)
A. two or more instances on separate servers all associated with one database
C. one instance on one server associated with two or more databases on the same server
E. one instance on one server associated with two or more databases on separate servers
Answer: A B D
Question #:5
A.
2 of 71
Oracle - 1z0-082
Answer: D E
Question #:6
Answer: B D
Question #:7
3 of 71
Oracle - 1z0-082
The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of
data type DATE.
Which two are true about data type conversions involving these columns in query expressions? (Choose two.)
Answer: B D
Question #:8
Which three statements are true about the naming methods and their features supported by Oracle database
used to resolve connection information?
B. A client can connect to an Oracle database instance even If no client side network admin has been
configured.
C. Directory Naming requires setting the TNS_ADMIN environment variable on the client side.
D. Local Naming requires setting the TNS_ADMIN environment variable on the client side.
Answer: A B C
Question #:9
A. A substitution variable prefixed with & always prompts only once for a value in a session.
B. A substitution variable prefixed with to prompts only once for a value in a session unless it is set to
undefined in the session
C.
4 of 71
Oracle - 1z0-082
D. A substitution variable used to prompt for a column name must be enclosed in single quotation marks.
F. A substitution variable used to prompt for a column name must be enclosed in double quotation marks.
Answer: B
Question #:10
Which two statements are true about the ORDER BY clause when used with a SQL statement containing a
SET operator such as UNION? (Choose two.)
B. Only column names from the first SELECT statement in the compound query are recognized
C. The first column in the first SELECT of the compound query with the UNION operator is used by
default to sort output in the absence of an ORDER BY clause
D. Each SELECT statement in the compound query must have its own ORDER BY clause
E. Each SELECT statement in the compound query can have its own ORDER BY clause
Answer: B C
Question #:11
Which two statements are true about the configuration and use of UNDO_RETENTION with GURANTEED
RETENTION? (Choose two.)
A. UNDO_RETENTION specifies for how long Oracle attempts to keep expired and unexpired UNDO.
E. UNDO_RETENTION specifies for how long Oracle attempts to keep unexpired UNDO.
Answer: A C
Question #:12
5 of 71
Oracle - 1z0-082
Which two statements are true about trace files produced by the Oracle Database server? (Choose two.)
D. All trace files contain error information that require contacting Oracle Support
E. Trace file names are based on the database name concatenated with a sequential number
Answer: A C
Question #:13
During the export operation, you detach from the job by using CTRL+C and then execute this command:
Export> STOP_JOB=immediate
Are you sure you wish to stop the job ([yes]/no): yes
Which two statements are true about the job? (Choose two.)
E. It terminates
Answer: B C
Question #:14
6 of 71
Oracle - 1z0-082
Answer: C E
Question #:15
Which three statements are true about a self join? (Choose three.)
B. The query must use two different aliases for the table
C. It must be an equijoin
Answer: B E F
Question #:16
The stores table has a column START_DATE of data type DATE, containing the date the row was inserted.
You only want to display details of rows where START_DATE is within the last 25 months. Which where
clause can be used?
Answer: D
7 of 71
Oracle - 1z0-082
Question #:17
A database user HR, who is defined in this database, executes this command:
A. The command succeeds and HR will be connected to the orcl and abc.sql databases
B. The command succeeds and HR will be connected to the orcl database instance, and the abc.sql script
will be executed
C. The command fails because the script must refer to the full path name
Answer: B
Question #:18
Table ORDER_ITEMS contains columns ORDER_ID, UNIT_PRICE and QUANTITY, of data type
NUMBER.
Statement 1:
FROM order_items;
Statement 2:
FROM order_items
GROUP BY order_id;
C.
8 of 71
Oracle - 1z0-082
C. Both statements will return NULL if either UNIT_PRICE or QUANTITY contains NULL.
Answer: A E
Explanation
https://docs.oracle.com/javadb/10.8.3.0/ref/rrefsqlj27781.html
The Expression can contain multiple column references or expressions, but it cannot contain another aggregate
or subquery. It must evaluate to a built-in data type. You can therefore call methods that evaluate to built-in
data types. (For example, a method that returns a java.lang.Integer or int evaluates to an INTEGER.) If an
expression evaluates to NULL, the aggregate skips that value.
Question #:19
INSERT INTO books VALUES (‘ADV112’, ‘Adventures of Tom Sawyer’, NULL, NULL);
SAVEPOINT a;
ROLLBACK TO SAVEPOINT a;
ROLLBACK;
B.
9 of 71
Oracle - 1z0-082
C. The first ROLLBACK command restores the 101 rows that were deleted, leaving the inserted row still
to be committed
E. The first ROLLBACK command restores the 101 rows that were deleted and commits the inserted row
Answer: C D
Question #:20
B. DML may be performed on tables with one or more extents in this data file during the execution of this
command.
C. It overwrites any existing file with the name SALES02.DBF.dbf in /u02 by default.
D. The "to" clause containing the new file name must be specified even if Oracle Managed Files (OMF) is
used.
E. Tables with one or more extents in this data file may be queried during the execution of this command.
Answer: B E
Question #:21
View the Exhibit and examine the structure of the PRODUCTS table.
10 of 71
Oracle - 1z0-082
A. Display the number of products whose PROD_LIST_PRICE is more than the average
PROD_LIST_PRICE
C. Display products whose PROD_MIN_PRICE is more than the average PROD_LIST_PRICE of all
products, and whose status is orderable
D. Display the total number of products supplied by supplier 102 which have a product status of obsolete
Answer: A C
Question #:22
Which three statements are true about data block storage in an Oracle Database?
A. A block header contains a row directory pointing to all rows in the block.
Answer: A D
11 of 71
Oracle - 1z0-082
Question #:23
FROM customers
WHERE country_id = 10
UNION
FROM customers
WHERE country_id = 30
Identify three ORDER BY clauses, any one of which can complete the query successfully. (Choose three.)
B. ORDER BY 2, 1
C. ORDER BY 2, cust_id
D. ORDER BY CUST_NO
E. ORDER BY “CUST_NO”
Answer: B C D
Question #:24
In the ORCL database, UNDOTBS1 is the active undo tablespace with these properties:
1. A size of 100 MB
2. AUTOEXTEND is off
UNDOTBS1 fills with uncommitted undo 10 minutes after the database opens.
What will happen when the next update is attempted by any transaction?
12 of 71
Oracle - 1z0-082
B. It fails and returns the error message “ORA-30036: unable to extend segment by 8 in undo tablespace
'UNDOTBS1'”.
C. It succeeds and the least recently written undo block of UNDOTBS1 is overwritten by the generated
undo.
E. It succeeds and the least recently read undo block of UNDOTBS1 is overwritten by the generated undo.
Answer: B
Explanation
To guarantee the success of long-running queries or Oracle Flashback operations, you can enable retention
guarantee. If retention guarantee is enabled, the specified minimum undo retention is guaranteed; the database
never overwrites unexpired undo data even if it means that transactions fail due to lack of space in the undo
tablespace. If retention guarantee is not enabled, the database can overwrite unexpired undo when space is
low, thus lowering the undo retention for the system. This option is disabled by default.
Question #:25
Which three statements are true about sequences in a single instance Oracle database?
C. A sequence's unallocated cached values are lost if the instance shuts down.
D. Two or more tables cannot have keys generated from the same sequence.
F. A sequence number that was allocated can be rolled back if a transaction fails.
Answer: B C D
Question #:26
Which two statements are true about Database Instances and Real Application Clusters (RAC)?
13 of 71
Oracle - 1z0-082
Answer: A B
Question #:27
A. The second rollback command restores the row that was inserted.
B. The first rollback command leaves the table's 100 original rows locked.
C. The second rollback command rolls back the rollback to savepoint a command.
E. The first RollBack command restores the row that was inserted.
F. The second rollback command restores the 100 rows that were in the table originally.
G. The first rollback command restores the 100 rows that were in the table originally.
Answer: A C E
14 of 71
Oracle - 1z0-082
Question #:28
Which two statements are true about views used for viewing tablespace and datafile information? (Choose
two.)
E. A datafile can be renamed when the database is in MOUNT state and the new file name is displayed
when querying DBA_DATA_FILES after the database is opened
Answer: B E
Question #:29
Which two statements are true regarding Oracle database space management within blocks managed by
Automatic Segment Space Management (ASSM)? (Choose two.)
A. PCTFREE defaults to 10% for all blocks in all segments for all compression methods
B. ASSM assigns blocks to one of four fullness categories based on what percentage of the block is
allocated for rows
C. Update operations always attempt to find blocks with free space appropriate to the length of the row
being updated
D. Insert operations always attempt to find blocks with free space appropriate to the length of the row being
inserted
E. A block will always be eligible for inserts if the row is short enough to fit into the block
Answer: C E
Question #:30
A. Private database link creation requires the same user to exist in both the local and the remote databases.
C.
15 of 71
Oracle - 1z0-082
D. A public database link can be used by a user connected to the local database instance to connect to any
schema in the remote database instance.
E. A database link created in a database allows a connection from that database's instance to the target
database's Instance, but not vice versa.
Answer: D
Question #:31
Which two statements are true about Enterprise Manager Database Express? (Choose two.)
C. The same port number can be used for Database Express configurations for databases on different hosts
E. The same port number can be used for multiple Database Express configurations for multiple databases
on the same host
Answer: A C
Question #:32
Which two are true about a SQL statement using SET operators such as UNION? (Choose two.)
A. The data type group of each column returned by the second query must match the data type of the
corresponding column returned by the first query.
B. The number, but not names, of columns must be identical for all SELECT statements in the query.
C. The data type of each column returned by the second query must exactly match the data type of the
corresponding column returned by the first query.
D. The names and number of columns must be identical for all SELECT statements in the query.
E. The data type of each column returned by the second query must be implicitly convertible to the data
type of the corresponding column returned by the first query.
Answer: C E
Question #:33
In your data center, Oracle Managed Files (OMF) is used for all databases.
16 of 71
Oracle - 1z0-082
Examine this command which is about to be issued by a DBA logged in to the SALES database:
Which are two actions, either one of which you could take to ensure that the command executes successfully?
(Choose two.)
B. Specify a path in the DATAFILE clause of the command specifying a location with at least 100M of
available space.
C. Ensure that DB_CREATE_FILE_DEST specifies a location with at least 100 Mb of available space.
Answer: B C
Question #:34
You currently have an active transaction in your session and have been granted select access to vstransaction.
In which three situations will re-executing this query still return a row but with a different XID, indicating a
new transaction has started?
B. after successfully executing a create table as select statement followed by a select for update statement
17 of 71
Oracle - 1z0-082
D. after successfully executing a create table statement followed by a create index statement
Answer: B C F
Question #:35
Which two actions can you perform using DBCA for an existing database?
B. Change the server mode from dedicated to shared, and vice versa.
Answer: B C
Question #:36
Which two statements are true about the rules of precedence for operators? (Choose two.)
A. The concatenation operator | | is always evaluated before addition and subtraction in an expression
C. The + binary operator has the highest precedence in an expression in a SQL statement
D. Arithmetic operators with equal precedence are evaluated from left to right within an expression
E. Multiple parentheses can be used to override the default precedence of operators in an expression
Answer: D E
Question #:37
18 of 71
Oracle - 1z0-082
For customers whose income level has a value, you want to display the first name and due amount as 5% of
their credit limit. Customers whose due amount is null should not be displayed.
Answer: E
Question #:38
19 of 71
Oracle - 1z0-082
B. The LOCAL_LISTENER database parameter is not set to a service name that refers to LISTENER_1
Answer: C
Question #:39
Which two statements are true about the results of using the INTERSECT operator in compound queries?
(Choose two.)
B. The number of columns in each SELECT in the compound query can be different
C. Reversing the order of the intersected tables can sometimes affect the output
Answer: A D
Explanation
https://www.oracletutorial.com/oracle-basics/oracle-intersect/
Question #:40
B. It returns the date for the first Monday of the next month
C. It generates an error
20 of 71
Oracle - 1z0-082
D. It returns the date for the last Monday of the current month
Answer: B
Question #:41
What must you do so that KING is authenticated by the OS when connecting to the database instance?
D. Unset REMOTE_LOGIN_PASSWORDFILE
Answer: A
Explanation
https://oracle-base.com/articles/misc/os-authentication
Question #:42
Which three statements are true about the Automatic Diagnostic Repository (ADR)?
C.
21 of 71
Oracle - 1z0-082
E. It can be used for problem diagnosis of a database when that database's instance is down.
Answer: A B D
Question #:43
You want to connect to a database instance whose listener listens on port 1531 by using this statement:
CONNECT HR/HRMGR@orcl
E. It must be the name of the server running the database to whose instance HR wishes to connect
Answer: C
Question #:44
Which two statements are true about the BIG_TBS tablespace? (Choose two.)
22 of 71
Oracle - 1z0-082
Answer: A C
Question #:45
DATAFILE ‘/u01/app/oracle/sales01.dbf
SIZE 5G
Which two statements are true about the SALES tablespace? (Choose two.)
C. Any data files added to the tablespace must have a size of 5 gigabytes
Answer: D E
Question #:46
Which two statements are true about single row functions? (Choose two.)
B. FLOOR : returns the smallest integer greater than or equal to a specified number
E.
23 of 71
Oracle - 1z0-082
Answer: C E
Question #:47
You want to display the unique promotion costs in each promotion category.
Answer: C E
Question #:48
Which two statements are true about space-saving features in an Oracle Database? (Choose two.)
C. If they exist for a session, Private Temporary Tables (PTTs) are always dropped at the next COMMIT
OR ROLLBACK statement
24 of 71
Oracle - 1z0-082
Answer: B C
Question #:49
A. The statement will fall if a row already exists in the sales table for product 23.
E. The statement will execute successfully and a new row will be inserted into the sales table.
F. The statement will fail because a subquery may not be contained in a values clause.
Answer: B C E
Question #:50
Which three statements are true about the Oracle Data Dictionary? (Choose three.)
A. Data dictionary views are created by joins of dictionary base tables and DBA-defined tables
C. Views with the same name but different prefixes, such as CDB, DBA, ALL and USER, reference the
same base tables from the data dictionary
F. Usernames of all users including database administrators are stored in the data dictionary
25 of 71
Oracle - 1z0-082
Answer: C D F
Question #:51
Which two statements are true about the sqlldr execution? (Choose two.)
C. It generates a log that contains control file entries, which can be used with normal SQL*Loader
operations
D. It generates a sql script that it uses to load data from EMP.DAT to EMP
Answer: C E
Question #:52
Which two statements are true about the PMON background process? (Choose two.)
A. It registers database services with all local and remote listeners known to the database instance
B.
26 of 71
Oracle - 1z0-082
Answer: B E
Question #:53
View the Exhibits and examine the structure of the COSTS and PROMOTIONS tables.
You want to display PROD_IDS whose promotion cost is less than the highest cost PROD_ID in a promotion
time interval.
Exhibit 1.
Exhibit 2.
27 of 71
Oracle - 1z0-082
Answer: D
Question #:54
28 of 71
Oracle - 1z0-082
A. It generates a sqi script that it uses to load data from EMP.DAT TO EMP.
B. It overwrites the data for Alan and adds data for Curl and Bob
E. It generates a log that contains control file entries, which can be used with normal SQL'Loader
operations.
Answer: A C
Question #:55
A. They must be placed on the right side of the comparison operator or condition.
B. They must be placed on the left side of the comparison operator or condition.
29 of 71
Oracle - 1z0-082
Answer: C D F
Question #:56
A. undo
B. index
C. stored procedures
D. sequences
E. tables
F. clusters
Answer: A E F
Question #:57
Answer: C
30 of 71
Oracle - 1z0-082
Question #:58
Which two statements are true regarding the UNION and UNION ALL operators? (Choose two.)
Answer: B E
Question #:59
FROM dba_objects);
2017-03-06T12:15:17.183438+05:30
statement in resumable session ‘User U1(136), Session 1, Instance 1’ was suspended due to ORA-01536:
space quota exceeded for tablespace ‘DATA’
Which are three actions any one of which the DBA could take to resume the session? (Choose three.)
31 of 71
Oracle - 1z0-082
Answer: B C E
Question #:60
You want to apply the principle of Least Privilege in all your live databases.
One of your requirements is to revoke unnecessary privileges from all users who have them using Privilege
Analysis.
Which three types of analyses can be done using the DBMS_PRIVILEGE_CAPTURE package? (Choose
three.)
A. analysis of all privileges used by all users including administrative users in the database
B. analysis of all privileges used by all users but excluding administrative users in the database
C. analysis of privileges that a user has on their own schema objects that they did not use
D. analysis of privileges that a user has on their own schema objects that they did use
E. analysis of privileges granted directly to a role that are then used by a user who has been granted that
role
F. analysis of privileges granted indirectly to a role that are then used by a user who has been granted that
role
Answer: B E F
Explanation
https://docs.oracle.com/en/database/oracle/oracle-database/19/dbseg/performing-privilege-analysis-find-privilege-use.ht
Question #:61
Which two statements are true about the DUAL table? (Choose two.)
32 of 71
Oracle - 1z0-082
E. It can be accessed by any user who has the SELECT privilege in any schema
Answer: B F
Question #:62
Which two statements are true about segment types in an Oracle Database?
Answer: B
Question #:63
Which two where conditions demonstrate the correct usage of conversion functions?
D. WHERE order_date IN (TO_DATE ('Oct 21 2018', 'Mon DD YYYY'), TC_CHAR('Nov 21 2018', 'Mon
DD YYYY'))
Answer: B E
Question #:64
33 of 71
Oracle - 1z0-082
You need to display last names and credit limits of all customers whose last name starts with A or B in lower
or upper case, and whose credit limit Is below 1000.
A)
B)
C)
D)
E)
A. Option A
B. Option B
C. Option C
D.
34 of 71
Oracle - 1z0-082
D. Option D
E. Option E
Answer: C E
Question #:65
B. A SELECT statement can access one or more indices without accessing any tables
C. A table belonging to one user can have an index that belongs to a different user
D. An update to a table can result in updates to any or all of the table’s indexes
E. When a table is dropped and is moved to the RECYCLE BIN, all indexes built on that table are
permanently dropped
Answer: A C E
Explanation
https://docs.oracle.com/cd/A87860_01/doc/server.817/a76956/indexes.htm
https://docs.oracle.com/cd/B10501_01/server.920/a96521/indexes.htm
Question #:66
You must create a tablespace of non-standard block size in a new file system and plan to use this command:
The standard block size is 8k but other non-standard block sizes will also be used. Which two are requirements
for this command to succeed?
D.
35 of 71
Oracle - 1z0-082
E. The /u02 file system must have at least lOOg space for the datafile.
Answer: C D
Question #:67
You start your database instance in NOMOUNT state. Which two actions are performed?
Answer: C E
Question #:68
You want to use table compression suitable for OLTP that will:
Answer: E
Question #:69
36 of 71
Oracle - 1z0-082
B. The BETWEEN condition always performs better than using the >= and <= conditions
D. The BETWEEN condition always performs less well than using the >= and <= conditions
E. The Oracle join syntax performs better than the SQL:1999 compliant ANSI join syntax
Answer: A E
Explanation
https://stackoverflow.com/questions/58476906/1z0-071-oracle-exam-question-which-answers-is-correc
Question #:70
Which two statements are true about the Automatic Diagnostic Repository (ADR)? (Choose two.)
B. The ADR base defaults to $ORACLE_HOME/dbs if the DIAGNOSTIC_DEST parameter and the
ORACLE_BASE environment variable are not set
Answer: C D
Explanation
The database, Oracle Automatic Storage Management (Oracle ASM), the listener, Oracle Clusterware, and
other Oracle products or components store all diagnostic data in the ADR.
https://docs.oracle.com/database/121/ADMIN/diag.htm#ADMIN11260
Question #:71
Which statement is true about the INTERSECT operator used in compound queries?
A. Multiple INTERSECT operators are not possible in the same SQL statement
C.
37 of 71
Oracle - 1z0-082
D. It ignores NULLs
Answer: B
Question #:72
Answer: E
Question #:73
While one of your databases was in mount state, the datafiles were renamed because they had been moved to a
new file system. The database was then opened.
C. DBA_DATA _FILES displays both the new name and the old name for the data files.
E. DBA_DATA_FILES must be resynchronized manually with the control file an order to have it display
the new file names.
Answer: A C
Question #:74
38 of 71
Oracle - 1z0-082
Answer: C
Question #:75
Which four statements are true regarding primary and foreign key constraints and the effect they can have on
table data? (Choose four.)
A. A table can have only one primary key but multiple foreign keys
B. A table can have only one primary key and one foreign key
C. The foreign key columns and parent table primary key columns must have the same names
D. It is possible for child rows that have a foreign key to remain in the child table at the time the parent row
is deleted
E. It is possible for child rows that have a foreign key to be deleted automatically from the child table at the
time the parent row is deleted
F. Only the primary key can be defined at the column and table level
G. Primary key and foreign key constraints can be defined at both the column and table level
Answer: A C E G
39 of 71
Oracle - 1z0-082
Question #:76
Which two are true about shrinking a segment online? (Choose two.)
Answer: E F
Question #:77
The sales table has columns prod_id and quantity_sold of data type number
A. SELECT prod_id FROM sales WHERE quantity_sold > 55000 GROUP BY prod_id HAVING
COUNT(-) > 10;
B. SELECT prod_id FROM sales WHERE quantity_sold > 5S000 AND COUNT(-) > 10 GROUP BY
prod_id HAVING COUNT(-) > 10;
C. SELECT COUNT|prod_id> FROM sales WHERE quantity_sold > 55000 GROUP BY prod_id;
D. SELECT COUNTlprod_id> FROM sales GROUP BY prod_id WHERE quantity_Sold > 55000;
E. SELECT prod_id FROM sales WHERE quantity_scld > 55000 AND COUNT(-) > 10 GROUP BY
COUNT(-) > 10;
Answer: A C
Question #:78
40 of 71
Oracle - 1z0-082
Answer: A D
Question #:79
A. Employee 100 will have SALARY set to the same value as the SALARY of employee 200
B. Employee 200 will have JOB_ID set to the same value as the JOB_ID of employee 100
C.
41 of 71
Oracle - 1z0-082
C. Employee 200 will have SALARY set to the same value as the SALARY of employee 100
D. Employee 100 will have JOB_ID set to the same value as the JOB_ID of employee 200
E. Employees 100 and 200 will have the same JOB_ID as before the update command
F. Employees 100 and 200 will have the same SALARY as before the update command
Answer: A D
Question #:80
A database is configured to use automatic undo management with temporary undo enabled.
C. in the SGA
D. in the PGA
Answer: E
Explanation
http://www.dba-oracle.com/t_temp_undo_enabled.htm
Question #:81
Which two statements are true about User Authentication in an Oracle Database?
42 of 71
Oracle - 1z0-082
Answer: A C
Question #:82
Which four account management capabilities can be configured using Oracle profiles? (Choose four.)
A. the number of hours for which an account is locked after the configured number of login attempts has
been reached
B. the number of days for which an account may be inactive before it is locked
C. the maximum amount of CPU time allowed for a user’s sessions before their account is locked
E. the number of password changes required within a period of time before a password can be reused
F. the number of days for which an account is locked after the configured number of login attempts has
been reached
G. the maximum number of sessions permitted for a user before the account is locked
Answer: D E F G
Question #:83
Which three statements are true about Oracle synonyms? (Choose three.)
D. A synonym created by one user can refer to an object belonging to another user
Answer: B C D
Question #:84
Which three statements are true about undo segments and the use of undo by transactions in an Oracle
database instance? (Choose three.)
B. Undo segments can wrap around to the first extent when a transaction fills the last extend of the undo
43 of 71
Oracle - 1z0-082
B.
segment
D. Undo segments can extend when a transaction fills the last extent of the undo segment
Answer: A D G
Question #:85
Which two statements are true about UNDO and REDO? (Choose two.)
E. DML modifies Oracle database objects and generates UNDO and REDO
Answer: A E
Explanation
https://www.experts-exchange.com/articles/13880/UNDO-AND-REDO-IN-ORACLE.html
Question #:86
44 of 71
Oracle - 1z0-082
B. The LREG process registers services dynamically with the LISTENER_1 listener
C. LISTENER_1 must also be defined in the LISTENER.ORA file to enable dynamic service registration
D. There are two listeners named LISTENER and LISTENER_1 running simultaneously using port 1521
on the same host as the database instances
E. The definition for LISTENER_1 requires a CONNECT_DATA section to enable dynamic service
registration
Answer: B
Explanation
The listener forwards client requests to supported services. These services are dynamically registered with the
listener. This dynamic registration feature is called service registration. The registration is performed by the
Listener Registration (LREG) process. Dynamic service registration does not require any manual configuration
in the listener.ora file.
Question #:87
You want to write a query that prompts for two column names and the WHERE condition each time it is
executed in a session but only prompts for the table name the first time it is executed.
The variables used in your query are never undefined in your session.
45 of 71
Oracle - 1z0-082
Answer: B
Question #:88
Which three Oracle database space management features will work with both Dictionary and Locally managed
tablespaces? (Choose three.)
E. Capacity planning growth reports based on historical data in the Automatic Workload Repository
(AWR)
Answer: A D E
Question #:89
C. Queries and DML statements are allowed on ORDERS while the shrink is executing.
D. The shrink operation causes rows to be moved to empty space starting from the beginning of the orders
segment.
F. The shrink operation causes rows to be moved to empty space starting toward the end of the orders
segment.
Answer: C D
46 of 71
Oracle - 1z0-082
Question #:90
A. All roles granted to a user are set on by default when the user logs in,
C. The SET ROLE statement can disable one or more roles for a session.
F. The SET ROLE statement can enable one or more roles for a session.
Answer: B C E
Question #:91
An Oracle database session has an uncommitted transaction in progress which updated 5000 rows in a table.
Which three situations does the transaction complete thereby committing the updates?
A. when a DBA issues a successful SHUTDOWN TRANSACTIONAL statement and the user then issues
a COMMIT
C. when a COMMIT statement is issued by the same user from another session in the same database
instance
E. when a DBA issues a successful SHUTDOWN IMMEDIATE statement and the user then issues a
COMMIT
F. when a CREATE TABLE AS SELECT statement is executed unsuccessfully in the same session
Answer: A B D
Question #:92
Which three statements are true about dropping and unused columns in an Oracle database? (Choose three.)
A. A primary key column referenced by another column as a foreign key can be dropped if using the
CASCADE option.
B.
47 of 71
Oracle - 1z0-082
B. An UNUSED column’s space is reclaimed automatically when the block containing that column is next
queried.
C. An UNUSED column’s space is reclaimed automatically when the row containing that column is next
queried.
F. A column that is set to UNUSED still counts towards the limit of 1000 columns per table
Answer: A D F
Question #:93
Which three statements are true about time zones, date data types, and timestamp data types in an Oracle
database? (Choose three.)
B. A TIMESTAMP WITH LOCAL TIMEZONE data type column is stored in the database using the time
zone of the session that inserted the row
C. A TIMESTAMP data type column contains information about year, month, and day
D. The DBTIMEZONE function can return an offset from Universal Coordinated Time (UTC)
E. The SESSIONTIMEZONE function can return an offset from Universal Coordinated Time (UTC)
Answer: B D E
Question #:94
Be used for calculating interest for the number of days the loan remains unpaid
48 of 71
Oracle - 1z0-082
D. TIMESTAMP
Answer: B
Question #:95
Which three statements are true about GLOBAL TEMPORARY TABLES? (Choose three.)
A. A TRUNCATE command issued in a session causes all rows in a GLOBAL TEMPORARY TABLE for
the issuing session to be deleted.
B. GLOBAL TEMPORARY TABLE rows inserted by a session are available to any other session whose
user has been granted select on the table.
D. Any GLOBAL TEMPORARY TABLE rows existing at session termination will be deleted.
Answer: A D E
Explanation
https://docs.oracle.com/javadb/10.8.3.0/ref/rrefdeclaretemptable.html
Question #:96
49 of 71
Oracle - 1z0-082
D. SELECT join_date + '20' FROM employees; SELECT salary * '120.50' FROM employees;
Answer: A
Question #:97
Which three statements are true about advanced connection options supported by Oracle Net for connection to
Oracle Database instances? (Choose three.)
A. Connect Time Failover requires the use of Transparent Application Failover (TAF)
C. Source Routing enables the use of Connection Manager (CMAN) which enables network traffic to be
routed through a firewall
D. Load Balancing can balance the number of connections to dispatchers when using a Shared Server
configuration
F. Connect Time Failover requires the connect string to have two or more listener addresses configured
Answer: C D F
Explanation
https://docs.oracle.com/en/database/oracle/oracle-database/12.2/rilin/shared-server-configuration-for-an-oracle-rac-datab
Question #:98
50 of 71
Oracle - 1z0-082
A. DML may be performed on tables with one or more extents in this data file during the execution of this
command.
B. The tablespace containing SALES1.DBF must be altered READ ONLY before executing the command.
C. The tablespace containing SALES1.DBF must be altered OFFLINE before executing the command.
D. If Oracle Managed Files (OMF) is used, then the file is renamed but moved to
DB_CREATE_FILE_DEST.
Answer: A E
Question #:99
A. It has its own commands that are separate from any SQL statements.
Answer: A B C
Question #:100
B. The value in an interval day to SECOND column can be copied into an interval year to month column.
D. INTERVAL year to month columns only support monthly Intervals within a single year.
E. INTERVAL year to month columns only support monthly intervals within a range of years.
F.
51 of 71
Oracle - 1z0-082
F. The year field in an interval year to month column must be a positive value.
Answer: A C
Question #:101
Which two tasks can you perform using DBCA for databases? (Choose two.)
Answer: A B
Question #:102
Which three statements are true about connection strings and service names used to connect to an Oracle
database instance?
A. A single database instance can support connections for multiple service names.
D. A connection string including a service name must be defined in the cnsnames.ora file.
F. Different connection strings in the same tnsnames.ora file can contain the same service name, host and
port parameters.
Answer: A C F
Question #:103
52 of 71
Oracle - 1z0-082
A. The value is changed only in the PFILE and takes effect at the next instance startup
B. The value is changed for the current instance and in the PFILE
D. Change is applied to the current instance, but does not persist after instance restart
Answer: D
Question #:104
Which two statements are true about undo and undo tablespaces?
Answer: B C
Question #:105
Which three statements are true about table data storage in an Oracle Database? (Choose three.)
A. Data block headers contain their own Data Block Address (DBA)
53 of 71
Oracle - 1z0-082
C. Multiple row pieces from the same row may be stored in different database blocks
D. Multiple row pieces from the same row may be stored in the same block
E. Data block free space is always contiguous in the middle of the block
F. Index block free space is always contiguous in the middle of the block
Answer: A B C
Question #:106
Answer: C
Question #:107
A. SALES1 has not NULL constraints on any selected columns which had those constraints in the sales
table.
B. SALES1 has primary key and unique constraints on any selected columns which had those constraints in
the sales table.
54 of 71
Oracle - 1z0-082
Answer: A C
Question #:108
Which three files are used by conventional path SQL*Loader when the TABLE option is not specified?
(Choose three.)
A. dump files
B. control files
C. password files
D. bad files
E. input files
Answer: B D E
Question #:109
The EMPLOYEES table contains columns EMP_ID of data type NUMBER and HIRE_DATE of data type
DATE.
You want to display the date of the first Monday after the completion of six months since hiring.
The NLS_TERRITORY parameter is set to AMERICA in the session and, therefore, Sunday is the first day on
the week.
Answer: B
Question #:110
55 of 71
Oracle - 1z0-082
Which two statements are true about the ORD_ITEMS table and the ORD_SEQ sequence? (Choose two.)
A. If sequence ORD_SEQ is dropped then the default value for column ORD_NO will be NULL for rows
inserted into ORD_ITEMS
B. Any user inserting rows into table ORD_ITEMS must have been granted access to sequence ORD_SEQ
C. Column ORD_NO gets the next number from sequence ORD_SEQ whenever a row is inserted into
ORD_ITEMS and no explicit value is given for ORD_NO
D. Sequence ORD_SEQ cycles back to 1 after every 5000 numbers and can cycle 20 times
Answer: B C
Question #:111
The table has two rows whose "jst_last_name values are Andersen and Ausson.
Which query produces output for cust_last_xame containing Oder for the first row and Aus for the second?
A.
56 of 71
Oracle - 1z0-082
Answer: A
Question #:112
Which three statements are true about the Oracle join and ANSI join syntax? (Choose three.)
A. The Oracle join syntax supports creation of a Cartesian product of two tables
B. The Oracle join syntax performs better than the SQL:1999 compliant ANSI join syntax
D. The SQL:1999 compliant ANSI join syntax supports creation of a Cartesian product of two tables
G. The Oracle join syntax performs less well than the SQL:1999 compliant ANSI join syntax
Answer: A C D
Explanation
https://oracle-base.com/articles/9i/ansi-iso-sql-support
Question #:113
D. The MAX and MIN functions can be used on columns with character data types
Answer: D
57 of 71
Oracle - 1z0-082
Question #:114
In one of your databases, you create a user, HR, and then execute this command:
D. Grant the CREATE SESSION privilege with ADMIN OPTION to other users
Answer: A C D
Question #:115
In which three situations does a new transaction always start? (Choose three.)
A. when issuing a SELECT FOR UPDATE statement after a CREATE TABLE AS SELECT statement
was issued in the same session
B. when issuing a TRUNCATE statement after a SELECT statement was issued in the same session
C. when issuing a CREATE TABLE statement after a SELECT statement was issued in the same session
D. when issuing the first Data Manipulation Language (DML) statement after a COMMIT OR
ROLLBACK statement was issued in the same session
E. when issuing a CREATE INDEX statement after a CREATE TABLE statement completed successfully
in the same session
F. when issuing a DML statement after a DML statement failed in the same session
Answer: A D E
Explanation
https://docs.oracle.com/en/database/oracle/oracle-database/19/cncpt/transactions.html#GUID-7690181F-8293-47B9-AD
Question #:116
Which three statements are true about the DESCRIBE command? (Choose three.)
58 of 71
Oracle - 1z0-082
A. It displays the PRIMARY KEY constraint for any column or columns that have that constraint
C. It displays the NOT NULL constraint for any columns that have that constraint
Answer: C D F
Question #:117
B. PRODUCT _price contains the value zero by default if no value is assigned to it.
C. PRODUCT _price can be used in an arithmetic expression even if it has no value stored in it.
Answer: A C
Question #:118
Which two statements are true about date/time functions in a session where NLS_DATE_FORMAT is set to
DD-MON-YYYY HH24:MI:SS? (Choose two.)
A. CURRENT_TIMESTAMP returns the same date and time as SYSDATE with additional details of
fractional seconds
59 of 71
Oracle - 1z0-082
C. CURRENT_DATE returns the current date and time as per the session time zone
D. SYSDATE can be used in expressions only if the default date format is DD-MON-RR
E. SYSDATE and CURRENT_DATE return the current date and time set for the operating system of the
database server
Answer: C F
Explanation
https://www.w3resource.com/oracle/datetime-functions/oracle-current_timestamp-function.php
Question #:119
You want to display details of all customers who reside in cities starting with the letter D followed by at least
two characters.
Answer: A
60 of 71
Oracle - 1z0-082
Question #:120
Your database instance was shut down normally and then started in NOMOUNT state. You then execute this
command:
Answer: C F
Explanation
http://facedba.blogspot.com/2014/07/oracle-database-startup-stages-and.html
Question #:121
You need to calculate the number of days from 1st January 2019 until today.
Answer: C E
61 of 71
Oracle - 1z0-082
Question #:122
DATAFILE ‘undotbs_01.dbf’
SIZE 100M
AUTOEXTEND ON;
Which two actions must you take to ensure UNDOTBS01 is used as the default UNDO tablespace? (Choose
two.)
D. Make certain that the database operates in automatic undo management mode
Answer: B D
Question #:123
Which three statements are true concerning logical and physical database structures? (Choose three.)
Answer: B C F
62 of 71
Oracle - 1z0-082
Question #:124
Which two statements are true about the Oracle Data Dictionary?
D. Data dictionary views are always created with queries that join two or more base tables.
E. All data dictionary view joins base tables to dynamic performance views.
Answer: A B
Question #:125
You want to display the rows from the SALES1 table which are not present in the SALES2 table.
A. INTERSECT
B. UNION ALL
C. UNION
D. SUBTRACT
E. MINUS
63 of 71
Oracle - 1z0-082
Answer: E
Question #:126
The SCOTT/TIGER user exists in two databases, BOSTON_DB and DALLAS_DB, in two different
locations.
CREATE DATABASE LINK dblink1 CONNECT TO scott IDENTIFIED BY tiger USING ‘dallas_db’;
How do you execute the command so that only SCOTT in BOSTON_DB can access the SCOTT schema in
DALLAS_DB?
A. as SCOTT in DALLAS_DB
B. as SCOTT in BOSTON_DB
Answer: B
Explanation
https://docs.oracle.com/cd/B28359_01/server.111/b28310/ds_concepts002.htm#ADMIN12085
Database links are either private or public. If they are private, then only the user who created the link has
access; if they are public, then all database users have access.
https://docs.oracle.com/database/121/SQLRF/statements_5006.htm#SQLRF01205
Question #:127
The SALES_Q1 and USERS tablespaces exist in one of your databases and TEMP is a temporary tablespace.
64 of 71
Oracle - 1z0-082
Which three statements must be true so that the SALES user can create tables in SALES_Q1? (Choose three.)
B. The sales user must have a quota on the SALES_Q1 tablespace to hold the initial extends of all tables
they plan to create in their schema
C. The sales user must have been granted the CREATE SESSION privilege
D. The sales user must have their quota on the users tablespace removed
E. The sales user must have a quota on the SALES_Q1 tablespace to hold all the rows to be inserted into
any table in their schema
F. The sales user must have been granted the CREATE TABLE privilege
Answer: B D F
Question #:128
Which three statements are true about the tools used to configure Oracle Net Services? (Choose three.)
A. The Oracle Net Configuration Assistant is only used when running the Oracle installer
B. Oracle Net Manager can be used to centrally configure listeners on any database server target
D. Oracle Net Manager can be used to locally configure naming methods on a database server
E. Enterprise Manager Cloud Control can be used to centrally configure listeners on any managed database
server
F. Enterprise Manager Cloud Control can be used to centrally configure net service names for any database
server target
Answer: D E F
Explanation
65 of 71
Oracle - 1z0-082
https://docs.oracle.com/en/database/oracle/oracle-database/19/netag/introducing-oracle-net-services.html#GUID-6B1F0
• Oracle Enterprise Manager Cloud Control combines configuration functionality across multiple file systems,
along with listener administrative control to provide an integrated environment for configuring and managing
Oracle Net Services. • Oracle Net Manager provides configuration functionality for an Oracle home on a local
client or server host.
Question #:129
Which two statements are true about the WHERE and HAVING clauses in a SELECT statement? (Choose
two.)
A. Aggregating functions and columns used in HAVING clauses must be specified in the SELECT list of a
query
B. WHERE and HAVING clauses can be used in the same statement only if applied to different table
columns
D. The WHERE clause can be used to exclude rows before dividing them into groups
E. The WHERE clause can be used to exclude rows after dividing them into groups
Answer: C D
Question #:130
Which two statements are true about Enterprise Manager (EM) Express?
A. You can use a single instance of EM Express to manage multiple database running on the same server.
C. By default, EM express is available for a database after database creation using DBCA.
Answer: C D
Question #:131
66 of 71
Oracle - 1z0-082
Which segment or segments, if any, are created as a result of executing the command?
A. T1, an index segment for the primary key, a LOB segment, and a lobindex segment
C. T1 only
E. T1, an index segment for the primary key, and a LOB segment only
Answer: B
Question #:132
Answer: A C
Question #:133
67 of 71
Oracle - 1z0-082
You want to display all cities that contain the string an. The cities must be returned in ascending order, with
the last names further sorted in descending order.
B. ORDER BY 1, 2
Answer: A C
Question #:134
Which three statements are true about single-row functions? (Choose three.)
C. The data type returned can be different from the data type of the argument
Answer: B C D
Explanation
https://www.tutorialspoint.com/sql_certificate/using_single_row_functions_questions.htm
Question #:135
Which three functions are performed by dispatchers in a shared server configuration? (Choose three.)
A. writing inbound request to the common request queue from all shared server connections
B.
68 of 71
Oracle - 1z0-082
B. checking for outbound shared server responses on the common outbound response queue
D. sending each connection input request to the appropriate shared server input queue
F. sending shared server session responses back to requesters on the appropriate connection
Answer: A C F
Explanation
https://docs.oracle.com/cd/B28359_01/server.111/b28310/manproc001.htm#ADMIN11168
Question #:136
Which three statements are true about external tables in Oracle 18c and later releases? (Choose three.)
A. External table files can be used for other external tables in a different database
B. The ORACLE_LOADER access driver can be used to unload data from a database into an external table
C. The ORACLE_DATAPUMP access driver can be used to unload data from a database into an external
table
E. The ORACLE_DATAPUMP access driver can be used to load data into a database from an external
table
Answer: A B C
Explanation
https://docs.oracle.com/en/database/oracle/oracle-database/18/admin/managing-tables.html#GUID-F6948F0E-0557-4C4
Question #:137
Which three statements are true about Deferred Segment Creation in Oracle databases?
A. It Is supported for Index Organized Tables (IOTs) contained in locally managed tablespaces.
B. Sessions may dynamically switch back and forth from deferred to immediate segment creation.
69 of 71
Oracle - 1z0-082
E. Indexes inherit the deferred or immediate segment creation attribute from their parent table
Answer: B C E
Question #:138
Which is the default column or columns for sorting output from compound queries using SET operators such
as intersect In a SQL statement?
B. the first varchab2 column in the first select of the compound query
C. the first number column in the first select of the compound query
D. the first number or varchar2 column in the last select of the compound query
Answer: A
Question #:139
Which two statements are true about the SET VERIFY ON command? (Choose two.)
B. It displays values for variables used only in the WHERE clause of a query
Answer: C E
Question #:140
Which three activities are recorded in the database alert log? (Choose three.)
70 of 71
Oracle - 1z0-082
D. deadlock errors
Answer: B C D
Question #:141
Which three statements are true about inner and outer joins? (Choose three.)
C. Outer joins can only be used between two tables per query
E. Outer joins can be used when there are multiple join conditions on two tables
Answer: A B F
Question #:142
In the promotions table, the PROMO_BEGIN_DATE column is of data type date and the default date format
Is DD-MON-RR.
h two statements are true about expressions using PROMO_BEGIN_DATE contained In a query?
Answer: C D
71 of 71