[practice] Oracle Database Administration I 1Z0-082

/229
5

Copy - Exam 1Z0-082 Oracle Database Administration I

Oracle Database Administration I 1z0-082

Number of Questions: 72
Passing Score: 60%

1 / 229

1.

Which two statements are true about the Oracle Data Dictionary?

2 / 229

2.

The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of data type DATE. NLS_DATE_FORMAT is set to DD-MON-RR. Which two are true about data type conversions involving these columns in query expressions? (Choose two.)

3 / 229

3.

View the Exhibit and examine the structure of the PRODUCTS table.
Which two tasks require subqueries? (Choose two.)

4 / 229

4.

Which three are types of segments in an Oracle Database? (Choose three.)

5 / 229

5.

Which two statements are true regarding Oracle database space management within blocks managed by Automatic Segment Space Management (ASSM)? (Choose two.)

6 / 229

6.

View the Exhibit and examine the description of the tables.

 

7 / 229

7.

Examine the description of the MEMBERS table:

8 / 229

8.

Examine this command:

Which two statements are true?

9 / 229

9.

Which three statements are true about the tools used to configure Oracle Net Services? (Choose three.)

10 / 229

10.

Which two statements are true about single row functions?

11 / 229

11.

Which statement is true about the INTERSECT operator used in compound queries?

12 / 229

12.

Which two Oracle database space management features require the use of locally managed tablespaces?

13 / 229

13.

Which are two of the account management capabilities that can be configured using Oracle profiles? (Choose two.)

14 / 229

14.

Which three statements are true about Deferred Segment Creation in Oracle databases?

15 / 229

15.

Examine the description of the CUSTOMERS table:

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. Which query should be used?

16 / 229

16.

Examine this command:
ALTER DATABSE

     MOVE DATAFILE ‘/u01/sales01.dbf’

                    TO      ‘/u02/sales02.dbf’;

Which two statements are true?

17 / 229

17.

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 Is the value changed?

18 / 229

18.

Which two statements are true regarding Oracle database space management within blocks managed by Automatic Segment Space Management (ASSM)?

19 / 229

19.

Which two statements are true about INTERVAL data types?

20 / 229

20.

Which three statements are true about the Oracle join and ANSI join syntax? (Choose three.)

21 / 229

21.

Which three statements are true about the Automatic Diagnostic Repository (ADR)?

22 / 229

22.

Examine this command: SQL> ALTER TABLE ORDERS SHRINK SPACE COMPACT Which two statements are true?

23 / 229

23.

Which three statements are true about data block storage in an Oracle Database?

24 / 229

24.

The SCOTT/TIGER user exists in two databases, BOSTON_DB and DALLAS_DB, in two different
locations.
Each database has a tnsnames.ora file defining DALLAS_DB as a service name.
Examine this command:
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?

25 / 229

25.

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 two types of analyses can be done using the DBMS_PRIVILEGE_CAPTURE package? (Choose two.)

26 / 229

26.

Which two statements are true about single row functions? (Choose two.)

27 / 229

27.

Which three statements are true regarding indexes? (Choose three.)

28 / 229

28.

View the Exhibit and examine the description of the tables. You execute this SQL statement:

Which three statements are true?

29 / 229

29.

Examine the description of the BOOKS table:

The table has 100 rows.
Examine this sequence of statements issued in a new session:
INSERT INTO books VALUES ('ADV112', 'Adventures of Tom Sawyer', NULL, NULL); SAVEPOINT a;
DELETE FROM books; ROLLBACK TO SAVEPOINT a; ROLLBACK; Which two statements are true?
(Choose two.)

 

30 / 229

30.

Examine the description of the product_details table:

Which two statements are true?

31 / 229

31.

Which two statements are true about the SET VERIFY ON command?

32 / 229

32.

Which three instance situations are possible with the Oracle Database server without multi-
tenant? (Choose three.)

33 / 229

33.

The orders table has a column ORDER_DATE of data type date.
The default display format for a date Is DD-MON-RR.
Which two where conditions demonstrate the correct usage of conversion functions?

34 / 229

34.

Which three are types of segments in a Oracle database?

35 / 229

35.

The customers table has a cust_last_name column of data type varchar2.
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?

36 / 229

36.

