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 …
1
vote

Oracle - Using Package

To follow up, you might have a standalone like create or replace procedure foo (i_something in varchar2) as begin -- do some stuff; end foo; which you call with …
0
votes

Is there a method in PL/SQL to convert/encode text to XML compliant text?

With respect to Rulas's issue on Oracle Forms, there are a lot of things Forms can't do (in various versions), where you need to use a database package. So write a database PL/SQL function …
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 …
0
votes

Cheque Number problem

If you're on 10g or later you can use regular expressions with an inline view. The inner select is to get only the numeric check numbers. Then converting and using the where clause is easy …
0
votes

default value of a variable at the time of declaration in PL SQL

And another small addition: if you're dealing with BLOBs (or CLOBS), "empty" is not the same as null. See the Oracle large objects manual if you need to. …
0
votes

Call PL/SQL Web Toolkit procedures from Java

htf and htp assume that some things are going to be set up in advance. This is done automatically when the call goes through a PL/SQL gateway like mod_plsql. But it can also be done manually. …
1
vote

Example of Oracle “Instead of” Trigger

Another model, which I've seen used very successfully, is when the application architecture wants to insulate the database design from the front end. And they want to do that on the database side, …
0
votes

Update a newly created row before final commit [Oracle]

The important words in Vincent's response are "your session". A separate session will only see the unmodified data until you commit. That's part of read consistency means. Dependi …
0
votes

In Oracle PL/SQL how do I create a directory on the file system?

I just checked the new docs for database version 11.2, and there's still no routine I can find to create a directory. So, like the other respondents, I recommend using a Java or C routine. …