Answer Posted / poonam
The system hides certain details of how data is stored and created and maintained
Complexity should be hidden from database users.this is data abstraction
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Why packages are used in oracle?
How to view existing locks on the database?
What is a named program unit?
How to define a variable of a specific record type?
How to run queries on external tables?
What are temporal data types in oracle?
How to update values on multiple rows in oracle?
What is a package ? What are the advantages of package ?
What is instant client oracle?
> 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?
What is a system tablespace and when it is created?
What is recovery manager in Oracle?
What is oracle latest version?
How do I find the database name in oracle?
Can multiple columns be used in group by in oracle?