The ORCL database has RESUMABLE_TIMEOUT = 7200 and DEFERED_SEGMENT_CREATION= FALSE
User U1 has a 1 MB quota in tablespace DATA. U1 executes this command:

 

SQL> CREATE TABLE t1 AS

(SELECT object_name, sharing, created FROM dba_objects);

 

U1 complains that the command is taking too long to execute. In the alert log, the database administrator (DBA) finds this:

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.)

37 / 229

37.

Which three statements are true about Deferred Segment Creation in Oracle databases?

38 / 229

38.

Which three activities are recorded in the database alert log? (Choose three.)

39 / 229

39.

You start your database instance in NOMOUNT state Which two actions are performed?

40 / 229

40.

Which Three activities are recorded in the database alert log?

41 / 229

41.

Table ORDER_ITEMS contains columns ORDER_ID, UNIT_PRICE and QUANTITY, of data type NUMBER.
Examine these SQL statements:Statement 1:
SELECT MAX(unit_price * quantity) “Maximum Order” FROM order_items;
Statement 2:
SELECT MAX(unit_price * quantity) “Maximum Order” FROM order_items
GROUP BY order_id;
Which two statements are true?

42 / 229

42.

Which two statements are true about undo segments and the use of undo by transactions in an Oracle database instance? (Choose two.)

43 / 229

43.

Which three statements are true about dropping and unused columns in an Oracle database? (Choose three.)

44 / 229

44.

Examine these commands:

Which two statements are true about the sqlldr execution?

45 / 229

45.

Which four account management capabilities can be configured using Oracle profiles?
(Choose four.)

46 / 229

46.

Which three statements are true about inner and outer joins?

47 / 229

47.

Examine the description of the employees table: Which query requires explicit data type conversion?

48 / 229

48.

In the PROMOTIONS table, the PROMO_BEGIN_DATE column is of data type DATE and the default date format is DD-MON-RR.

Which two statements are true about expressions using PROMO_BEGIN_DATE contained in a query?

49 / 229

49.

You execute this command:

 

50 / 229

50.

Which two statements are true about UNDO and REDO?

51 / 229

51.

Which three statements are true about a self join? (Choose three.)

52 / 229

52.

Which statement is true about aggregate functions?

53 / 229

53.

Your database instance was shut down normally and then started in NOMOUNT state. You
then execute this command:
ALTER DATABASE MOUNT;
Which two actions are performed? (Choose two.)

54 / 229

54.

In which three situations does a new transaction always start? (Choose three.)

55 / 229

55.

Which two statements are true about views used for viewing tablespace and datafile information?

56 / 229

56.

Which three statements are true about the Automatic Diagnostic Repository (ADR)?

57 / 229

57.

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.)

58 / 229

58.

Which three statements are true about views in an Oracle database? (Choose three.)

59 / 229

59.

In one of your databases, you create a user, HR, and then execute this command:
GRANT CREATE SESSION TO hr WITH ADMIN OPTION;

Which three actions can HR perform?

60 / 229

60.

The SALES_Q1 and USERS tablespaces exist in one of your databases and TEMP is a temporary tablespace.

 

Segment creation is not deferred. You execute this command:

Which three statements must be true so that the SALES user can create tables in SALES_Q1? (Choose three.)

61 / 229

61.

Examine the description of the EMPLOYEES table:

 

Which query is valid?

62 / 229

62.

Which three statements are true about external tables in Oracle 18c and later releases? (Choose three.)

63 / 229

63.

The sales table has columns prod_id and quantity_sold of data type number In two queries
execute successfully? 

64 / 229

64.

Examine this SQL statement:
SELECT cust_id, cust_last_name "Last Name"
FROM customers
WHERE country_id = 10
UNION
SELECT cust_id CUST_NO, cust_last_name
FROM customers
WHERE country_id = 30
Identify three ORDER BY clauses, any one of which can complete the query successfully. (Choose
three.)

65 / 229

65.

Which three statements are true about undo segments and the use of undo by transactions
in an Oracle database instance? (Choose three.)

66 / 229

66.

Which two statements are true about Database Instances and Real Application Clusters (RAC)?

67 / 229

67.

Examine this description of the books table containing 100 rows:

Now examine this sequence of statements Issued In a new session;

Examine this description of the books table containing 100 rows:
Which three statements are true?

68 / 229

68.

