What are cursor?where are they used?

Answers were Sorted based on User's Feedback



What are cursor?where are they used?..

Answer / sohini

Whenever you issue a SQL statement, the Oracle server opens
a SQL work area in memory in which the command is parsed
and executed. This area is called a cursor.There are two
type of cursors:
Implicit Cursor:PL/SQL declares a cursor implicitly for all
SQL data manipulation statements, including queries that
return only one row.PL/SQL manages this cursorautomatically.
Explicit Cursor:The programmer explicitly declares and
names an explicit cursor for queries that return more than
one row.it is managed by the programmer.
Explicit cursors are used when one wants to do some
processing with a set of rows fetched from a table or
multiple table.They are managed using OPEN,FETCH and CLOSE.
4 attributes are used in both types of cursors:%FOUND,%
NOTFOUND,%ROWCOUNT and %ISOPEN.

Is This Answer Correct ?    7 Yes 1 No

What are cursor?where are they used?..

Answer / manvendra

USER DEFINED sql WORK AREA FOR QUERY IS CURSOR.

USED TO STORE RESULT SET PROVIDED BY THE QUERY FOR SHORT
AND TEMP BASIS.

MAIN STATES ARE
CLOSE
OPEN
FETCH

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Oracle General Interview Questions

What is raw datatype in oracle?

0 Answers  


What is Library Cache in Oracle?

0 Answers   MCN Solutions,


How to enter a new row into a table interactively?

0 Answers  


How do we create privileges in oracle?

0 Answers  


Point the difference between translate and replace?

0 Answers  






What is a read write transaction in oracle?

0 Answers  


17. Display the order number and average item cost for each order.

1 Answers   Wipro,


Why does Oracle not permit the use of PCTUSED with indexes?

0 Answers  


What is sharded cluster?

0 Answers  


sql query to get zero records from a table

7 Answers   CTS,


What is Index and different types of Indexes?

7 Answers  


What are the common oracle dba tasks?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)