Explain temporal data types in oracle
No Answer is Posted For this Question
Be the First to Post Answer
What are cursor?where are they used?
How to create a table index in oracle?
Give the advantages and disadvantages of clusters.
Describe an oracle table?
What are the restrictions in a oracle read only transaction?
Create table Employee ( Employee_Id varchar2(8) Constraint emp_id_pk primary key, FirstName varchar2(50), LastName varchar2(50), DeptID Number(5) Constraint dept_id_fk Foreign Key(DeptId) References Department(DeptId) ) Error I am getting: Constraint specification are not allowed here
how to find full database size
1 Answers BirlaSoft, Consultancy,
What is the minimum client footprint required to connect c# to an oracle database?
Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?
Can you assign multiple query result rows to a variable?
> 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 recover a dropped table in oracle?