The ORCL database has RESUMABLE__TIMEOUT = 7200 and
DEFERRED_SEGMENT_CREATION = FALSE User U1 has a 1 MB quota in tablespace DATA.
U1 executes this command:
SQL> CREATE TABLE t1 AS
(SELECT object_name, sharing, created
FROM dba_objects);
U1 complains that the command is taking too long to execute.
In the alert log, the database administrator (DBA) finds this:
2017/3/6 14:45:17

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.)

69 / 229

69.

Examine the description of the PROMOTIONS table:

You want to display the unique promotion costs in each promotion category.
Which two queries can be used? (Choose two.)

70 / 229

70.

Examine these commands:

Which two statements are true about the sqiidr execution?

71 / 229

71.

Your database instance is started with a PFILE. Examine these parameters:

You want to increase the size of the buffer cache. Free memory is available to increase the size of the buffer cache. You execute the command: SQL> ALTER SYSTEM SET DB_CACHE_SIZE=1024M; What is the outcome?

72 / 229

72.

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?

73 / 229

73.

Which two statements are true about the configuration and use of UNDO_RETENTION with GURANTEED RETENTION? (Choose two.)

74 / 229

74.

Which two statements are true about views?

75 / 229

75.

In the SALES database, DEFERRED_SEGMENT_CREATION is TRUE. Examine this command: SQL> CREATE TABLE T1(c1 INT PRIMARY KEY, c2 CLOB); Which segment or segments, if any, are created as a result of executing the command?

76 / 229

76.

Which three files are used by conventional path SQL*Loader when the TABLE option is not specified? (Choose three.)

77 / 229

77.

Which two statements are true about UNDO and REDO? (Choose two.)

78 / 229

78.

Examine this command:
SQL> ALTER TABLE ORDERS SHRINK SPACE COMPACT

Which two statements are true?

79 / 229

79.

Examine this description of the TRANSACTIONS table:

Which two SQL statements execute successfully? (Choose two.)

80 / 229

80.

In one of your databases, the user HR has the password HRMGR. You want to connect to a database instance whose listener listens on port 1531 by using this statement:

CONNECT HR/HRMGR@orcl

No name server is used.

Which statement is true about ORCL?

81 / 229

81.

Examine this SQL statement:
SELECT cust_id, cust_last_name "Last Name" FROM customers
WHERE country_id = 10 UNION
SELECT cust_id CUST_NO, cust_last_name FROM customers
WHERE country_id = 30
Identify three ORDER BY clauses, any one of which can complete the query successfully. (Choose three.)

82 / 229

82.

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?

 

83 / 229

83.

Which two statements are true about the SET VERIFY ON command? (Choose two.)

84 / 229

84.

Examine the description of the EMPLOYEES table:

Name                          Null?       Type

============================    ==========   =======================

EMP_ID                         NOT NULL     NUMBER

EMP_NAME                                   VARCHAR2(10)

DEPT_ID                                    NUMBER(2)

SALARY                                     NUMBER(8,2)

JOIN_DATE                                  DATE

 

NLS_DATE_FORMAT is set to DD-MON-YY

Which query requires explicit data type conversion?

85 / 229

85.

Which two statements are true about the DUAL table? (Choose two.)

86 / 229

86.

Which three statements are true about Oracle synonyms? (Choose three.)

87 / 229

87.

Which two statements are true about Enterprise Manager (EM) Express?

88 / 229

88.

What is true about non-equijoin statement performance? (Choose two.)

89 / 229

89.

Examine the description of the SALES1 table:

90 / 229

90.

Which two statements are true about the rules of precedence for operators? (Choose two.)

91 / 229

91.

Which two statements are true about the configuration and use of UNDO_RETENTION with no GUATANTEED RETENTION?

92 / 229

92.

Examine the description of the BOOKS_TRANSACTIONS table:

 

93 / 229

93.

The CUSTOMERS table has a CUST_CREDIT_LIMIT column of data type NUMBER.
Which two queries execute successfully? (Choose two.)

94 / 229

94.

Which is the default column or columns for sorting output from compound queries using SET operators such as intersect In a SQL statement?

95 / 229

95.

You execute this command:

Sufficient storage is available in filesystem /u01. Which two statements are true about the BIG_TBS tablespace? (Choose two.)

96 / 229

96.

Which three statements are true about the DESCRIBE command? (Choose three.)

97 / 229

97.

