which statement is running fastly ie insert or delete?
Answer Posted / sandep
it is delete
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How to change system global area (sga) in oracle?
What is the implicit cursor in oracle?
How to select some rows from a table in oracle?
ur a sql devoloper...what is the process in ur company for finding the database BUGS .. seperate DB testers are there? or devr.s are manage? if DB TESTERS in there what is the process
what is the difference between restoring and recovering?
What is the order of defining local variables and sub procedures/functions?
What happens to indexes if you drop a table?
Explain what are the characteristics of data files?
Can I create users through internet explorer in oracle 10g?
> 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 parameterized cursor in oracle?
How many types of database triggers exist?
How to drop a tablespace?
How to view all columns in an existing table?
What does sharding mean?