Answer Posted / o.nagamani
View is a virtual storage of the original table.It is the
one kind of data hiding.
Advantages of View:
1. Restrict Data Access and/or simplify data access.
2. Simplify Data manipulation.
3. Import and Export data.
4. Merge Data.
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
> 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?
Can you drop an index associated with a unique or primary key constraint?
What is oracle in java?
What happens if the imported table already exists?
How to open and close an explicit cursor in oracle?
types of indexes and the rationale behind choosing a particular index for a situation.
What is a cognitive schema?
What is an oracle?
what is a Nested Loop join?
How to use "in out" parameter properly?
What suggestions do you have to reduce the network traffic?
Explain about achiever in sql?
what is the use of system.effective.date variable in oracle?
How can we find out the duplicate values in an oracle table?
What is a table index?