Search found 53125 matches

by ray.wurlod
Fri Jun 20, 2008 12:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Discrepancy in length of a column in Dataset definition
Replies: 2
Views: 769

Re-check the job that originally created the Data Set.
by ray.wurlod
Fri Jun 20, 2008 12:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to free memory occupied by C++ routine
Replies: 3
Views: 1223

Space allocated to variables local to the routine should be freed. Or you might be able to use static variables.
by ray.wurlod
Thu Jun 19, 2008 10:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating in wuery in Orcae stage
Replies: 2
Views: 1643

Please also endeavour to choose meaningful subject lines, to assist future searchers.
by ray.wurlod
Thu Jun 19, 2008 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Re-generating sequence numbers within list
Replies: 7
Views: 2517

The Sort stage is perfect to use if the data are already sorted. Specify the sort mode property as "don't sort, already sorted". This prevents DataStage from inserting a tsort operator into the step (= job).
by ray.wurlod
Thu Jun 19, 2008 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim ' and "
Replies: 3
Views: 1112

Does backslash work as a quote character? If so you can have

Code: Select all

Convert(\'"\,\\,InLink.TheColumn)
by ray.wurlod
Thu Jun 19, 2008 9:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Drop on Input'
Replies: 6
Views: 2955

Can you try Final Delimiter = "End" ?
by ray.wurlod
Thu Jun 19, 2008 9:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicated entries although using RemoveDuplicates stage
Replies: 10
Views: 3995

Relating to "duplicates coming out of Remove Duplicates" stage, no-one seems to have picked up on the possibility that the data are not partitioned on the keys used to identify duplicates. This would cause the symptom described.
by ray.wurlod
Thu Jun 19, 2008 9:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequence issue
Replies: 7
Views: 2967

Or just click the Help button or press F1 when next on that page.
by ray.wurlod
Thu Jun 19, 2008 9:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File reading error
Replies: 3
Views: 2349

You have specified a delimiter that is not in the data. DataStage has given up searching for the first occurrence of the delimiter, having not found one in the first 100000 bytes of data.
by ray.wurlod
Thu Jun 19, 2008 12:42 am
Forum: IBM QualityStage
Topic: DataStage QualityStage 7.5.1 Installation Problem
Replies: 7
Views: 3364

Not off the top of my head. Right now I am working with version 8, not version 7. You should be able to find all this information in the installation manuals.
by ray.wurlod
Thu Jun 19, 2008 12:41 am
Forum: IBM QualityStage
Topic: From ODBC File definitions is not enabed
Replies: 8
Views: 1928

Is this Oracle 9i data source the one from which you wish to import table definitions? (I don't have QS version 7 right now, am working with version 8, so all this has to be from memory.) Is the ODBC DSN a user DSN or a system DSN ?
by ray.wurlod
Thu Jun 19, 2008 12:38 am
Forum: IBM QualityStage
Topic: Error in INV stage in QS server7.5.1.
Replies: 4
Views: 1436

Is this the same machine as the one on which you are experiencing the installation problem? If the pattern file (which is the source data for the frequency reports) is being produced, then I can think of no reason other than badly-installed software that the frequency reports are not being produced....
by ray.wurlod
Thu Jun 19, 2008 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Re-generating sequence numbers within list
Replies: 7
Views: 2517

This is the correct approach, and requires also that the data are partitioned and sorted by state.
by ray.wurlod
Thu Jun 19, 2008 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wrong Documentation in DS help ??
Replies: 2
Views: 869

Test a bit further, and find that the documentation is incomplete rather than wrong. It should include "if the field number is greater than 1".
Field(Mystring, "/", 1) ;* returns the entire string.
Field(Mystring, "/", 2) ;* returns "".
by ray.wurlod
Wed Jun 18, 2008 8:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select query
Replies: 2
Views: 808

Is DATA a reserved word in your database? Is "DATA" a nullable column in this table?