5
votes
5answers
2k views
Consuming web services from Oracle PL/SQL
Our application is interfacing with a lot of web services these days. We have our own package that someone wrote a few years back using UTL_HTTP and it generally works, but needs some hard-coding o …
0
votes
2answers
1k views
Validating XML files against schema in Oracle PL/SQL
I have a requirement to validate an incoming file against an XSD. Both will be on the server file system.
I've looked at dbms_xmlschema, but have had issues getting it to work.
Coul …
0
votes
1answer
800 views
Importing extended ASCII into Oracle
I have a procedure that imports a binary file containing some strings. The strings can contain extended ASCII, e.g. CHR(224), 'à'. The procedure is taking a RAW and converting the BCD bytes into ch …
1
vote
2answers
133 views
Killing an Oracle job. 10g specific
We're using a job scheduling system that runs on top of DBMS_JOB. It uses a master job to create one-time jobs. We deploy the same set of jobs to all our clients, but can specify which jobs should …
0
votes
What is the dual table in Oracle?
DUAL is necessary in PL/SQL development for using functions that are only available in SQL
e.g.
DECLARE
x XMLTYPE;
BEGIN
SELECT xmlelement("hhh", 'stuff')
INTO x
FROM dual;
…
