What is schema?
Answer Posted / manmeet singh
schema is like a object of ur database
like
tables,view,procedures,function..
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What do you mean by merge in oracle?
How can you tell how much space is left on a given file system and how much space each of the file systems subdirectories take-up?
How to load data through external tables?
How to convert a date to char in oracle? Give one example.
What are the built-in functions used for sending Parameters to forms ?
20. Using a set operator, display the client number of all clients who have never placed an order.
Explain the use of Merge statement in oracle 11g
How will you write a query to get a 5th rank student from a table student_report?
Is it possible to insert comments into sql statements return in the data model editor ?
What are the numeric comparison operations?
What is the difference between a hot backup and a cold backup in oracle?
When do you get a .pll extension in oracle?
How to count groups returned with the group by clause in oracle?
What are the differences between blob and clob in 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?