Submitted Questions

  • Materialised View

    what is difference between a table and a materialised view, a view and a materialised view?

    Pooja

    • May 12th, 2016

    Materialised views do not have the same rowid as that of the actual table wherease views have the same rowid.
    Materialised views are faster because indexing can be applied since the result is stored in a db unlike view which is a logical query executed everytime.

    sonali Kumari

    • Jan 15th, 2016

    Unlike views, however, materialized views also store the results of the query in the database. However the rowids for the table and the view are identical, indicating the view returns the exact same ...

  • Lookup Transformation

    Performance wise which is better connected or unconnected lookup transformation?

    priya

    • Jan 13th, 2016

    Connected and unconnected lookup depends on scenarios and performance. If you are looking for a single value for look up and the value is like 1 in 1000 then you should go for unconnected lookup. Perf...