1)what is the difference between view and materilized view?
2)what is the difference between delete and truncate?
3)what is the difference between migration and upgration?
4)what is the difference between RMAN HOT BACKUP and normal
hot backup?
Answer Posted / praveen hattikal
1)views , Materialized view or summary tables are subset of
a table filtering out uninteresting rows and columns.The
difference is that views are logical where as MV's are
actual tables.Views pulls real time data when ever queried
but data in MV is rfereshed based on users need.also when
you query a materialized view, you are querying a table,
which may also be indexed. In addition, because all the
joins have been resolved at materialized view refresh time,
you pay the price of the join once (or as often as you
refresh your materialized view), rather than each time you
select from the materialized view .Materialized views are
most often used in data warehousing / business intelligence
applications where querying large fact tables with
thousands of millions of rows would result in query
response times that resulted in an unusable.
2)
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What do you understand by data independence? What are its two types?
Can you explain the 'between' clause?
What are the different types of keys in the database?
Explain types of indexing in dbms?
Is the server accepting tcp ip connections on port 5432?
How is foreign key commands related to primary key?
Explain armstrong rules? How they are complete and/or sound?
Can videos be stored in a database?
What is view dbms?
Write down the differences between nosql and rdbms?
How many types of database languages are?
What is concurrency control?
What are the four objectives of the selection of a data type?
What is a database in business?
What is natural key?