Search Results

1
vote

Oracle Default Values

You can't assign values to an IN parameter, but you could make them IN/OUT and then set them. That raises a big potential for misuse and confusion, though. So I think you'd do better with …
0
votes

pl/sql Stored procedure… where does the execution time go?

Oracle contains a profiler that will tell you the amount of time spent on each executable statement. dbms_profiler for 10g and earlier, and there's a fancier version (the hierarchical profiler) ava …
1
vote

Calling a web service from Oracle (10g) stored procedure

One issue you may run into: if the service requires SSL, then you'll need to have a certificate available to the database. That generally means having the Advanced Security option and using Oracle …