Search found 53125 matches

by ray.wurlod
Thu Oct 22, 2009 3:42 pm
Forum: IBM QualityStage
Topic: Data type validation
Replies: 2
Views: 2486

No. And yes. Because, in version 8, QualityStage and DataStage are the same piece (ignoring licensing) you can use a DataStage Transformer stage to apply IsValid() functions or other techniques to effect data type validation.
by ray.wurlod
Thu Oct 22, 2009 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping Using Stage Variable
Replies: 4
Views: 1965

Given that you've marked this as a server job:

Code: Select all

MatchField(InLink.Code, "0N1A0N", 2)
by ray.wurlod
Thu Oct 22, 2009 12:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of a DS function EReplace in a Server Routine
Replies: 6
Views: 3475

That's nothing to do with Ereplace(). The problem is that you used "END IF" when you should have used "END". Refer to the DataStage BASIC manual for syntax of the IF statement.
by ray.wurlod
Thu Oct 22, 2009 12:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in records (count) column wise in Aggregator S
Replies: 2
Views: 1119

DataStage is not really the right tool for analyzing data. Have you investigated Information Analyzer?
by ray.wurlod
Wed Oct 21, 2009 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in records (count) column wise in Aggregator S
Replies: 2
Views: 1119

DataStage is not really the right tool for analyzing data. Have you investigated Information Analyzer?
by ray.wurlod
Wed Oct 21, 2009 11:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of a DS function EReplace in a Server Routine
Replies: 6
Views: 3475

There are no libraries. You do, however, need a correct syntax. Since you have posted neither your specification nor your syntax, it's impossible to comment further.
by ray.wurlod
Wed Oct 21, 2009 10:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting job while executing the select statement
Replies: 6
Views: 3151

What happens when you let DataStage generate the SQL based on the table definition you have imported?
by ray.wurlod
Wed Oct 21, 2009 10:31 pm
Forum: General
Topic: How to replicate the REPLACE function of SQL in DataStage
Replies: 2
Views: 1329

Code: Select all

Convert(",",  "", InLink.FieldName)
in a Transformer stage
by ray.wurlod
Wed Oct 21, 2009 8:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading a CSV file with dynamic number of columns
Replies: 8
Views: 3414

Then change the design so that missing columns do not cause aborts.

One approach is to use a server job, where you can build a missing column rule into the Columns grid itself in the Sequential File stage.
by ray.wurlod
Wed Oct 21, 2009 6:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage variables
Replies: 2
Views: 1345

Why not use a Sort stage on all three columns and generate a Key Change column?
by ray.wurlod
Wed Oct 21, 2009 4:02 pm
Forum: General
Topic: IBM Information server client install replace ODBC drivers.
Replies: 4
Views: 2498

The ODBC drivers are on your UNIX server, not on the client machine.
by ray.wurlod
Wed Oct 21, 2009 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting of date range
Replies: 14
Views: 3125

See how vitally important accurate specifications are!

Only now could someone work on this implementation without wasting time.

Now, to complete the specification, do you need these in separate rows or in separate columns or in some other format (such as a delimited string)?
by ray.wurlod
Wed Oct 21, 2009 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using release to clear locks on job designs
Replies: 2
Views: 1254

If the lock is owned by any other user, you need to execute the UNLOCK command while logged in as a DataStage administrator.
by ray.wurlod
Wed Oct 21, 2009 3:53 pm
Forum: General
Topic: front-end app that launchs a DS job sequence
Replies: 1
Views: 939

Start the process is easy - use the dsjob command. Capturing the parameters should be fairly easy too, assuming they're stored somewhere sensible (though you do need to consider how to protect sensitive data such as passwords). You can build all of that into a script. There are examples posted on DS...
by ray.wurlod
Wed Oct 21, 2009 3:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting of date range
Replies: 14
Views: 3125

Do you really want overlapping ranges, most of which are N+1 days, or not? Did you really mean
20091001 and 20091003
20091004 and 20091006
20091007 and 20091009