Tagged Questions

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.

learn more… | top users | synonyms (1)

35
votes
7answers
2k views

Is there a combination of “LIKE” and “IN” in SQL?

In SQL I (sadly) often have to use "LIKE" conditions due to databases that violate nearly every rule of normalization. I can't change that right now. But that's irrelevant to the question. Further, I ...
29
votes
3answers
32k views

Oracle “Partition By” Keyword

Can someone please explain what the "partition by" keyword does and give a simple example of it in action, as well as why one would want to use it? I have a SQL query written by someone else and I'm ...
24
votes
8answers
35k views

Basic differences between Oracle and SQL Server?

I am going on a job interview and have zero experience with MS SQL Server. However I have 1 year with Oracle. Is there such a huge difference between the two? What programming questions can I expect?
19
votes
4answers
497 views

How to eliminate subtype dependency?

In the example below I have written one to_str() function and one set() procedure for every pls_integer subtype. The functions and procedures are almost identical except the type. How I can eliminate ...
17
votes
3answers
776 views

PL/SQL pre-compile and Code Quality checks in an automated build environment?

We build software using Hudson and Maven. We have C#, java and last, but not least PL/SQL sources (sprocs, packages, DDL, crud) For C# and Java we do unit tests and code analysis, but we don't really ...
16
votes
12answers
2k views

Hidden features of PL/SQL

In light of the "Hidden features of..." series of questions, what little-known features of PL/SQL have become useful to you? Edit: Features specific to PL/SQL are preferred over features of Oracle's ...
14
votes
1answer
14k views

Number of rows affected by an UPDATE in PL/SQL

I have a PL/SQL function (running on Oracle 10g) in which I update some rows. Is there a way to find out how many rows were affected by the UPDATE? When executing the query manually it tells me how ...
13
votes
8answers
2k views

Unit testing for PL/SQL

Anyone have any experience or tools for unit testing PL/SQL. The best looking tool I've seen for this seems to be Quests Code Tester, but i'm not sure how well that would integration with continuous ...
12
votes
11answers
355 views

Clear and readable SQL code

I'm writing some SQL code with several subqueries and lots of joins everywhere, both inside the subquery and the resulting table from the subquery. We're not using views so that's out of the question. ...
12
votes
2answers
373 views

Is this a bug in the PL/SQL Compiler?

In our SVN-Code Repository, I came across a package specification that -after removing a few lines- boils down to create or replace package tq84 as return varchar2(10); end tq84; / It seems to ...
11
votes
3answers
486 views

What are the common mistakes pl/sql programmers make with money computation?

Hi there I am looking for common mistakes pl/sql programmers make when they program applications which deals with a lot of monetary computations. (Discounts, tax, rates, etc.) I had been using java ...
11
votes
3answers
167 views

Is there a way to access private plsql procedures for testing purposes?

I'm working on a project with a lot of plsql code and would like to add more specific unit-tests to our codebase. Some of the procedures/functions I like to test aren't in the package spec and I have ...
11
votes
3answers
19k views

Oracle “ORA-01008: not all variables bound” Error w/ Parameters

This is the first time I've dealt with Oracle, and I'm having a hard time understanding why I'm receiving this error. I'm using Oracle's ODT.NET w/ C# with the following code in a query's where ...
11
votes
8answers
3k views

Any Static Code Analysis Tools for Stored Procedures?

Are there any static code analysis tools for stored procedures written particularly in PL/SQL and T-SQL?
10
votes
5answers
187 views

update x set y = null takes a long time

At work, I have a large table (some 3 million rows, like 40-50 columns). I sometimes need to empty some of the columns and fill them with new data. What I did not expect is that UPDATE table1 SET y = ...
10
votes
1answer
328 views

Java Stored Procedure Vs PL/SQL Stored Procedure

In Oracle DBMS, which is better performance, calling a java stored procedure from another pl/sql stored procedure or calling a pl/sql stored procedure from another pl/sql stored procedure. By the way ...
10
votes
3answers
197 views

How to achieve test isolation testing Oracle PL/SQL?

