Search found 53125 matches

by ray.wurlod
Thu Jul 21, 2011 6:13 pm
Forum: General
Topic: DSgetLinkinfo
Replies: 2
Views: 1986

Wait till the job finishes.

You don't need the link row count while the job is running - if you do, you can insert a Transformer stage and invoke a system variable (@INROWNUM or @OUTROWNUM).
by ray.wurlod
Thu Jul 21, 2011 6:11 pm
Forum: General
Topic: Passing commandoutput as a parameter in to the parameter set
Replies: 14
Views: 5567

You can create one or more values files for the Parameter Set. Write values into the values file before invoking the job or sequence that consumes the Parameter Set values. When you run the job, specify one of these file names as the "value" of the Parameter Set, rather than (as pre-define...
by ray.wurlod
Thu Jul 21, 2011 6:07 pm
Forum: General
Topic: Phntom error
Replies: 1
Views: 1245

No.

Exception handler doesn't do anything. Its output is triggered if an activity in the sequence fails. And that's all it does.
by ray.wurlod
Thu Jul 21, 2011 6:01 pm
Forum: General
Topic: How to install fix packs
Replies: 2
Views: 3759

Beware that, over time, you may need to download an updated version of the Update Installer itself. The documentation will tell you what version is needed. You can check the version by running it with the -version command line option.
by ray.wurlod
Thu Jul 21, 2011 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Logic
Replies: 3
Views: 1421

Use the looping construct in the version 8.5 Transformer stage. It's an ideal usage for this functionality.
by ray.wurlod
Thu Jul 21, 2011 12:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job gives warning in one environment and runs fine on other
Replies: 5
Views: 1229

It can not "run fine in the other environment". A passive stage in a parallel job, as noted, can have at most one non-reject output or at most one input, and can not have (non-reject) input and output.
by ray.wurlod
Thu Jul 21, 2011 12:54 am
Forum: General
Topic: Failed Job Information
Replies: 3
Views: 973

Yes, you can loop through all the jobs using the -jobinfo (and maybe some of the log interrogation options). That information will not, however, be available by inspection of the sequence's properties or log.
by ray.wurlod
Thu Jul 21, 2011 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need logic in splitting the record and generate columns
Replies: 1
Views: 911

What's the source database? Display functions differ between databases.

In a Transformer stage in DataStage it's easy - just use Field() functions specifying ":" as the delimiter character.
by ray.wurlod
Thu Jul 21, 2011 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to migrate more than 200 Oracle tables to DB2 Database
Replies: 1
Views: 1140

You're on the right track thinking about RCP. There are examples here; Search is your friend.
by ray.wurlod
Thu Jul 21, 2011 12:49 am
Forum: General
Topic: Maximum number of jobs per project...
Replies: 15
Views: 6573

I believe the limit on Solaris generally to be 32K subdirectories per directory.
by ray.wurlod
Wed Jul 20, 2011 11:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting Excel ODBC failed
Replies: 5
Views: 3037

Craig recalls correctly. DataStage does not recognize user DSNs - only System or File DSNs.
by ray.wurlod
Wed Jul 20, 2011 9:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Fileset with Schema Def
Replies: 5
Views: 1776

Are you using a Sequential File stage or a File Set stage to read this File Set? Are you specifying the Schema File property correctly?
by ray.wurlod
Wed Jul 20, 2011 9:15 pm
Forum: General
Topic: Maximum number of jobs per project...
Replies: 15
Views: 6573

It depends to some extent upon what flavour of UNIX you are on, and on the limit (if any) on the number of subdirectories that can be created in a directory. 1000 jobs is probably OK - you can go up to somewhere near 4000. However, performance problems start kicking in in areas like job startup and ...
by ray.wurlod
Wed Jul 20, 2011 9:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash Files
Replies: 1
Views: 1237

You don't have any hash files. As I have noted myriad times in the past, the correct term is hashed file. There are at least four ways to delete hashed files, but only one of them is correct, and will depend upon how the hashed file was created. I'm sure that there's a post somewhere on DSXchange th...
by ray.wurlod
Wed Jul 20, 2011 9:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage
Replies: 1
Views: 807

Workaround is to set Array Size property to 1.

Even better would be to force generated SQL to be re-generated, for example by switching from generated = Yes to generated = No and back again.