Examine the description of the SALES1 table:

SALES2 is a table with the same description as SALES1.
Some sales data is duplicated in both tables.
You want to display the rows from the SALES1 table which are not present in the SALES2 table.
Which set operator generates the required output?

98 / 229

98.

Which two statements are true regarding a SAVEPOINT? (Choose two.)

99 / 229

99.

In one of your databases, you create a user, HR, and then execute this command: GRANT CREATE SESSION TO hr WITH ADMIN OPTION; Which three actions can HR perform? (Choose three.)

100 / 229

100.

Which two statements are true about the Oracle join and ANSI join syntax?

101 / 229

101.

Which three statements are true about advanced connection options supported by Oracle
Net for connection to Oracle Database instances? (Choose three.)

102 / 229

102.

What is true about non-equijoin statement performance?

103 / 229

103.

Which two statements are true about interval data types?

104 / 229

104.

Which two statements are true about the Automatic Diagnostic Repository (ADR)? (Choose
two.)

105 / 229

105.

Which two are true about shrinking a segment online? (Choose two.)

106 / 229

106.

Examine the description of the PRODUCT_DETAILS table:

107 / 229

107.

Examine these commands:

Which two statements are true about the sqlldr execution? (Choose two.)

108 / 229

108.

Which two tasks can you perform using DBCA for databases? (Choose two.)

109 / 229

109.

Which two statements are true regarding indexes?

110 / 229

110.

In one of your databases, user KING is:
1. Not a DBA user
2. An operating system (OS) user
Examine this command and its output:

What must you do so that KING is authenticated by the OS when connecting to the database
instance?

111 / 229

111.

Which three functions are performed by dispatchers in a shared server configuration?
(Choose three.)

112 / 229

112.

Examine the data in the CUST_NAME column of the CUSTOMERS table:

CUST_NAME
----------------------------------
Renske Ladwig
Jason Mallin
Samuel McCain
Allan MCEwen
Irene Mikkilineni
Julia Nayer

6 rows selected.
You want to display the CUST_NAME values where the last name starts with Mc or MC
Which two WHRE clauses give the required result?

113 / 229

113.

Which two statements are true about time zones, date data types, and timestamp data type in an Oracle database?

114 / 229

114.

Which two statements are true about space-saving features in an Oracle Database?

115 / 229

115.

Which two statements are true about Oracle synonyms?

116 / 229

116.

Which three statements are true about roles?

117 / 229

117.

Which two statements are true about the results of using the INTERSECT operator in compound queries? (Choose two.)

118 / 229

118.

Application PDBs, SALES_APP1 and SALES_APP2, must be created and they must access common tables f the
SALES_APP application
Examine these steps:
1 Install the SALES_APP application, including the common tables, in the application rt
2 Install the SALES_APP application in the application rt and the common tables in both the CDB rt and the
application rt
3 Create an application seed
4 Install the SALES_APP application in the application seed
5 Create the SALES_APP1 and SALES_APP2 application PDBs
6 Sync the SALES_APP1 and SALES_APP2 application PDBs with the application rt
7 Sync the SALES_APP1 and SALES_APP2 application PDBs with the application seed
8 Sync the application seed with the application rt

Which are the minimum required steps in the corrects sequence?

119 / 229

119.

Which two are true about a SQL statement using SET operators such as UNION? (Choose
two.)

120 / 229

120.

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.)

121 / 229

121.

. The CUSTOMERS table has a CUST_LAST_NAME column of data type VARCHAR2.
The table has two rows whose CUST_LAST_NAME values are Anderson and Ausson.
Which query produces output for CUST_LAST_NAME containing Oder for the first row and Aus for the second?

122 / 229

122.

Which three statements are true about a self join?

123 / 229

123.

Which two statements are true about space-saving features in an Oracle Database? (Choose two.)

124 / 229

124.

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.
Which query can be used?

125 / 229

125.

Which two statements are true about GLOBAL TEMPORARY TABLES?

126 / 229

126.

Which three actions are ways to apply the principle of least privilege?

127 / 229

127.

Which three statements are true about using SQL*Plus?

128 / 229

128.

Which three statements are true about using SQL*Plus?

129 / 229

129.

Which compression method is recommended for Direct-Path Insert operations

130 / 229

130.

Which two tasks can you perform using DBCA for databases?

131 / 229

