Is a rollback possible to any savepoint?
No Answer is Posted For this Question
Be the First to Post Answer
acname actype amount ac1 credit 300 ac2 credit 4000 ac1 debit 4000 ac2 debit 455 ac1 credit 500 how to get sum of credit and sum of debit for each account
What is sequence?
What is a cognitive schema?
How to define an oracle cursor variable?
How to Remove the 3rd highest salary person record from table?
What are the uses of linked server and explain it in detail?
1. Display all the rows and columns in the CLIENT table. Sort by client name in reverse alphabetical order.
which sql command we can use to get a print out from oracle?
Can we create index on views?
19 Answers CTS, Syntel, TCS,
How to handle a single quote in oracle sql?
Explain a segment?
> 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?