What is pragma restrict_reference in oracle 9i?When we use
this?Give me one realtime scenario?
Answers were Sorted based on User's Feedback
Answer / bhaskar gouda
First of all ,it is a compiler directive,This is introduced
to avoid the side affect of the function in a package .it
comes in 4 flavors.RNDS,WNDS,RNPS,WNPS.
each out of the above 4 can be implemented against the
packaged function.
If you want the function not to alter the contents of any
database table than you can use WNDS.similarly if you want
the function not to read the contents of any database table
you can use RNDS.If you want the function not to alter any
variables within another package than you can use WNPS.If
you want the packaged function not to read the variables
within another package than you can use RNPS.
Thanks-Bhaskar Gouda
| Is This Answer Correct ? | 35 Yes | 2 No |
Answer / shail
Obsolete in 10g and onwards. Oracle take care at its own.
The reply from Raphael Fernandes is misleading. This type
of misleading replies can cost a interview of a candidate.
Request all to not reply if you are not sure.
| Is This Answer Correct ? | 22 Yes | 0 No |
Answer / m.nihar
The RESTRICT_REFERENCES pragma asserts that a user-defined subprogram does not read or write database tables or package variables.Subprograms that read or write database tables or package variables are difficult to optimize, because any invocation of the subprogram might produce different results or encounter errors.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raphael fernandes
pragma restrict_reference is used to associate a user
defined exception to an oracle error. Whenever the
associated error occurs in the pl/sql code, the exception
is raised implicitly by Oracle.
| Is This Answer Correct ? | 3 Yes | 65 No |
How to manage transaction isolation level?
Is oracle a language?
Can a field be used in a report without it appearing in any data group ?
Calculate difference between 2 date / times in oracle sql?
WHAT IS THE DIFFERENCE BETWEEN PRIMARY KEY(PK) CONSTRAINT AND UNIQUE KEY(UK) + NOT NULL(NN) CONSTRAINT ASSIGN TO A COLUMN ? INSTEAD OF ASSIGNING PK ,WE CAN ASSIGN UK + NN TO A COLUMN. WHAT ARE THE MARRITS AND DEMARITS BETWEEN THE ABOVE TWO?THE ABOVE TWO ARE SAME,THEY DON'T ALLOW DUPLICATE AS WELL AS NULL VALUES.
after installatio of ORACLE 8i, work properly, but after restarting the system, it throw an error ORA 01034: ORACLE not availble
what is the syntax of SELECT command?
How to list all tables in your schema?
What are a cluster and non-cluster index?
how to find out second largest value in the table
Is it possible to set second Primary Key Constraint in a table in Oracle Database ?
What spfile/init.ora file parameter exists to force the CBO to make the execution path of a given statement use an index, even if the index scan may appear to be calculated as more costly?