I am a bit rusty on my cursor lingo in PL/SQL. Anyone know this?
|
|
An implicit cursor is one created "automatically" for you by Oracle when you execute a query. It is simpler to code, but suffers from
Example
An explicit cursor is one you create yourself. It takes more code, but gives more control - for example, you can just open-fetch-close if you only want the first record and don't care if there are others. Example
|
|||||||||||||
|
|
An explicit cursor is defined as such in a declaration block:
an implicit cursor is implented directly in a code block:
|
|||
|
|
|
An explicit cursor is one you declare, like:
An implicit cursor is one created to support any in-line SQL you write (either static or dynamic). |
|||
|
|
|
In answer to the first question. Straight from the Oracle documentation
|
|||
|
|
|
With explicit cursors, you have complete control over how to access information in the database. You decide when to OPEN the cursor, when to FETCH records from the cursor (and therefore from the table or tables in the SELECT statement of the cursor) how many records to fetch, and when to CLOSE the cursor. Information about the current state of your cursor is available through examination of the cursor attributes. See http://www.unix.com.ua/orelly/oracle/prog2/ch06_03.htm for details. |
|||
|
|
|
Google is your friend: http://docstore.mik.ua/orelly/oracle/prog2/ch06_03.htm
|
|||
|
|
|
These days implicit cursors are more efficient than explicit cursors. http://www.oracle.com/technology/oramag/oracle/04-sep/o54plsql.html http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1205168148688 |
|||
|
|
|
A cursor is a SELECTed window on an Oracle table, this means a group of records present in an Oracle table, and satisfying certain conditions. A cursor can SELECT all the content of a table, too. With a cursor you can manipulate Oracle columns, aliasing them in the result. An example of implicit cursor is the following:
With FOR ... LOOP... END LOOP you open and close the cursor authomatically, when the records of the cursor have been all analyzed. An example of explicit cursor is the following:
In the explicit cursor you open and close the cursor in an explicit way, checking the presence of records and stating an exit condition. |
|||
|
|
|
1.CURSOR: When PLSQL issues sql statements it creates private work area to parse & execute the sql statement is called cursor. 2.IMPLICIT: When any PL/SQLexecutable block issues sql statement. PL/SQL creates implicit cursor and manages automatically means implcit open & close takes place. It used when sql statement return only one row.It has 4 attributes SQL%ROWCOUNT, SQL%FOUND, SQL%NOTFOUND, SQL%ISOPEN. 3.EXPLICIT: It is created & managed by the programmer. It needs every time explicit open,fetch & close. It is used when sql statement returns more than one row. It has also 4 attributes CUR_NAME%ROWCOUNT, CUR_NAME%FOUND, CUR_NAME%NOTFOUND, CUR_NAME%ISOPEN. It process several rows by using loop. The programmer can pass the parameter too to explicit cursor.
|
||||
|
|
|
Implicit cursors require anonymous buffer memory. Explicit cursors can be executed again and again by using their name.They are stored in user defined memory space rather than being stored in an anonymous buffer memory and hence can be easily accessed afterwards. |
||||
|
|
|
Every SQL statement executed by the Oracle database has a cursor associated with it, which is a private work area to store processing information. Implicit cursors are implicitly created by the Oracle server for all DML and SELECT statements. You can declare and use Explicit cursors to name the private work area, and access its stored information in your program block. |
|||
|
|
|
Implicit cursor returns only one record and are called automatically. However, explicit cursors are called manually and can return more than one record. |
||||
|
|
|
Explicit... cursor foo is select * from blah; begin open fetch exit when close cursor yada yada yada don't use them, use implicit cursor foo is select * from blah; for n in foo loop x = n.some_column end loop I think you can even do this for n in (select * from blah) loop... Stick to implicit, they close themselves, they are more readable, they make life easy. |
|||
|
|
protected by Justin Cave Jul 17 '12 at 4:24
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.