Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Explain what Is The Function Of Open Cursor Command?
Home
PL/SQL
Explain what Is The Function Of Open Cursor Command?
0
votes
asked
Mar 11, 2021
in
PL/SQL
by
Robindeniel
Explain what Is The Function Of Open Cursor Command?
#open-cursor-command
cursor-command
plsql-open-cursor
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 11, 2021
by
Robindeniel
The following operations occur when the OPEN cursor command is executed for a cursor:
Memory area for processing is allocated
The SELECT statement is parsed
The input variables are assigned the values by obtaining the memory addresses
The active set of rows that fulfill the select criteria are identified
The pointer is set just before the first row of the active set
...