![]() |
|||
|
![]() |
![]() |
|
FULL A - Z Oracle Function Library (formerly named "Morgan's Library")
![]() Term: CLOSE
Definition:
Closing a cursor The last step of working with a cursor is to close the cursor when you are done with it. The basic syntax to CLOSE a cursor is: CLOSE cursor_name; For example, if you are using a cursor with the name "cursor_x", you would close it using this command: CLOSE cursor_x; Closing a database link Database links should be closed when no longer in use. To close a link, issue the following statement, where link_name refers to the name of the link: ALTER SESSION CLOSE DATABASE LINK <link_name>; Note that this statement only closes the links that are active in your current session. Related Links: Related Code Snippets:
|
![]() |
Home | Search | Code Library | Sponsors | Privacy | Terms of Use | Contact Us | © 2003 - 2025 psoug.org |