Search found 53125 matches

by ray.wurlod
Fri Aug 15, 2008 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal values mismatch between Sybase and XML file
Replies: 2
Views: 1215

Floating point numbers can not be accurately represented in computers. There are hundreds of papers out there explaining why. ODBC drivers typically treat floating point numbers as decimal, applying some kind of function to fix the number of decimal places according to the metadata. It's perhaps a "...
by ray.wurlod
Fri Aug 15, 2008 5:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine
Replies: 2
Views: 1146

Keep a dynamic array of link names that you have processed and only process if the name is not already on the list. This approach will not be appropriate if your job has duplicate link names. * Initialization LinksProcessed = "" * Have we seen this link already (it connects two active ...
by ray.wurlod
Fri Aug 15, 2008 5:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass header and trailor to the output
Replies: 8
Views: 4464

Different job, same logic but different Format in the Sequential File stage that reads the file. Delimiter can not be a job parameter. Rather than parsing the fields out of a single string, they will now be parsed automatically for you.
by ray.wurlod
Fri Aug 15, 2008 5:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Statistics in designer With Oracle database
Replies: 4
Views: 1850

No idea. What does your job log tell you about the connection?

Unless you are using Oracle for the XMETA common metadata repository, Oracle connections and performance statistics should be completely unrelated.
by ray.wurlod
Fri Aug 15, 2008 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Statistics in designer With Oracle database
Replies: 4
Views: 1850

No idea. What does your job log tell you about the connection?
by ray.wurlod
Fri Aug 15, 2008 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2 Char year - YY Conversion
Replies: 9
Views: 3794

With the century break correctly set, %yy for year in the date format string should yield the desired results when you have two-digit years.
by ray.wurlod
Fri Aug 15, 2008 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to load oracle table
Replies: 3
Views: 1509

What does /appsdb/lvoradb09/opt/IBM/InformationServer/Server/Scratch/ora.6396.205060.0.log tell you?
by ray.wurlod
Fri Aug 15, 2008 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

(a) If you're trying to display fields from the hashed file itself omit the word DICT from the query. In what sense do you mean "fail"? (b) (i) Correct (b) (ii) Incorrect. Without a mask data will "wrap around" in the column when a report is generated. The mask truncates the data, not the field widt...
by ray.wurlod
Fri Aug 15, 2008 4:58 pm
Forum: General
Topic: DSXchange code library?
Replies: 1
Views: 874

It's planned for DSXchange version 3.0, which is currently in beta.

IBM DeveloperWorks forum allows for attachments (not quite the same thing).
by ray.wurlod
Fri Aug 15, 2008 4:54 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Close Comman in ODBC Enterprise
Replies: 1
Views: 1728

ProfileStage?

Moderator: please move to Parallel forum
by ray.wurlod
Fri Aug 15, 2008 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Field in Fixed Width Sequential File
Replies: 5
Views: 2544

Whatever you specify (as Null Field Value) for a field in a fixed width sequential file must have the correct number of characters for that field. If null comes in out of your job, it will be converted to that value as the row is being exported to the file.
by ray.wurlod
Fri Aug 15, 2008 6:09 am
Forum: General
Topic: How Many Legs does an Octopus Have?
Replies: 0
Views: 752

How Many Legs does an Octopus Have?

You might be surprised by the answer!
by ray.wurlod
Fri Aug 15, 2008 4:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparison of number of input rows vs number of output rows
Replies: 3
Views: 1084

There IS an Aggregator stage in server jobs. It should be in the Processing section of your Palette. You can also drag it from the Server\Processing category under Stage Types in the Repository. You can also do counts using a Transformer stage. Indeed it does them for you, via the @INROWNUM and @OUT...
by ray.wurlod
Fri Aug 15, 2008 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error within sequence
Replies: 6
Views: 3759

Do you have a TRUNCATE option available in IQ ? This is a very fast way to delete all rows from a table. If so, you can run it as the Pre-insert command (Properties tab on Inputs page).