What are benefits of view?
- What is the purpose of view?
- What is view and its uses?
- What are the advantages and disadvantages of a view in a database?
- What is the advantage of view in Oracle?
What is the purpose of view?
Views are generally used to focus, simplify, and customize the perception each user has of the database. Views can be used as security mechanisms by letting users access data through the view, without granting the users permissions to directly access the underlying base tables of the view.
What is view and its uses?
A view is nothing more than a SQL statement that is stored in the database with an associated name. A view is actually a composition of a table in the form of a predefined SQL query. A view can contain all rows of a table or select rows from a table.
What are the advantages and disadvantages of a view in a database?
What are the advantages and disadvantages of views in a database?Views doesn't store data in a physical location.View can be use to hide some of the columns from the table.Views can provide Access Restriction, since data insertion, update and deletion is not possible on the view.
What is the advantage of view in Oracle?
View is a virtual table which provides the access to subset of columns from one or more base tables. A view does not need any storage for the data as it is fetching the data from the base tables. View hides the SQL coding complexity even though the view definition SQL statement has multiple joins or unions etc.
Related Questions
-
Anonymous2 weeks ago
Expert answer2 weeks ago -
Anonymous2 weeks ago
Expert answer2 weeks ago -
Anonymous2 weeks ago
Expert answer2 weeks ago -
Anonymous2 weeks ago
Expert answer2 weeks ago -
Anonymous2 weeks ago
Expert answer2 weeks ago -
Anonymous2 weeks ago
Expert answer2 weeks ago -
Anonymous2 weeks ago
Expert answer2 weeks ago