Search found 53125 matches

by ray.wurlod
Sun May 10, 2009 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job export utility
Replies: 5
Views: 1241

Resist stupid requirements.

Make one export and make use of DataStage's ability to perform partial import of the contents of the export file.
by ray.wurlod
Sun May 10, 2009 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: arabic character set
Replies: 17
Views: 4024

To reinforce Craig's remarks, you may be in a part of the world where Friday and Saturday are not work days. But where he an I am, it is Saturday and Sunday that are not work days. And, curiously perhaps, I elect to have a life outside of IT.
by ray.wurlod
Sun May 10, 2009 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: arabic character set
Replies: 17
Views: 4024

Check (in Adminstrator client, logged as DataStage Administrator) whether the map MS1256 has, in fact, been loaded.
by ray.wurlod
Sun May 10, 2009 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Pivoting/Spliting
Replies: 11
Views: 3001

Create sufficient columns to handle the largest possible number of values.
by ray.wurlod
Sun May 10, 2009 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different metadata in source and target tables
Replies: 5
Views: 1278

The column definition collection is a property of the LINK.

Does that help your understanding?
by ray.wurlod
Sun May 10, 2009 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while running the job
Replies: 6
Views: 1856

Can't do that, as we don't have access to your environments. YOU do the comparison of environments, and let us know. Pay particular attention to the environment variables that affect the behaviour of decimal data types, though the difference may be elsewhere.
by ray.wurlod
Sun May 10, 2009 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String Operation
Replies: 6
Views: 1941

It is not possible to include NULL in a string. As soon as you use NULL as an operand, the result is necessarily NULL. What did you have in mind here?
by ray.wurlod
Sun May 10, 2009 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage NLS Settings for a parallel job
Replies: 4
Views: 7170

*Topic Relocated - Content Editor*
by ray.wurlod
Sun May 10, 2009 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we export joblog to a file
Replies: 27
Views: 11793

Re: Can we export joblog to a file

pandujoy wrote:if u r using DS8.1 or 8.0.1 ..go to the information analyzer and import ur log file...thats pretty easy :)
DSXchange is NOT a mobile telephone!!! Please DO NOT use SMS-style abbreviations.
:x
by ray.wurlod
Sun May 10, 2009 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing to a CSV file
Replies: 1
Views: 991

Change the stage properties from UNIX style to DOS style. The character at the end of the file is most likely a UNIX end-of-file character (Ctrl-D). You can check this with any hex editor; its value is 0x04.
by ray.wurlod
Fri May 08, 2009 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String Operation
Replies: 6
Views: 1941

Code: Select all

Str("|", InLink.Pos - 1) : "X" : Str("|", svMaxLen - InLink.Pos - 1)
I've used svMaxLen as a stage variable rather than using 10 or 500 as a constant. Set its value in the initialization step and do not include a per-row derivation for it.
by ray.wurlod
Fri May 08, 2009 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting Data into Partitioned Tables
Replies: 3
Views: 2377

Have you named a "partition table" in your stage properties? You should not need to specify the PARTITION clause in the INSERT statement.
by ray.wurlod
Fri May 08, 2009 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while running the job
Replies: 6
Views: 1856

Try using a DecimalToDecimal() conversion.
by ray.wurlod
Fri May 08, 2009 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup vs Join
Replies: 5
Views: 1917

That is a particularly difficult requirement. Most joins know in advance which columns are to be compared. Your requirement, if I understand correctly, is to find a match arbitrarily in any column. Neither a Join stage nor a Lookup stage can help you here, unless you perform every possible join/look...