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 role of replication server in sybase.
Where the sql logs gets stored? : sql server database administration
> 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?
How to delete duplicate rows in sql server?
What is the difference between NOROW and LOCKROW?
Why we use join in sql?
Explain the select statement in sql?
What do you understand by unique key?
What is a trace frag? Where do we use it?
What if we write return in procedure?
How to get a list of columns using the "sys.columns" view in ms sql server?
How do I connect to pgadmin server?
What is Normalization and its different forms?
What happens if null values are involved in comparison operations?
What is a mysql model?