Search found 53125 matches

by ray.wurlod
Thu Oct 20, 2011 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Length
Replies: 3
Views: 1850

So, can you have 2774389000000 in a Decimal(15,4) field?
by ray.wurlod
Thu Oct 20, 2011 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Length
Replies: 3
Views: 1850

Decimal(15,4) has a total of 15 significant digits. Four of these are to the right of the decimal point, which means you can have a maximum of 11 to the left of the decimal point.
by ray.wurlod
Thu Oct 20, 2011 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Integer Conversion
Replies: 2
Views: 2977

Yes. Just use regular constraint expressions in the Transformer.
by ray.wurlod
Thu Oct 20, 2011 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Idiot proof delimiter Char
Replies: 0
Views: 1444

You do sometimes get the section mark in text pasted from Word documents. I prefer one of the Control Set 0 characters, such as Ctrl+A (which is Char(1) in DataStage) or Ctrl+Y (which is Char(25) in DataStage).
by ray.wurlod
Thu Oct 20, 2011 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in the Oracle enterprise stage
Replies: 3
Views: 1177

That's just how the interaction with Oracle with NLS enabled works. Depending on version specify four times or three times the actual number of characters in the metadata. Or use a specific string_from_ustring specification to effect the transfer.
by ray.wurlod
Thu Oct 20, 2011 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem using sparse lookup
Replies: 1
Views: 1568

Are you sure you've configured sparse lookup correctly? This signal is associated with memory. Could there be a NULL being returned but the receiving column is defined a Nullable=No?
by ray.wurlod
Thu Oct 20, 2011 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap allocation error - ODBC stage
Replies: 6
Views: 2451

How wide are your rows? There is a configurable maximum number of bytes per row - from memory it's 8192. There's also a configurable maximum number of columns per row - from memory that one is 400. Exceeding either of these might cause a heap allocation error.
by ray.wurlod
Thu Oct 20, 2011 2:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: previous date
Replies: 6
Views: 2496

TimestampFromSecondsSince() function with an offset of -86400 should also work.
by ray.wurlod
Thu Oct 20, 2011 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data getting set to zero
Replies: 9
Views: 3936

You might try sorting the source so that the non-empty values appear first.

Otherwise run the file through a script (or a stage) that appends a dummy 21st column that is always populated.
by ray.wurlod
Thu Oct 20, 2011 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to create group enable transaction in ODBC STAGE.
Replies: 3
Views: 1796

The ODBC stage must have multiple inputs. Once that has been done a check box should become enabled allowing you to specify grouped transaction (if I recall correctly).
by ray.wurlod
Thu Oct 20, 2011 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Error
Replies: 7
Views: 2417

This is possibly a memory error. Can you provided sorted data to the Aggregator stage? If not, you can tune the size of the memory table used by the Aggregator stage.
by ray.wurlod
Thu Oct 20, 2011 2:40 pm
Forum: General
Topic: Unable to view log file
Replies: 8
Views: 2029

Can you view the sequence log from the Director client?
by ray.wurlod
Thu Oct 20, 2011 2:39 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Infosphere Analyzer
Replies: 2
Views: 1973

The product (which is called Information Analyzer, incidentally) imposes no limits. Your operating system may. Also be aware that the Information Analyzer database needs to be sized appropriately - recommendation is four to five times the volume of data to be profiled.
by ray.wurlod
Wed Oct 19, 2011 11:56 pm
Forum: General
Topic: Notification activity error
Replies: 5
Views: 1670

My guess is that your email system doesn't allow attachments as large as 16 MiB. Most don't.
by ray.wurlod
Wed Oct 19, 2011 11:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage to Use
Replies: 5
Views: 1888

Each output link from the Transformer has three columns. The first is mapped directly from the ORDER_ID column. The second is derived - differently on each link - as a constant, one of the four remaining column headings, perhaps with case adjusted (GROUND --> "Ground"). The third is mapped...