131.

Which two actions can you perform using DBCA for an existing database?

132 / 229

132.

Which three statements are true about time zones, date data types, and timestamp data types in an Oracle database? (Choose three.)

133 / 229

133.

Which two statements are true about substitution variables?

134 / 229

134.

Which two statements are true about the SET VERIFY ON command? (Choose two.)

135 / 229

135.

Which three statements are true concerning logical and physical database structures? (Choose three.)

136 / 229

136.

You want to use table compression suitable for OLTP that will: Compress rows for all DML statements on that table Minimize the overheads associated with compression Which compression option is best suited for this?

137 / 229

137.

Which two statements are true about the tools used to configure Oracle Net Services

138 / 229

138.

Which two queries execute successfully?

139 / 229

139.

Which two statements are true about Enterprise Manager Database Express?

140 / 229

140.

Which two statements are true about User Authentication in an Oracle Database?

141 / 229

141.

Which statement is true about the INTERSECT operator used in compound queries?

142 / 229

142.

Examine this command and some partial output:

Why does the DB01.abc.com service show unknown status?

143 / 229

143.

Which three statements are true about sequences in a single instance Oracle database?

144 / 229

144.

Which two statements are true about Enterprise Manager Database Express? (Choose two.)

145 / 229

145.

Which two statements are true about undo and undo tablespaces?

146 / 229

146.

Which two statements are true about Oracle synonyms?

147 / 229

147.

Which two statements are true about Database Instances and Real Application Clusters
(RAC)?

148 / 229

148.

Which two are true about transactions in the Oracle Database?

149 / 229

149.

Which three statements are true about sequences in a single instance Oracle database? (Choose three.)

150 / 229

150.

Which two statements are true about views used for viewing tablespace and datafile information? (Choose two.)

151 / 229

151.

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.

Which query can be used?

152 / 229

152.

Which two statements are true about the PMON background process? (Choose two.)

153 / 229

153.

Which four statements are true regarding primary and foreign key constraints and the effect they can have on table data? (Choose four.)

154 / 229

154.

Examine this command:

Which two statements are true? (Choose two.)

155 / 229

155.

Examine the description of the BOOKS_TRANSACTIONS table:
Name                                      Null?       Type

===========================================   ===========  ==========================

TRANSACTION_ID                             NOT NULL     VARCHAR2(6)

TRANSACTION_TYPE                                       VARCHAR2(3)

BORROWED_DATE                                          DATE

BOOK_ID                                                VARCHAR2(6)

MEMBER_ID                                              VARCHAR2(6)       

Examine this partial SQL statement:

SELECT * FROM books_transactions

Which two WHERE conditions give the same result?

156 / 229

156.

The SALES table has columns PROD_ID and QUANTITY_SOLD of data type NfUMBER
Which two queries execute successfully?

157 / 229

157.

Examine this command:

CREATE UNDO TABLESPACE undotbs01

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.)

158 / 229

158.

Which three statements are true about single-row functions? (Choose three.)

159 / 229

159.

Table EMPLOYEES contains columns including EMPLOYEE_ID, JOB_ID and SALARY. Only the EMPLOYEE_ID column is indexed. Rows exist for employees 100 and 200.

Examine this statement:

Which two statements are true? (Choose two.)

160 / 229

160.

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?

161 / 229

161.

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. Which two statements are true?

162 / 229

162.

You must create a tablespace of non-standard block size in a new file system and plan to use the command:

163 / 229

163.

Examine these SQL statements which execute successfully:

Which two statements are true after execution?

164 / 229

164.

In the ORCL database, UNDOTBS1 is the active undo tablespace with these properties:

1. A size of 100 MB
2. AUTOEXTEND is off
3. UNDO_RETENTION is set to 15 minutes
4. It has RETENTION GUARANTEE
UNDOTBS1 fills with uncommitted undo 10 minutes after the database opens.
What will happen when the next update is attempted by any transaction?

165 / 229

165.

You start your database instance in NOMOUNT state. Which two actions are performed?

166 / 229

166.

Examine the description of the members table:

Examine the partial query:
SELECT city, last__name 1NAME FROM members
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.
Which two clauses must you add to the query?

167 / 229

167.

Examine the description of the PROMOTIONS table:

168 / 229

168.

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. Which query can be used?

169 / 229

169.

