From the database level, how can you tell under which time
zone a database is operating?
Post New Answer View All Answers
What is the sql query to concatenate column values from multiple rows in oracle?
In Oracle Clinical 4.5.0, can the VIEW_TEMPLATE_ID column in DATA_EXTRACT_VIEWS table contain NULL value?
Whats the benefit of dbms_stats over analyze?
> 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 language does oracle use?
How to drop a stored function?
Explain the difference between a procedure and a function?
Explain the use of grant option in imp command.
Explain integrity constraints?
Explain the use of ignore option in imp command.
Design database draw er diagram for a certain scenario ?
Compare and contrast between sql and sql server and explain its various functions?
What are the built-in functions used for sending Parameters to forms ?
How to use "while" statements in oracle?
How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?