Explain the use of indexes option in exp command.
No Answer is Posted For this Question
Be the First to Post Answer
How do you find current date and time in oracle?
What are triggers in oracle?
What is Hash Index?
Why do you create or replace procedures rather that drop and recreate.
what is difference between table and view? where to use views? thanks in advance!
HI, Please let me know the syllabus for Oracle OCA and OCP Certification
what is the syntax of INSERT command?
> 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?
Whether Oracle satisfy more codd rules or db2 satisfy more codd rules? How meny of each can satisfy ? Please answer me. Advance thanks
How to create id with auto_increment on oracle?
Give SQL Query to find the number words in a sentence ? ex: 'ram charan singh' then ans:3
after installatio of ORACLE 8i, work properly, but after restarting the system, it throw an error ORA 01034: ORACLE not availble