MCQs > IT & Programming > Oracle MCQs > Managing Views, Sequences, And Synonyms MCQs

Managing Views, Sequences, And Synonyms MCQ

In Referencing a Sequence with each new sequence number is generated by a reference to the sequence pseudocolumn?

Answer

Correct Answer: NEXTVAL

Note: This Question is unanswered, help us to find answer for this one

Which is a database objects from which multiple users can generate unique integers?

Answer

Correct Answer: Sequences

Note: This Question is unanswered, help us to find answer for this one

OPTION clause and these statements are not permitted?

Answer

Correct Answer: INSERT Rule

Note: This Question is unanswered, help us to find answer for this one

You cannot use an ALTER VIEW statement to change the definition of a view, you can replace views in the following which of the ways?

Answer

Correct Answer: You can drop and recreate the view And You can redefine the view with a CREATE VIEW statement that contains the OR REPLACE clause

Note: This Question is unanswered, help us to find answer for this one

A sequence is referenced in SQL statements with the NEXTVAL and CURRVAL pseudocolumns, which can be used in the following places


1) VALUES clause of INSERT statements

2) The SELECT list of a SELECT statement

3) The SET clause of an UPDATE statement


Answer

Correct Answer:

 CURRVAL And NEXTVAL


Note: This Question is unanswered, help us to find answer for this one

In UPDATABLE_COLUMNS VIEWS which view Shows all columns in all tables and views accessible to the user that are modifiable?

Answer

Correct Answer: ALL_UPDATABLE_COLUMNS

Note: This Question is unanswered, help us to find answer for this one

To create a private synonym in another user's schema, you must have which privilege from the following?

Answer

Correct Answer: CREATE ANY SYNONYM

Note: This Question is unanswered, help us to find answer for this one

When a view is dropped, all grants of corresponding object privileges are revoked from roles and users. After the view is re-created, privileges must be regranted?

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

You can also create views that specify more than one base table or view in the FROM Clause. These are called join views?

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

The rules for updatable join views in which rule Any INSERT, UPDATE, or DELETE operation on a join view can modify only one underlying base table at a time?

Answer

Correct Answer: GENERAL Rule

Note: This Question is unanswered, help us to find answer for this one