Test your skills through the online practice test: SQL Quiz Online Practice Test

Related differences

Ques 126. What is CYCLE/NO CYCLE in a Sequence?

CYCLE specifies that the sequence continue to generate values after reaching either maximum or minimum value. After pan-ascending sequence reaches its maximum value, it generates its minimum value. After a descending sequence reaches its minimum, it generates its maximum.
NO CYCLE specifies that the sequence cannot generate more values after reaching its maximum or minimum value.

Is it helpful? Add Comment View Comments
 

Ques 127. What are the advantages of VIEW?

To protect some of the columns of a table from other users.
- To hide complexity of a query.
- To hide complexity of calculations.

Is it helpful? Add Comment View Comments
 

Ques 128. Can a view be updated/inserted/deleted? If Yes - under what conditions?

A View can be updated/deleted/inserted if it has only one base table if the view is based on columns from one or more tables then insert, update and delete is not possible.

Is it helpful? Add Comment View Comments
 

Ques 129. If a view on a single base table is manipulated will the changes be reflected on the base table?

If changes are made to the tables and these tables are the base tables of a view, then the changes will be reference on the view.

Is it helpful? Add Comment View Comments
 

Ques 130. Which of the following statements is true about implicit cursors?

1. Implicit cursors are used for SQL statements that are not named.
2. Developers should use implicit cursors with great care.
3. Implicit cursors are used in cursor for loops to handle data processing.
4. Implicit cursors are no longer a feature in Oracle.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users: