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

Explain the difference in execution of triggers and stored procedures?

0 Answers  


what are numeric data types? : Sql dba

0 Answers  


What sql database should I use?

0 Answers  


What does rownum mean in sql?

0 Answers  


What is the difference between left join and right join?

0 Answers  






What is a stored procedure in sql with example?

0 Answers  


Can a table contain multiple primary key’s?

0 Answers  


what is sql optimization

1 Answers   Fidelity,


How to test for null values?

0 Answers  


How many types of normalization are there?

0 Answers  


What are different types of sql commands?

0 Answers  


Name three sql operations that perform a sort.

0 Answers  


Categories