Oracle Database SQL — Question 160

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

Answer options

Correct answer: B, E, F

Explanation

The correct answers B, E, and F are true about views in Oracle Database. Option B is correct because views do not store data themselves and thus have no segments. Option E is valid as views can be defined on tables that do not exist at the time of their creation. Option F is true because the data inserted through a view remains in the underlying table even if the view is removed. The other options are incorrect as A implies a restriction that does not exist, C is incorrect because views have an object number, and D is false since views can join tables across different schemas if properly referenced.