What is Materialized View? In What Scenario we Use
Materialized View?
Answer Posted / thanigesan.m
view is a virtual table that doesn't exist in rdbms,it is
associated with the SELECT statement materialized is also same
like the view but it exist in rdbms.
we use materialized view
e.g if we r having a table with 4 columns
empno ename sal comm
33 xxxy 1000 234
we can create a materialized view as totalsal by sum that 2
columns....
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is sql*loader?
define join and explain different type of joins? : Sql dba
Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?
What is microsoft t sql?
Is sql considered coding?
Explian rowid, rownum? What are the psoducolumns we have?
Is sql a microsoft product?
Hi am new to PLSQL & facing problems in writing code like in SP, Functions, so any one having some SP coding with in depth explanation please share with me my Email ID suvarnaatsuvarna@rediffmail.com Or taking tanning on this please do contact me
Why stored procedure is faster than query?
Is sql similar to python?
What is the benefit of foreign key?
Can we use ddl statements in stored procedure?
What is varchar sql?
What is hibernate and its relation to sql?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this