Can a Tablespace hold objects from different Schemes ?
Answer Posted / orawhiz
yeah
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
11. Display the client number and name and the client number and name of the person who referred that client.
What is an oracle?
How to delete multiple rows from a table in oracle?
Explain temporal data types in oracle
what is difference between sql plus and sql*plus? (not sql and sql plus).
What is coalesce function?
What is concurrency in oracle?
How to use subqueries in the from clause 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?
What are the oracle built-in data types?
how to make an oracle object
How i can handle exception in large code like 1000 line without distrubing the code or without exception handler sction?
Explain the use of show option in imp command.
How to create a new table in your schema?
Explain a private synonyms?