Search found 15603 matches

by ArndW
Thu Feb 14, 2008 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extract only "DIGITS" from a string?
Replies: 3
Views: 923

I'm not a place where I can check the functions, but I think this particular one and it's functionality is missing in PX. If you just have lowercase characters to worry about, you can use CONVERT('abcdefghijklmnopqrstuvwyz,'',In.Column) Add uppercase and punctuation to that list if necessary...
by ArndW
Thu Feb 14, 2008 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning in transformer
Replies: 27
Views: 8375

Since you seem to be overlooking what Craig and I posted, you will have to wait to see if Ray responds.
by ArndW
Thu Feb 14, 2008 7:28 am
Forum: General
Topic: Regarding UV Database
Replies: 5
Views: 1412

The "EVAL" performs a function and is compiled at the time the SELECT is issued, the two first lines are the output of that compilations of the 2 EVALs in the command. @RECORD<14,1> means "get the value of the 14th field in each record of the select.
by ArndW
Thu Feb 14, 2008 6:13 am
Forum: General
Topic: isnull() function is not working for a NULL field
Replies: 2
Views: 1076

A text file won't contain NULL values and you cannot trim a CHAR column. Either set a column default value or check for empty using a derivation such as 'IF Trim(In.Column)=""' which will create a temporary VarChar as the result of the trim() function. Or check for the correct number of spaces, i.e....
by ArndW
Thu Feb 14, 2008 6:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting Sequence value
Replies: 3
Views: 978

The number of input columns needs to match the number of columns declared in the SQL, so you need to remove the ADDR_KEY column from you input tabs and then shift the relative columns numbers over by 1, i.e. add a :1 and remove the :23
by ArndW
Thu Feb 14, 2008 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Export
Replies: 3
Views: 1254

I assume that you mean incremental backups in a project, where a subsequent backup only saves those jobs which have changed or been added since the last backup. The mechanisms that support automated backups of DataStage unfortunately do not have such a capability. It is possible, through use of the ...
by ArndW
Thu Feb 14, 2008 5:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning in transformer
Replies: 27
Views: 8375

Hmmm... could be in the write to sequential. Please put in a constraint "1=2" in your transform stage, recompile and re-run to see if the error remains the same or goes away. Also, how much data / how many rows are you writing?
by ArndW
Thu Feb 14, 2008 3:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we call a parallel job in a Batch server Job.
Replies: 13
Views: 3115

From a sequence all you need is the Job Activity stage, and there is no difference there in how the jobs are called.
by ArndW
Wed Feb 13, 2008 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Stage which supports both Input and output links?
Replies: 3
Views: 1137

Yes, many active stages like the transform and copy stages support both input and output links. The passive stage functionality you are referring to with server jobs does not exist in Parallel jobs. The "other" link in these stages is, where allowed, always a reject link in PX jobs.
by ArndW
Wed Feb 13, 2008 10:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenating multiple rows from the same column
Replies: 11
Views: 4792

Mark_e - just remember to add a dummy line to the data so that the last and final group change is detected, otherwise your output will be missing one or more lines.
by ArndW
Wed Feb 13, 2008 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem loading a parallel routine in the transfomer
Replies: 5
Views: 1612

Since "convert" is already a function, perhaps choosing another name might help.
by ArndW
Wed Feb 13, 2008 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 17
Views: 3976

<sigh> The DataStage value is an empty string. DataStage doesn't care about data types so accepts that value. When that is being written to your Database it won't accept that invalid date, hence it uses NULL. You need to fix your derivation so that it results in a valid date in the correct format. Y...
by ArndW
Wed Feb 13, 2008 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a Complex Flat File
Replies: 4
Views: 1815

I read this one while it was still in the PX forum. It has migrated through osmosis....
by ArndW
Wed Feb 13, 2008 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX install on Windows
Replies: 11
Views: 4620

Craig - I based my post on that statement as well, since you cannot compile a transform stage without a correctly installed C++ compiler in PX jobs. If the simple job had a transform and compiled then it must have been a server one.
by ArndW
Wed Feb 13, 2008 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 17
Views: 3976

Are you talking about a NULL or an empty string? The former, in Server, can only occur if the input is already NULL!