-
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?
-
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?
-
What is PL/SQL ?
PL/SQL is a procedural language that has both interactive SQL and procedural programming language constructs such as iteration, conditional branching.
-
What is a cursor ? Why Cursor is required ?
Cursor is a named private SQL area from where information can be accessed. Cursors are required to process rows individually for queries returning multiple rows.
-
How to get max value from different columns of a table ?
Suppose Input table is COL1 COL2 COL 3A 1 -3B -2 6c 3 -4D 9 10In sql query I want the desired output as follows COL1 COL nA 1B 6C 3D 10Please write the query to get this output
-
-
-
-
-
-
-
Function return more than one value
Hi,My questions is " Can function return more than one value".I have gone through the all answers relevant to my question was been posted earlier. But all answers are confusing me.Few people said directly that function can't return more than one value and few are telling that function can return more that one value using OUT parameter or ref cursor.My understanding is if out can't use as a parameter...
-
Cursor Advantages and Disadvantages
What are the uses of Cursor?
What are its advantage and disadvantage? -
Debugging Dynamic SQL
What is the best technique of debugging large and fragmented dynamic SQL.
PL/SQL Interview Questions
Ans