-
-
-
-
-
What are the type of User Exits ?
ORACLE Precompliers user exitsOCI (ORACLE Call Interface)Non-ORACEL user exits. Page :
-
How you will avoid duplicating records in a query?
By using DISTINCT
-
-
What is difference between UNIQUE and PRIMARY KEY constraints?
A table can have only one PRIMARY KEY whereas there can be any number of UNIQUE keys. The columns that compose PK are automatically define NOT NULL, whereas a column that compose a UNIQUE is not automatically defined to be mandatory must also specify the column is NOT NULL.
-
What is a view ?
A view is stored procedure based on one or more tables, it’s a virtual table.
-
What is difference between Rename and Alias?
Rename is a permanent name given to a table or column whereas Alias is a temporary name given to a table or column which do not exist once the SQL statement is executed.
-
What are different Oracle database objects?
TABLESVIEWSINDEXESSYNONYMSSEQUENCESTABLESPACES etc