Search found 53125 matches

by ray.wurlod
Fri Aug 01, 2008 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to implement more than 3 sources as input
Replies: 2
Views: 955

Is the "branch" in the file the same as the "branch code" in the database table? How many lines in the file? How many rows in the table? These volumes will affect the "best" solution.
by ray.wurlod
Fri Aug 01, 2008 3:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting rows to columns
Replies: 4
Views: 2213

U is one of our posters (and a reasonably common Burmese name), Ur was a city in ancient Babylon, and rpy presumably is an abbrevation for revolutions per year. Plz might be a town in the Balkans. Please use a professional standard of English when posting on DSXchange; it makes it easier for everyo...
by ray.wurlod
Fri Aug 01, 2008 3:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation error (transformer stage)
Replies: 3
Views: 1132

Actually the GE stems from #< which DataStage BASIC interprets as "not less than". So it's necessary to ask where "#<>~" comes from in your job design, and why it's unquoted if it's a string. If it's any help, it's the derivation of the first column on an output link from the second Transformer stag...
by ray.wurlod
Fri Aug 01, 2008 3:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to oount no of warning messages
Replies: 3
Views: 1007

Then use more filtering, on timestamp!
by ray.wurlod
Thu Jul 31, 2008 11:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to oount no of warning messages
Replies: 3
Views: 1007

Code: Select all

dsjob -logsum Project Job | grep WARN | wc -l


Code: Select all

SELECT COUNT(*) FROM RT_LOGnnn WHERE SEVERITY = ('Warning' OR SEVERITY = 'Fatal') AND TIMESTAMP >= 'yyyy-mm-dd hh:mm:ss';
where nnn is the job number and yyyy-mm-dd hh:mm:ss is the start date/time of the job.
by ray.wurlod
Thu Jul 31, 2008 10:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

The total of field widths plus separator space must be less than your device width. Five at 40 equals 200, which is way too many, so you get vertical format. Try this: SELECT Field1 FMT '12R', Field2 FMT '15L', Field3 FMT '20R', Field4 FMT '10L', Field5 FMT '10R' FROM HashOther; In this query the to...
by ray.wurlod
Thu Jul 31, 2008 10:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting rows to columns
Replies: 4
Views: 2213

What you are asking about is called a "vertical pivot". Searching DSXchange will yield at least three different ways to accomplish vertical pivoting in DataStage server jobs.
by ray.wurlod
Thu Jul 31, 2008 10:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Output link opens, even if the job aborts
Replies: 11
Views: 2906

What a surprise! When you ask a running job for its status, it returns "Running" (which is what 0 means). You need to re-think your logic, probably to split it into two separate pieces, the first of which does any processing, the second of which only executes if the first does not abort. The only al...
by ray.wurlod
Thu Jul 31, 2008 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why transformer is not working in Windows Xp
Replies: 6
Views: 1633

What precise version of DataStage - 7.5x2 or something else?
by ray.wurlod
Thu Jul 31, 2008 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Handle DataQuality?
Replies: 3
Views: 1374

Original post was for 7.x. You are correct that ProfileStage no longer exists in 8.0 having been morphed into Information Analyzer. Elements of QualityStage and AuditStage will also migrate into Information Analyzer over the next couple of years. In the meantime, AuditStage continues to exist as a s...
by ray.wurlod
Thu Jul 31, 2008 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About MVS edition
Replies: 7
Views: 2343

Mainframe capability has been in the product since very early days - if pressed I would opt for version 2.2 or thereabouts. I have been involved in banking/insurance projects using mainframe jobs.
by ray.wurlod
Thu Jul 31, 2008 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is multistage variables
Replies: 2
Views: 984

So would we. Where did you encounter them?
by ray.wurlod
Thu Jul 31, 2008 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read sequential variable length file
Replies: 5
Views: 2514

I prefer not to use RCP, so someone else will need to answer that.
by ray.wurlod
Thu Jul 31, 2008 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting Variables in Job Control
Replies: 4
Views: 2230

It matters only internally. A Batch is created in Director and compiled automatically. Job control routine is not compiled automatically; it must be compiled by manually compiling the job in which it is a property.