Oracle Database Administration I — Question 7

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

Answer options

Correct answer: A, F, G

Explanation

Statement A is correct because views can indeed be updated without requiring a re-grant of privileges. Statement F is true as deleting from a view defined with a GROUP BY clause will lead to an error since the operation cannot be unambiguously mapped to the underlying table. Statement G is also correct because the WITH CHECK clause is designed to restrict certain rows from being inserted or updated based on the defined criteria, while the other statements do not accurately describe the behavior of views.