Search found 53125 matches

by ray.wurlod
Mon Feb 20, 2006 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: formatting to XML
Replies: 4
Views: 1470

Private Message received: Hi, I want to develop a job that reads data from a sequential file and formats it into XML. This XML has to be messaged using the MQseries. can you please give some guidelines towards developing this? Thanks and regards, Aravind. Approaches via private message or private em...
by ray.wurlod
Mon Feb 20, 2006 4:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writehash() error
Replies: 4
Views: 2480

Actually, hashed files can have "" as a primary key (since 6.0). But never NULL as a primary key.

Arnd learned about hashed files before that. :wink:
by ray.wurlod
Sun Feb 19, 2006 11:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed - Urgent (Pivoting Rows to Columns)
Replies: 2
Views: 1214

Read about Sequential File stage and XML. Search the forum. Search the forum also for "vertical pivot". Search the forum also for "urgent". We don't do "urgent" here.
by ray.wurlod
Sun Feb 19, 2006 1:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Doubt in Hash file
Replies: 4
Views: 1397

When a Hashed File stage (or DataStage BASIC routine) writes to a hashed file, if the key value is one that already exists on the hashed file, the old record is destroyed and the new one replaces it completely. That's why it's called destructive. However, this is all one operation in hashed files (n...
by ray.wurlod
Sat Feb 18, 2006 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Display of Arabic Characters
Replies: 9
Views: 3540

Moderator: please synchronize with this - apparently duplicate - post.
by ray.wurlod
Sat Feb 18, 2006 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Display of Arabic Characters
Replies: 9
Views: 3540

If you have NLS enabled, prefer UNISEQ to SEQ.
by ray.wurlod
Sat Feb 18, 2006 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: REG :Pointers to Datastage resources
Replies: 7
Views: 2365

UniVerse System Description is probably the best start point. Of course none of these manuals will make any reference at all to DataStage. Next should probably be UniVerse SQL Reference.
by ray.wurlod
Sat Feb 18, 2006 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird error - accessing ODBC Stage
Replies: 6
Views: 1146

Is uvodbc.config readable by the user ID under which DataStage runs(permissions)? Is uvodbc.config empty? What is in .odbc.ini ?
by ray.wurlod
Sat Feb 18, 2006 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Surrogate key stage
Replies: 5
Views: 1391

You need to pass at least one other column through the stage. Having a column generates a schema for the stage. Or you can specify a schema file or runtime column propagation in the stage properties.
by ray.wurlod
Sat Feb 18, 2006 2:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Display of Arabic Characters
Replies: 5
Views: 2838

That suggests one of two things - either it's not Arabic, or you do not know how it is encoded. You definitely do need to know that. Then, once the encoding is known, you will probably need to build that NLS map for DataStage (done from the NLS button in the Administrator client) and use it either f...
by ray.wurlod
Fri Feb 17, 2006 5:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Cannot open RT files
Replies: 5
Views: 4520

Welcome aboard. :D Is this happening when you explicitly try to open these in jobs (that is, opening them is part of your job design), or when you are simply working with jobs? Can you be more exact with the error messages that are generated? The RT_... hashed files store run time information - conf...
by ray.wurlod
Fri Feb 17, 2006 5:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Doubt in Hash file
Replies: 4
Views: 1397

Writes to hashed files (note: it's "hashed", not "hash") are destructive overwrites.
by ray.wurlod
Fri Feb 17, 2006 5:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date check for business validation
Replies: 14
Views: 5590

Holidays - of necessity - must be table (or hashed file) driven. Some holidays change year to year, such as Ramadan or Easter.

Left(Oconv(TheDate, "DWB"),1) = "S" is a convenient test for a weekend day in English.
by ray.wurlod
Fri Feb 17, 2006 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sorry!...its Date again...
Replies: 9
Views: 2247

Missed this earlier. You needed

Code: Select all

Oconv(Iconv('20040202', 'DYMD'), 'D-YMBDL[4,A3,2]') 

The "L" in the Oconv second argument gives the alphabetic components in title case.
by ray.wurlod
Fri Feb 17, 2006 5:19 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Reports generation
Replies: 3
Views: 2645

As the tool currently exists, the only way you could do this would be to script it, including the acknowledgments that each phase is complete. It's a bit more streamlined in the next version, but it's still really a step-at-a-time methodology.