how to insert the data through views? The view is depending
upon more than two tables?
how to update materalized views?

Answer Posted / manikanta.srinu

DML Operations also is done by the view,if view have only
one table.For multiple tables in a view,DML operation was
not support.
how to update materalized views?
If ur master table is updated, your materialized view will
automatically get refreshed if ur materialized view is
create with ON COMMIT option. Else, you
have to REFRESH evertime once ur master is
inserted/deleted/updated.

CREATE MATERIALIZED VIEW departments FOR UPDATE AS
SELECT * FROM departmentsworld;

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is pl sql different from sql?

524


What is a data manipulation language?

568


How to run sql statements through the web interface?

503


What is the purpose of normalization?

531


How to get unique records from a table?

514






What are the advantages of sql?

554


Explain the rollback statement?

570


what is recursive stored procedure? : Sql dba

522


What is implicit cursor in pl sql?

534


Explain the uses of control file.

606


can sql servers linked to other servers like oracle? : Sql dba

544


How can get second highest salary in sql?

497


What is trigger explain it?

543


Can you join a table to itself?

533


What is the difference between null value, zero, and blank space?

550