Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288) Explain the truncate in oracle?
What is regex in mysql?
How would you design a database for an online site, which would average a million hits a day?
how to return query output in html format? : Sql dba
How replication works in mongodb?
Is sql and mysql same?
What is the difference between stored procedure and functions?
What is 2nf and 3nf?
Is mysql is a programming language?
What is report rendering ?
What is materialized view. What are different methods of refresh?
What is the use of commit?
What is the maximum no of columns a table can have?
How to generate create procedure script on an existing stored procedure?
> 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?