What is the effect of setting the value "all_rows" for optimizer_goal parameter of the alter session command? What are the factors that affect optimizer in choosing an optimization approach?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between primary key & foreign key?
57 Answers CTS, Infosys, La Multi, Sparsh, Wipro,
How to write a query with an inner join in oracle?
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?
without using count(*) and rownum how can we count total record in a table
How to set a transaction to be read only in oracle?
Respected sir, Please send me technical questions related to oracle apps..
Draw E-R diagram for many to many relationship ?
How would you edit your CRONTAB to schedule the running of /test/test.sh to run every other day at 2PM?
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?
What are internal user account in oracle?
what is the exact diiference between DBMS and RDBMS