DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: simple question

  1. #1
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    Hi

    a very basic question, when we do any select does Oracle open implicit cursors?

  2. #2
    Join Date
    Jun 2000
    Posts
    417
    According to [url]http://www.fortunecity.com/skyscraper/oracle/699/orahtml/ioug/tunplsql.html[/url] yes. According to memory yes. However I don't know how good either of them are :)

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Yes, any DML statement will open an implicit cursor,
    Jeff Hunter

  4. #4
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    It is always better to write "EXPLICIT CURSOR" rather than a simple SQL statement (implicit cursor).
    In implicit cursor Oracle has to do 2 pass , one for fetching the data and other for checking error.

  5. #5
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    Well I mean normal query, not in PL/SQL. I guess in normal queries all cursosr are implicit

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width