What privilege is needed for a user to create tables in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
How to retrieve data from an cursor to a record?
What are the system predefined user roles?
12. Display the client name in upper case only and in lower case only.
Using the relations and the rules set out in the notes under each relation, write statements to create the two sequence generators specified in the notes.
What is pragma restrict_reference in oracle 9i?When we use this?Give me one realtime scenario?
How to write numeric literals 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 factors causing the reparsing of SQL statements in SGA?
Differentiate the standard purchase order,Blanket purchase agreement,Contract purchase agreement,Planned purchase order?
Explain user account with reference to oracle.
How to load data from external tables to regular tables?
What is primefaces used for?