PL/SQL (Procedural Language/Structured Query Language) is Oracle Corporation's procedural language extension for SQL. Questions about PL/SQL should probably be tagged "oracle" as well.
3
votes
2answers
87 views
More concise and more efficient way of finding the value in SQL (PL/SQL) Stored Proc
I have a PL/SQL Stored Procedure which searches for a row in 3 different tables (not all columns are the same). The logic goes as follows:
...
1
vote
2answers
89 views
5
votes
2answers
227 views
Attempting to optimize (or rewrite) a PL/SQL query
I am currently trying to improve on a query that is being used to build a view. The query is in PL/SQL, in an Oracle database. There are 3 different types of reports (100,200, and 300) that are ...
3
votes
1answer
108 views
XML schema for Database Unit Tests
I am attempting to develop an XML schema (XSD) to represent a set of unit tests for some code. (Specifically, I am testing Oracle PL/SQL stored procedures.)
I would like to have something that ...
3
votes
2answers
714 views
Oracle PL/SQL decryption function breaking index?
I have a package called pkg_crypto.
My select looks like this:
...
1
vote
2answers
5k views