Search found 53125 matches

by ray.wurlod
Tue Nov 22, 2011 4:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character set conversion in DataStage job
Replies: 3
Views: 5462

In general, no. The only yes is where the character sets are compatible and, even then, you may need Oconv(string,NLSmapname) type conversions for non-numeric data. What character set are you using on the DataStage input? Do you have any locale-related specificities, such as date formats, currency, ...
by ray.wurlod
Mon Nov 21, 2011 10:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC files
Replies: 2
Views: 973

Yes. You have a "read as EBCDIC" property in the Sequential File stage, or you can use the Complex Flat File stage for files with complex structures, such as repeating groups or multiple record types.
by ray.wurlod
Mon Nov 21, 2011 10:36 pm
Forum: General
Topic: How to Protect/Unprotect multiple projects
Replies: 17
Views: 4945

Version 8.7 has a lot more command line "stuff", including that one.
by ray.wurlod
Mon Nov 21, 2011 5:58 pm
Forum: General
Topic: How to Protect/Unprotect multiple projects
Replies: 17
Views: 4945

... then you have to do them one by one. :cry:
by ray.wurlod
Mon Nov 21, 2011 4:09 pm
Forum: General
Topic: How to Protect/Unprotect multiple projects
Replies: 17
Views: 4945

What exact version are you running?
by ray.wurlod
Mon Nov 21, 2011 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to split a delimited string into rows?
Replies: 9
Views: 13532

Parse the comma-delimited field into separate columns using Transformer stage then use Pivot stage.
by ray.wurlod
Mon Nov 21, 2011 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grouping Logic - How to Re-group similar records
Replies: 1
Views: 832

This is an ideal situation for using QualityStage.
by ray.wurlod
Mon Nov 21, 2011 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: configuraion file
Replies: 1
Views: 702

What do you mean by "2*2" and "2*1"?

The answer to your question 1 is "Yes".

The answer to your question 2 is the number of different fastname property values in the configuration file. More than one indicates MPP.
by ray.wurlod
Sat Nov 19, 2011 2:49 am
Forum: General
Topic: Why Universe is not available in PX ?
Replies: 5
Views: 1504

Not really. If you're working in the account there is LISTF. LISTFL will list just those that are local to the account.
by ray.wurlod
Fri Nov 18, 2011 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Limitation to the number of columns?
Replies: 2
Views: 1118

I'm not aware of any limit. Certainly I've seen over 2000 columns per row.
by ray.wurlod
Fri Nov 18, 2011 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage - Maximum length of a column
Replies: 8
Views: 7689

You *could* identify them with @INROWNUM but you're not really interested in the row number - all you're interested in is "this row" and "the previous row".
by ray.wurlod
Fri Nov 18, 2011 2:14 pm
Forum: General
Topic: Why Universe is not available in PX ?
Replies: 5
Views: 1504

One of the reasons UniVerse was chosen originally for storing objects is that there is no hard and fast requirement for every record to have the same structure. This remains the case in the UniVerse-derived DataStage engine, and is particularly true in the DS_JOBOBJECTS table. For example a "pi...
by ray.wurlod
Fri Nov 18, 2011 2:11 pm
Forum: General
Topic: DataStage job failed with return code : 269
Replies: 12
Views: 9455

Options -wait and -jobstatus are mutually antagonistic. Try removing the -wait option from the dsjob command,
by ray.wurlod
Fri Nov 18, 2011 2:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query reg. Update records
Replies: 9
Views: 1920

Insert then update tries to insert then, if that fails because the row exist, issues an update. Update then insert tries to update then, if that fails because the row does not exist, issues an insert. Choose the one that best meets your requirements - if there will be more inserts than updates prefe...
by ray.wurlod
Fri Nov 18, 2011 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage - Maximum length of a column
Replies: 8
Views: 7689

It can easily be done in the Transformer stage.
Simply calculate the length in the current record and compare with the length in the previous record. If it's smaller, update the min. If it's larger, update the max. Output at end of group.