InterviewSolution
Saved Bookmarks
| 1. |
What are the PL/SQL cursors? |
|
Answer» Oracle uses workspaces to execute the SQL commands. In other words, when Oracle processes a SQL command, it opens an area in the memory called Private SQL Area. A cursor is an identifier for this area. It allows programmers to name this area and access it’s information. |
|