Answer Posted / vishwajeet chaudhary
delete table_name where row_no=1
| Is This Answer Correct ? | 0 Yes | 9 No |
Post New Answer View All Answers
how to clone 9i Database on to 10g Database.
what is the need of indexing topic in oracle? where do we use in a Java project? any other option other than using this to get the same result where we use indexing ?
What is connection pooling in oracle?
List out the types of joins.
What is connection pool in oracle?
How to delete a column in an existing table in oracle?
Explain the use of consistent option in exp command.
What does sharding mean?
What is a subquery?
What is catalog in Oracle?
what happened to the global index when I truncate the data in one of the partition?
What do you mean by a deadlock?
what is insert all statement in sql
> 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 is a initialization parameter file in oracle?