Filters
Question type

Study Flashcards

The ____________________ keywords are used to make certain any DML operations do not prevent a row from being accessible to the view after the DML operation is executed.

Correct Answer

verifed

verified

Which of the following options will prevent any DML operations from being performed on the underlying table of a view?


A) WITH READ ONLY
B) WITH CHECK ONLY
C) WITH CHECK OPTION
D) NO WRITE OPTION

E) B) and C)
F) C) and D)

Correct Answer

verifed

verified

What is the procedure for assigning new names for the columns that are displayed by a view?


A) The new column names can be listed after the VIEW keyword, enclosed in parentheses.
B) Column aliases can be used in the subquery, and Oracle11g will use the aliases as column names in the view that is created.
C) all of the above
D) none of the above

E) B) and C)
F) B) and D)

Correct Answer

verifed

verified

DML operations on a view created with the ____________________ keyword that is used to suppress duplicate data are not permitted.

Correct Answer

verifed

verified

DML operations are not allowed on a view that includes the pseudo column ____.


A) ROWNUMBER
B) DISTINCTROW
C) ROWNUM
D) NUMROW

E) C) and D)
F) B) and D)

Correct Answer

verifed

verified

Which of the following describes a subquery used in a FROM clause to create a "temporary" table that can be referenced by the SELECT and WHERE clauses of the outer query?


A) simple view
B) complex view
C) inline view
D) "TOP-N" analysis

E) C) and D)
F) A) and C)

Correct Answer

verifed

verified

A(n)  simple ‾\underline { \text { simple } } view can contain a GROUP BY clause. _________________________

A) True
B) False

Correct Answer

verifed

verified

Which of the following describes a type of view that is based on a subquery that retrieves or derives data from one or more tables, and may also contain functions or grouped data?


A) simple view
B) complex view
C) inline view
D) "TOP-N" analysis

E) A) and B)
F) B) and C)

Correct Answer

verifed

verified

Which statement is True about the view created with the following command? CREATE VIEW OR REPLACE outstanding AS SELECT customer#, order#, orderdate, shipdate FROM orders WHERE shipdate IS NULL WITH READ ONLY;


A) The order# of an order cannot be changed through the view.
B) The shipping date of an order cannot be changed through the view.
C) No DML operations are permitted through the view.
D) all of the above

E) A) and D)
F) A) and B)

Correct Answer

verifed

verified

An inline view is created by a SELECT statement that contains a(n) ____________________ in the FROM clause.

Correct Answer

verifed

verified

The UPDATE command cannot be used on a view created with the  WITH CHECK OPTION. ‾\underline {\text { WITH CHECK OPTION. } } . _________________________

A) True
B) False

Correct Answer

verifed

verified

An ORDER BY clause can be included in a(n) ____________________ view to perform "TOP-N" analysis.

Correct Answer

verifed

verified

The OR REPLACE clause is not required if ____.


A) another view does not exist with the same name
B) the view is not based on a group function
C) the view does not contain data from more than one table
D) the CREATE command does not specify the WITH CHECK OPTION option

E) B) and D)
F) All of the above

Correct Answer

verifed

verified

Showing 121 - 133 of 133

Related Exams

Show Answer