

InterviewSolution
Saved Bookmarks
1. |
In Oracle, which of the following package procedure is UNRESTRICTED ?(a) CALL_INPUT(b) CLEAR_BLOCK(c) EXECUTE_QUERY(d) USER_EXITThis question was addressed to me during an interview.Question is taken from Programmatic Oracle Structures in chapter Oracle Database 11g Architecture Options of Oracle |
Answer» <html><body><p>The correct choice is (d) USER_EXIT<br/><br/>To explain I would say: A user exit is a C subroutine and called by <a href="https://interviewquestions.tuteehub.com/tag/oracle-12831" style="font-weight:bold;" target="_blank" title="Click to know more about ORACLE">ORACLE</a> Forms to do special-purpose processing.It can <a href="https://interviewquestions.tuteehub.com/tag/display-25607" style="font-weight:bold;" target="_blank" title="Click to know more about DISPLAY">DISPLAY</a> messages on the Oracle Forms status line, <a href="https://interviewquestions.tuteehub.com/tag/get-11812" style="font-weight:bold;" target="_blank" title="Click to know more about GET">GET</a> and set field <a href="https://interviewquestions.tuteehub.com/tag/values-25920" style="font-weight:bold;" target="_blank" title="Click to know more about VALUES">VALUES</a>, do high-speed computations and table look-ups, and manipulate Oracle <a href="https://interviewquestions.tuteehub.com/tag/data-25577" style="font-weight:bold;" target="_blank" title="Click to know more about DATA">DATA</a>.</p></body></html> | |