What cursor type do you use to retrieve multiple recordsets?

Answers were Sorted based on User's Feedback



What cursor type do you use to retrieve multiple recordsets? ..

Answer / chandrasekar

Explicit cursor

Is This Answer Correct ?    81 Yes 7 No

What cursor type do you use to retrieve multiple recordsets? ..

Answer / sdp

Explicit cursor

Is This Answer Correct ?    43 Yes 1 No

What cursor type do you use to retrieve multiple recordsets? ..

Answer / guest

cursor <<cursorname>> is select * from <<table name>>

Is This Answer Correct ?    55 Yes 16 No

What cursor type do you use to retrieve multiple recordsets? ..

Answer / sri

Im sorry..sys_refcursor. can be used to pass cursors from
and to a stored procedure.

Normally we r using. CURSOR cursor_name IS SELECT...
So this is called explicit cursor.

Is This Answer Correct ?    19 Yes 1 No

What cursor type do you use to retrieve multiple recordsets? ..

Answer / rao

Using REF CURSOR only

Is This Answer Correct ?    20 Yes 6 No

What cursor type do you use to retrieve multiple recordsets? ..

Answer / sri

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

What cursor type do you use to retrieve multiple recordsets? ..

Answer / guest

explicit cursor

Is This Answer Correct ?    12 Yes 3 No

What cursor type do you use to retrieve multiple recordsets? ..

Answer / pintu

It can be used Using REF CURSOR only.

Is This Answer Correct ?    11 Yes 3 No

What cursor type do you use to retrieve multiple recordsets? ..

Answer / vishu

SYS_REFCURSOR

Is This Answer Correct ?    12 Yes 4 No

What cursor type do you use to retrieve multiple recordsets? ..

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

Post New Answer

More SQL PLSQL Interview Questions

What are aggregate and scalar functions?

0 Answers  


Can we rollback truncate?

0 Answers  


What is sql indexing?

0 Answers  


How to move files from one directory to another in pl sql?

0 Answers  


What are local and global variables and their differences?

0 Answers  






Can we use commit or rollback in trigger? If yes, then how. Please explain with a suitable example?

5 Answers   HSBC,


How to take user input in pl sql?

0 Answers  


How do you create an update query?

0 Answers  


How do you bind variables in pl sql?

0 Answers  


What do you know by pl/sql cursors?

0 Answers  


why we go for package? what are the advantages of using instead of seperate procuderes or functions

3 Answers   IBM, TCS,


What are the built in functions of sql?

0 Answers  


Categories