What cursor type do you use to retrieve multiple recordsets?
Answers were Sorted based on User's Feedback
Answer / guest
cursor <<cursorname>> is select * from <<table name>>
Is This Answer Correct ? | 55 Yes | 16 No |
This ans opt for Oracle DB
---------------------------
SYS_REFCURSOR. this is what we called Explicit cursor.
In database if u run any sql statement by default system
will create a cursor. its called "Implicit cursor".
But in PL/SQL, we r using SYS_REFCURSOR to manupulate the
multiple records. that is called Explicit cursor.
Is This Answer Correct ? | 15 Yes | 5 No |
Answer / venkat
using explict cursor we process multiple rows
syn:
cursor <cur_name> is select * from <tab_name>
Is This Answer Correct ? | 3 Yes | 0 No |
how to create object in plsql
name 3 ways to get an accurate count of the number of records in a table? : Sql dba
What is pl sql quora?
Why select is used in sql?
Do we need to rebuild index after truncate?
What is sqlca in powerbuilder?
what is bcp? When is it used?
Is coalesce faster than isnull?
hi,i plan to put experience on PLSQL ,can anyone suggest me for any institutes in bangalore or how to prepare for interviews
What is the limitation on the block size of pl/sql?
What is a constraint? Tell me about its various levels.
What are the PL/SQL Statements used in cursor processing ?