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?

Answers were Sorted based on User's Feedback



1)what is the difference between view and materilized view? 2)what is the difference between delete..

Answer / praveen hattikal

2)Truncate is a DDL command, which has autocommit hence
cant be rolled back where as delete is DML with user commit
& roll back option. Truncate is faster then delete since it
wont store any data to backup tablespace. before delting.

Is This Answer Correct ?    8 Yes 0 No

1)what is the difference between view and materilized view? 2)what is the difference between delete..

Answer / 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

More Database Management Interview Questions

Is it good to save image in database?

0 Answers  


What is the use of CONSISTENT (Ver 7) option in EXP command ?

1 Answers  


What are the three types of databases?

0 Answers  


What are the steps to follow when preparing to create a table?

0 Answers  


What are the four objectives of the selection of a data type?

0 Answers  






What is maintaining database?

0 Answers  


Which free database is best?

0 Answers  


what is dba_segment

4 Answers  


I have one Excel file with 80,000 Records. Now I need to load that whole file into Oracle Database with same columns in Excel sheet . How can i do that?

3 Answers  


How to monitor firebird server activity?

0 Answers  


What is the best database to use?

0 Answers  


Explain the difference between two and three-tier architectures.

0 Answers  


Categories