PRAGMA SERIALLY_REUSABLE
PRAGMA SERIALLY_REUSABLE --============================================ PRAGMA :- a. It signifies that the statement is a pragma (compiler directive). b. Pragmas are processed at compile time, not at run time. c. They do not affect the meaning of a program, they simply convey information to the compiler. PRAGMA SERIALLY_REUSABLE in ORACLE:- a. The pragma SERIALLY_REUSABLE indicates that the package state is needed only for the duration of one call to the server b. After “ PRAGMA SERIALLY_REUSABLE” call, the storage for the package variables can be reused, reducing the memory overhead for long-running sessions. c. If a package has a spec and body, you must mark both. You cannot mark only the body. d. Serially reusable packages cannot be accessed from database triggers or other PL/SQL subprograms that are called from SQ...