Difference between views and materialized views?
Answer Posted / guru
View: View is a virtual table, a query attached to it.
Actually it have not Stored query results. It will execute
and returns rows.
A materialized view is a database object that contains the
results of a query. They are local copies of data located
remotely, or are used to create summary tables based on
aggregations of a table's data. Materialized views, which
store data based on remote tables are also, know as
snapshots.A materialized view can query tables, views, and
other materialized views. Collectively these are called
master tables (a replication term) or detail tables (a data
warehouse term)
| Is This Answer Correct ? | 29 Yes | 0 No |
Post New Answer View All Answers
How do I view an execution plan in sql?
Why do we go for stored procedures?
How to read xml file in oracle pl sql?
How to get unique records from a table?
What is minus?
What is bulk collect in pl sql?
Why is a primary key important?
What is difference between sql function and stored procedure?
Define select, insert, create, delete, update, drop keywords
How to write a query to show the details of a student from students table whose
How do you use collections in procedure to return the resultset?
How many triggers can be applied to a table?
Hi how to import oracle sequence in Informatica? Please write stored procedure code that will import oracle sequence in Informatica SP transformation as per below scenario Oracle table product list Pro_id, pro_name 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights Now a new flat file with new product list needs to be added to oracle table product list with oracle sequence. flat file product Prono,pro_name, 1, 20 watt tube light 2, 30 watt tube light & target should be like 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights. 104, 20 watt tube light 105, 30 watt tube light thks reg suvarna joshi suvarnaatsuvarna@rediffmail.com
What are sql functions? Describe in brief different types of sql functions?
What are the most important characteristics of pl/sql?