What is a subquery in oracle?
Explain cascading triggers.
12 RULES OF RDBMS
What is the function of Redo Log ?
What are set operators?
From the following identify the non schema object: packages, triggers, public synonyms, tables and indexes.
What is an oracle recycle bin?
Explain the concept of the DUAL table.
How do we know whether an index is created on a table ???
How to speed up webrick?
5. Display full details from the ORDER_LINE table where the item number is (first condition) between 1 and 200 (no > or < operators) OR the item number is greater than 1000 AND (second condition) the item cost is not in the list 1000, 2000, 3000 OR the order number is not equal to 1000.
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
Explain oracle’s system global area (sga).