In Java projects, JUnit tests do a setup, test, teardown. Even when mocking out a real db using an in-memory db, you usually rollback the transaction or drop the db from memory and recreate it ...
10
votes
2answers
6k views

Different behavior for REF CURSOR between Oracle 10g and 11g when unique index present?

Description I have an Oracle stored procedure that has been running for 7 or so years both locally on development instances and on multiple client test and production instances running Oracle 8, then ...
10
votes
4answers
6k views

Splitting comma separated string in a PL/SQL stored proc

I've CSV string 100.01,200.02,300.03 which I need to pass to a PL/SQL stored procedure in Oracle. Inside the proc,I need to insert these values in a Number column in the table. For this, I got a ...
10
votes
5answers
27k views

Bulk Insert into Oracle database: Which is better: FOR Cursor loop or a simple Select?

Which would be a better option for bulk insert into an Oracle database ? A FOR Cursor loop like DECLARE CURSOR C1 IS SELECT * FROM FOO; BEGIN FOR C1_REC IN C1 LOOP INSERT INTO BAR(A, ...
10
votes
2answers
3k views

Find out name of PL/SQL procedure

Can PL/SQL procedure in Oracle know it's own name? Let me explain: CREATE OR REPLACE procedure some_procedure is v_procedure_name varchar2(32); begin v_procedure_name := %%something%%; end; ...
9
votes
3answers
184 views

Oracle hierarchical query on non-hierarchical data

I hava data in an Oracle table that is organized as a graph that can contain cycles (see example). CREATE TABLE T (parent INTEGER, child INTEGER) AS select 1 parent, 2 child from ...
9
votes
2answers
184 views

How to implement context based DB auditing?

I have a current DB driven application which has several methods for accessing data. Web Application Direct SQL Access users (I'm trying to remove these) Client Server application Batch inputs and ...
9
votes
6answers
602 views

When should database synonyms be used?

I've got the syntax down but I'm wondering if somebody can provide an illustrative use case where database synonyms are very useful.
9
votes
9answers
7k views

Oracle PL/SQL - tips for immediate output / console printing

I have a number of pl/sql procedures that can take several minutes to run. While developing them, I've added a few print statements to help debug and also provide some feedback and progress ...
9
votes
7answers
3k views

SQL Query to Count() multiple tables

I have a table which has several one to many relationships with other tables. Let's say the main table is a person, and the other tables represent pets, cars and children. I would like a query that ...
9
votes
3answers
2k views

PL/SQL Logging - How to control?

I am looking to introduce a logging framework into our existing Oracle application to replace the use of DBMS_OUTPUT. The framework will be used primarly to aid debugging and would detail such ...
9
votes
10answers
29k views

Oracle to Excel - PL/SQL export procedure

I’m writing pl/sql procedure that exports data from Oracle to Excel. I need data formatting so I can’t use CSV. I’ve already tried with XML but it generates too large files when I want to export e.g. ...
9
votes
5answers
41k views

How to return multiple rows from the stored procedure? (Oracle PL/SQL)

I want to create a stored procedure with one argument which will return different sets of records depending on the argument. What is the way to do this? Can I call it from plain SQL?
8
votes
3answers
243 views

SQL Multi Condition CTE Recursion

I the database i have the 2 following pieces of information for each identifier. The company that controls them, and companies where they have small bits of control. Something along the lines, 2 ...
8
votes
4answers
116 views

Wrong index being used when selecting top rows

I have a simple query, which selects top 200 rows ordered by one of the columns filtered by other indexed column. The confusion is why is that the query plan in PL/SQL Developer shows that this index ...
8
votes
4answers
681 views

How to (unit-)test data intensive PL/SQL application

Our team is willing to unit-test a new code written under a running project extending an existing huge Oracle system. The system is written solely in PL/SQL, consists of thousands of tables, hundreds ...
8
votes
2answers
888 views

PL/SQL Package invalidated

I have a script that makes use of a package (PKG_MY_PACKAGE). I will change some of the fields in a query in that package and then recompile it (I don't change or compile any other packages). I run ...
8
votes
3answers
9k views

Oracle Pl/SQL: Loop through XMLTYPE nodes

I have a XMLTYPE with the following content: <?xml version="1.0"?> <users> <user> <name>user1</name> </user> <user> ...
8
votes
3answers
15k views

How to catch a unique constraint error in a PL/SQL block?

Say I have an Oracle PL/SQL block that inserts a record into a table and need to recover from a unique constraint error, like this: begin insert into some_table ('some', 'values'); exception ...
8
votes
6answers
35k views

UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY

I'm looking for an UPDATE statement where it will update a single duplicate row only and remain the rest (duplicate rows) intact as is, using ROWID or something else or other elements to utilize in ...
8
votes
11answers
10k views

Microsoft T-SQL to Oracle PL/SQL translation

I've worked with T-SQL for years but i've just moved to an organisation that is going to require writing some Oracle stuff, probably just simple CRUD operations at least until I find my feet. I'm not ...
7
votes
2answers
104 views

What type of join is '…where A.ID = B.ID (+)'

I've come across such code which I need to re-write using ANSI Standard and I want to make sure I'm keeping the joins correct. Also, what convention is this? What is the syntax for the other types ...
7
votes
1answer
256 views

Call Oracle object-oriented PL/SQL member procedures from JDBC

In object-oriented PL/SQL, I can add member procedures and functions to types. An example is given here: create type foo_type as object ( foo number, member procedure proc(p in number), member ...
7
votes
1answer
177 views

Suppress PHP warnings for expected Oracle exceptions

I have a PHP function that calls a PL/SQL package that can throw a number of known exceptions (i.e. user exceptions) that I can catch in PHP and act on. The problem is, despite catching the exception ...
7
votes
5answers
328 views

How to inline a variable in PL/SQL?

The Situation I have some trouble with my query execution plan for a medium-sized query over a large amount of data in Oracle 11.2.0.2.0. In order to speed things up, I introduced a range filter that ...
7
votes
1answer
1k views

PLS-00123: program too large (Diana nodes) while trying to compile a package

While compiling a package, I ran into an error message: Error: PLS-00123: program too large (Diana nodes) Line: 1 The package in question has about 1k lines (spec) + 13k lines in body. While ...
7
votes
3answers
688 views

Where can I “practice” PL/SQL

I will be given a job offer by an IT company, and was asked to "look at" PL/SQL since I didn't have much experience with databases. I have an extensive background in C++ among other programming ...
7
votes
2answers
418 views

What's the influence of compiling ORACLE packages with DEBUG

we compile all our Oracle Packages with the DEBUG option enabled. This is the default for our IDE (PLSQLDeveloper). So when we compile a package in the background the following is executed: ALTER ...
7
votes
1answer
152 views

Splitting files in Mercurial and retaining history on both sides

I need to split a number of files and I'm looking for options to retain the full file history in the split-off files. Background... I've inherited a project containing lots of Oracle PL/SQL packages ...
7
votes
4answers
359 views

Convert colums to rows in SQL

I need to write a query which takes rows and converts it into columns - here's my table: Count fname lname id ----------------------------- 1 abc def 20 2 pqr ...
7
votes
6answers
884 views

Oracle (Old?) Joins - A tool/script for conversion?

I have been porting oracle selects, and I have been running across a lot of queries like so: SELECT e.last_name, d.department_name FROM employees e, departments d WHERE ...
7
votes
6answers
516 views

A good reference for Oracle PL/SQL

What are the best references for Oracle PL/SQL? I have an excellent knowlege of SQL-92 and of MS-SQL extensions, but now I'm working with Oracle and I'm struggling to find good references for the ...
7
votes
6answers
23k views

How to redirect the output of DBMS_OUTPUT.PUT_LINE to a file?

I need to debug in pl/sql to figure times of procedures, I want to use: SELECT systimestamp FROM dual INTO time_db; DBMS_OUTPUT.PUT_LINE('time before procedure ' || time_db); but I don't understand ...
7
votes
4answers
9k views

How can I get the number of records affected by a stored procedure?

For INSERT, UPDATE and DELETE SQL statements executed directly against the database, most database providers return the count of rows affected. For stored procedures, the number of records affected is ...

1 2 3 4 5 55