2
votes
2answers
30 views
External Tables vs SQLLoader
So, I often have to load data into holding tables to run some data validation checks and then return the results.
Normally, I create the holding table, then a sqlldr control file a …
1
vote
6answers
64 views
oracle pl/sql bug: can’t put_line more than 2000 characters
Has anyone else noticed this phenomenon where dbms_output.put_line is unable to print more than 2000 characters at a time?
Script is:
set serveroutput on size 100000;
declare
…
0
votes
3answers
31 views
PL/SQL Query with Variables
I have a fairly complex query that will be referencing a single date as a start or stop date multiple times throughout. I'm going to have to run this query for 3 different fiscal y …
1
vote
3answers
57 views
+100
Oracle Lab DB Design (Pipeline Functions?)
Main Goal: Query the database to determine what the lab technician should do next.
What I am trying to accomplish
I am designing a laboratory database where each of the following …
0
votes
3answers
16 views
PL/SQL key-value String using Regex
I have a String stored in a table in the following key-value format: "Key1☺Value1☺Key2☺Value2☺KeyN☺ValueN☺".
Given a Key how can I extract the Value? Is regex the easiest way to h …
0
votes
1answer
17 views
PL/SQL to Select a Partition Window of Data
Working with Oracle 11g here.
I'm trying to figure out how to write a specific query against a sample table below:
ID TYPE PRIORITY STATUS DATE
------------------------- …
2
votes
2answers
76 views
question about pl/sql exception
hi all.
the following text is an excerpt of oracle documentation Oracle® Database PL/SQL Language Reference 11g Release 1 (11.1) :
Unhandled exceptions can also affect
subpr …
1
vote
1answer
38 views
SELECTing user with earliest time and joining with other data
I have an Oracle database where I'm trying to select a user field from the earliest row (based on a time field) where certain conditions are met, and I don't know how to do it. He …
1
vote
3answers
46 views
collapsing NULL values in Oracle query
I often write queries wherein I pivot data and end up with NULL values that I want to collapse. E.g. data like the following:
id time_in time_out
1 2009-11-01
…
1
vote
2answers
34 views
Any problem with renaming Oracle constraints directly in the user_constraint table?
Using Oracle 10g, I need to rename a bunch of FK constraints which all end in LITE to include an FK prefix.
My thinking was (I've ensured all names are short enough to accommodate …
1
vote
3answers
55 views
question about pl/sql stored program text
hi all.
I use TOAD to do my PL/SQL development. In TOAD when i type a procedure name and press f4, I can see this procedure's source code. I think TOAD get the source code from v$s …
5
votes
8answers
140 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 …
3
votes
3answers
26 views
how can the PL/SQL datatype BINARY_INTEGER materialized as Java types?
What would be the datatype in java equivalent to the PL/SQL datatype BINARY_INTEGER?
1
vote
2answers
47 views
Resetting an Associative array in PL/SQL?
This is one of those "there's gotta be a better way" questions. Let me set up the problem, then I'll give you my hacked solution, and perhaps you can suggest a better solution. Tha …
1
vote
3answers
129 views
PL/SQL - Optional conditions in where-clause - without dynamic sql?
I have a query where not all conditions are necessary. Here's an example of what it looks like when all conditions are used:
select num
from (select distinct q.num
from cqq …
