What is the difference between view and materialised view?

Answers were Sorted based on User's Feedback



What is the difference between view and materialised view?..

Answer / sindhu

View - store the SQL statement in the database and let you
use it as a table. Every time you access the view, the SQL
statement executes.
Materialized view - stores the results of the SQL in table
form in the database. SQL statement only executes once and
after that every time you run the query, the stored result
set is used. Pros include quick query results

Is This Answer Correct ?    14 Yes 0 No

What is the difference between view and materialised view?..

Answer / anju

materialized view can be used to precalculate the expensive
joins and aggregates prior to execution and the result is
stored in a table in database and can refer to it in
future. the adv of this is increse in performance.
view is nothing but an sql query stored. it will not store
data in tables

Is This Answer Correct ?    5 Yes 0 No

What is the difference between view and materialised view?..

Answer / atiric sofrware(raja)

Views contains query whenever execute views it has read from
base table
Where as Materialised views loading or replicated takes
place only once which gives you better query performance

Refresh materialised views
1.on commit
2. on demand
(Complete, never, fast, force)

Is This Answer Correct ?    2 Yes 0 No

What is the difference between view and materialised view?..

Answer / praveen kumar pendekanti

In view if we do any operation that may be changes in table
and viveversa.View dont have memery allocation.if we create
a view as 'v1' on emp table and then we delete the emp
table there by 'v1' name will be exist in view list, but
data will not be there, if we create the emp table once
again it will automatically link to that 'v1'view.

But in the case of M.views the changes that made in table
cannot be seen in M.view.M.views have separate memery
allocation if we delete the table the M.view will be there.
M.view is read only view,D.D.L oerations are not possible
on this M.view. M.view are used in dataware housing.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Informatica Interview Questions

in source one table is there. id value --- ------ 1 a 2 b 3 c 1 d 2 e 1 f in target i want id value ---- ------ 1 a,d,f 2 b,e 3 f How to implement it in informatica without using normalizer transformation?

2 Answers   IBM,


what is the dashbords?

1 Answers   IBM,


What is a look up function? What is default transformation for the look up function?

2 Answers   ASM, TCS,


how to return multiple columes through through un-connect lookup?

1 Answers   DELL,


hOW CAN WE DELETE A RECORD OR TRUNCATE IN TARGET TABLE USING SQL T/R ?

4 Answers  






in a table it has 200 rows the query is select 150 from tablename.whats the output

2 Answers   Cap Gemini,


If my source is having 30 million records, so obviously the cache could not be allocated with sufficient memory. What needs to be done in this case?

2 Answers   TCS,


To Provide Support For Mainframes Source Data, which Files Are Used As A Source Definitions?

0 Answers   Informatica,


if we r using aggregator we enabled sorted input but the records r not sorted what happen?

7 Answers   HSBC,


I have source table 100 records after run session successfully but loads the target table 50 records only what happened that 50 records and how can i load remaining 50 records

5 Answers   Patni,


without update strategy how to insert &update?

1 Answers   DELL,


Separate from a database, an information bazaar, and an information stockroom?

0 Answers  


Categories