Which three statements are true about the Automatic Diagnostic Repository (ADR)?

170 / 229

170.

Which two are benefits of external tables?

171 / 229

171.

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?

172 / 229

172.

You execute this command:

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.)

173 / 229

173.

Which three statements are true about Deferred Segment Creation in Oracle databases?

174 / 229

174.

Which two statements are true regarding the UNION and UNION ALL operators? (Choose two.)

175 / 229

175.

You have been tasked to create a table for a banking application. One of the columns must meet three requirements: Be stored in a format supporting date arithmetic without using conversion functions Store a loan period of up to 10 years Be used for calculating interest for the number of days the loan remains unpaid Which data type should you use?

176 / 229

176.

Which two statements are true about a SQL statement using SET operators such as UNION?

177 / 229

177.

Which three statements are true about table data storage in an Oracle Database? (Choose three.)

178 / 229

178.

Which two statements are true about the DUAL table? (Choose two.)

179 / 229

179.

Which three statements are true about connection strings and service names used to connect to an Oracle database instance?

180 / 229

180.

Examine the description of the PRODUCTS table

Which three queries use valid expressions?

181 / 229

181.

Which two statements are true about table data storage in an Oracle database?

182 / 229

182.

Which three statements are true about the Oracle Data Dictionary? (Choose three.)

183 / 229

183.

Which two statements are true about segment types in an Oracle Database?

184 / 229

184.

Which two statements are true about the PMON background process? (Choose two.)

185 / 229

185.

You need to calculate the number of days from 1st January 2019 until today. Dates are stored in the default format of DD-MON-RR. Which two queries give the required output? (Choose two.)

186 / 229

186.

Which two statements are true about trace files produced by the Oracle Database server?
(Choose two.)

187 / 229

187.

Which three statements are true regarding single row subqueries?

188 / 229

188.

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?

189 / 229

189.

A database is configured to use automatic undo management with temporary undo enabled.
An UPDATE is executed on a temporary table.

Where is the UNDO stored?

190 / 229

190.

Which three statements are true about GLOBAL TEMPORARY TABLES? (Choose three.)

191 / 229

191.

Which compression method is recommended for Direct-Path Insert operations?

192 / 229

192.

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 is the value changed?

193 / 229

193.

Examine these SQL statements which execute successfully:

Which two statements are true after execution?

194 / 229

194.

In your data canter, Oracle Managed Files (OMF) is used for all databases.
All tablespaces are smallfile tablespaces.

SALES_Q1 is a permanent user-defined tablespace in the SALES database

Examine this command which is about to be issued by a DBA logged in to the SALES database:

ALTER TABLESPACE sales_q1 ADD DATAFILE;

Which are two actions, either one of which you could take to ensure that the command executes successfully?

195 / 229

195.

Examine the description of the EMPLOYEES table:

Which query is valid?

196 / 229

196.

You execute this query:
SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE), 'MON'), 'dd "Monday for" fmMonth rrrr') What is
the result?

197 / 229

197.

Which statement is true about database links?

198 / 229

198.

Examine the description of the CUSTOMERS table:

You want to display details of all customers who reside in cities starting with the letter D followed by at least two characters. Which query can be used?

199 / 229

199.

Examine this command and some partial output:

Why does the DB01.abc.com service show unknown status?

200 / 229

200.

Evaluate these commands which execute successfully:

Which two statements are true about the ORD_ITEMS table and the ORD_SEQ sequence? (Choose two.)

201 / 229

201.

Which two queries execute successfully?

202 / 229

202.

Which three statements are true about the DESCRIBE command? (Choose three.)

203 / 229

203.

Which four statements are true regarding primary and foreign key constraints and the effect they can have on table data?

204 / 229

204.

Which two statements are true?

205 / 229

205.

A script abc.sql must be executed to perform a job. A database user HR, who is defined in this database, executes this command: $ sqlplus hr/hr@orcl @abc.sql What will happen upon execution?

206 / 229

206.

Which three Oracle database space management features will work with both Dictionary and Locally managed tablespaces? (Choose three.)

207 / 229

207.

Which three statements are true regarding single row subqueries?

208 / 229

208.

