What is a SNAPSHOT ?

Answer Posted / nishi

Snapshots and Materialized view are used interchangeably as both are almost same. However, materialized view is having additional feature of query rewrite which is not in snapshot.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the use of triggers in Java program? I mean where do we use triggers in Java programming?

1705


Explain the difference between sap and oracle?

586


Why should I use oracle database?

581


How to define an anonymous procedure without variables?

557


How to create an oracle testing table?

607






How many anonymous blocks can be defined?

598


How to open and close an explicit cursor in oracle?

583


How to select an oracle system id (sid)?

598


How would you begin to troubleshoot an ORA-3113 error?

1612


How to concatenate two text values in oracle?

603


What is a subquery in oracle?

589


How to assign values to variables?

586


What is a cursor and what are the steps need to be taken?

605


> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?

1581


What is data file?

628