-
Display your name 10 times in PL/SQL
Write a PL/SQL anonymous block with exception handling to print your name 10 times?
-
Is it possible to use Transaction control Statements such a ROLLBACK or COMMIT in Database Trigger ? Why ?
It is not possible. As triggers are defined for each table, if you use COMMIT of ROLLBACK in a trigger, it affects logical transaction processing.
-
-
-
-
Package Function
You have a package called A and one function in that packgae called XYZ.If you need to call that function in second packaged B, How will you call?
-
-
-
-
-
Deleting Duplicate Keys
How to delete duplicate Keys through PL-SQL in single query.
-
What is Simple Cursor? and What is Parametrized cursor?
Explain what is Simple Cursor and What is Parameterized Cursor? And Difference between both??
-
How to get 1st date of a month ?
During preparation of report in *.RDF , there are two things on date & to date
on date is the i/p value , but to date = 1st day of this month on date
how ? -
Dual Table
Is Dual Table updatable? If we update, will it impact the health of the database?
-
-
-
What is a cursor for loop ?
Cursor for loop implicitly declares %ROWTYPE as loop index,opens a cursor, fetches rows of values from active set into fields in the record and closeswhen all the records have been processed. eg. FOR emp_rec IN C1 LOOP salary_total := salary_total +emp_rec sal; ...
Ans