-
Dual Table
Is Dual Table updatable? If we update, will it impact the health of the database?
-
Adventages of package over standalone procedure
What are the advantages of packages over standalone procedure ?
-
Force View
What is Force View. Why Oracle Give Facility to create force view? What is the use of force View
-
-
-
-
-
What are the components of a PL/SQL block ?
A set of related declarations and procedural statements is called block.
-
-
-
How to update a rows with opposite gender in Sql?
In Emp table there is a column which consists of gender (Male or Female) ? How should one
Can update the Values of Male to Female and Female to Male with a single query ? -
-
What is difference between % ROWTYPE and TYPE RECORD ?
% ROWTYPE is to be used whenever query returns a entire row of a table or view. TYPE rec RECORD is to be used whenever query returns columns of differenttable or views and variables. E.g. TYPE r_emp is RECORD (eno emp.empno% type,ename emp ename %type); e_rec emp% ROWTYPE cursor...
-
-
-
-
Query to retrieve one entire column data
Write a query to retrieve one entire column data of multiple rows into one single column of single row?
What will happen after commit statement ?
Cursor C1 is Select empno, ename from emp; Begin open C1; ...
Ans