what is the scripts in data base?
No Answer is Posted For this Question
Be the First to Post Answer
i deleted 4 records form the table.after i have applied commit .now i want to get back those records.how?
Explain integrity constraint?
What is the relation of a user account and a schema?
How to check the server version in oracle?
What is a initialization parameter file in oracle?
Explain table?
What is an oracle and why it is used?
In my table i have 4 columns with 100 records but in that 4 columns one column contains all NULL values so can i add NOT NULL CONSTRAINT on that column......... ok if it is not possible, can i add NOT NULL CONSTRAINT from 101 Record Onwards?
> 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?
Is it possible to enter only time value into a column of a table in sql?
What are the different types of trigger and explain its various uses and functions?
what is Table ?