3
votes
Performance of dynamic SQL vs stored procedures on Oracle
Oracle never needed stored procedures for cached plans, so that's why there's not much said about it. The primary performance benefit for stored procedures is cursor caching. The assumption is that …
0
votes
Failed to execute stored procedure in different database?
You should provide more information.
At least, are these 'basic' datatypes (NUMBER, DATE, VARCHAR2, etc) or do you have exotic ones (XMLTYPE, geo, user defined types ?)
use SQL*Plus, connect to the …
3
votes
Oracle/PLSQL performance
In 10g and above, there is an 'optimizing compiler'.
In 11g, it will do "subprogram …
0
votes
pl/sql Stored procedure… where does the execution time go?
What does the procedure do ?
One possible explanation may be DBMS_OUTPUT.
If, on SQL*Plus, you do a SET SERVEROUTPUT ON, after a statement has executed, the client does a 'behind-the-scenes' fetch …
2
votes
Oracle Date field - Time issues
Not clear on what datetime you want in the database, or what the application is passing.
Assume the user's PC is telling him it is Tuesday, 12:30am, and the clock on the Db server is saying …
1
vote
Is there a better way to debug “wrong number or types of arguments in call” errors?
Overloading and DEFAULT values for missing parameters may help. You create a dummy procedure similar to the following :
procedure xxx (p_1 IN VARCHAR2 DEFAULT NULL, p_2 IN VARCHAR2 …
2
votes
ODP.Net Stored Procedure performance issues on large datasets.
Worth studying up on the Oracle Wait Interface.
I'd suspect network latency is killing you. The procedure is returning a pointer to the result set. At some point in your loop I would guess you are …
1
vote
trigger in oracle stored procedure
Firstly you will not "capture the entire resultset in ref cursors", a ref cursor is a pointer to a result set. In effect, what you are returning is a query that will (or technicall …