In your data center, Oracle Managed Files (OMF) is used for all databases.
All tablespaces are smallfile tablespaces.
SALES_Q1 is a permanent user-defined tablespace in the SALES database.
Examine this command which is about to be issued by a DBA logged in to the SALES database:
ALTER TABLESPACE sales_q1 ADD DATAFILE;
Which are two actions, either one of which you could take to ensure that the command executes
successfully? (Choose two.)

209 / 229

209.

Which three statements are true about the naming methods and their features supported by
Oracle database used to resolve connection information?

210 / 229

210.

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.
Examine this SQL statement:

What will be the result?

211 / 229

211.

The SALES_Q1 and USERS tablespaces exist in one of your databases and TEMP is a temporary tablespace. Segment creation is not deferred. You execute this command:

Which three statements must be true so that the SALES user can create tables in SALES_Q1? (Choose three.)

212 / 229

212.

Which two statements are true about User Authentication in an Oracle Database?

213 / 229

213.

Table ORDER_ITEMS contains columns ORDER_ID, UNIT_PRICE and QUANTITY, of data type NUMBER. Examine these SQL statements:

Statement 1: SELECT MAX(unit_price * quantity) "Maximum Order" FROM order_items;

Statement 2: SELECT MAX(unit_price * quantity) "Maximum Order" FROM order_items GROUP BY order_id;

Which two statements are true?

214 / 229

214.

Which two statements are true about the WHERE and HAVING clauses in a SELECT
statement? (Choose two.)

215 / 229

215.

Which two statements are true concerning logical and physical database structure:

216 / 229

216.

Which is the default column or columns for sorting output from compound queries using SET operators such as INTERSECT in a SQL statement?

217 / 229

217.

Which three statements are true about connection strings and service names used to connect to an Oracle database instance?

218 / 229

218.

Examine this description of the TRANSACTIONS table:

Which two SQL statements execute successfully? (Choose two.)

 

219 / 229

219.

You currently have an active transaction in your session and have been granted SELECT access to V$TRANSACTION.
Executing:

SELECT xid, status FROM v$transaction;

In your session returns:

XID                              STATUS

=================  ===============

0A0007000A070000   ACTIVE

In which three situations will re-executing this query still return a row but with a different XID, indicating a new transaction as started?

220 / 229

220.

You need to calculate the number of days from 1st January 2019 until today. Dates are stored in the default format of DD-MON-RR.
 

Which two queries give the required output? (Choose two.)

221 / 229

221.

Examine the description of the customers table:

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.
Examine this partial query:
SELECT cust_last_name, cust_credit_limit FROM customers
Which two where conditions give the required result?

 

 

 

222 / 229

222.

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:

Which statement is true?

223 / 229

223.

Which three statements are true about the naming methods and their features supported by Oracle database used to resolve connection information?

224 / 229

224.

Which two statements are true about substitution variables?

225 / 229

225.

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?

 

226 / 229

226.

Which three statements are true about inner and outer joins? (Choose three.)

227 / 229

227.

Which two statements are true about the Oracle Data Dictionary? (Choose two.)

228 / 229

228.

Examine the description of the PRODUCT_STATUS table:

The status column contains the values 'in stock' or 'out of stock' for each row.
Which two queries will execute successfully?

229 / 229

229.

Which statement is true about database links?

Your score is

0%

Please rate this quiz

Related Posts

Oracle Database Administration I 1Z0-082 exam

10: Kiến trúc Multitenant trong Oracle

Kiến trúc Multitenant  trong Oracle Database: là một khái niệm giúp tối ưu hóa việc quản lý và sử dụng nhiều CSDL độc lập trên một hệ…

1.1: [thực hành] Cài đặt Database oracle 19c trên ec2 (aws)

Công cụ cần thiết:  Tài khoản aws putty download tại đây   xming dùng để mở giao diện qua ssh download tại đây Cài đặt:  Sau khi cài…

9: Flashback query database

Flashback query: Là một tính năng trong cơ sở dữ liệu Oracle Database cho phép truy vẫn dữ liệu trong quá khứ. Nó cho phép bạn xem…

8: Undo và Redo trong Oracle

Undo và Redo:  là 2 thành phần quan trọng phục vụ cho việc phục hồi dữ liệu trong Oracle Database. I: Undo Undo là 1 khái niệm…

7: Tablespace trong Oracle Database

Tablespace:  Là một không gian lưu trữ vật lý được cung cấp để tổ chức và quản lý các đối tượng cơ sở dữ liệu như table,…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x