Search found 53125 matches

by ray.wurlod
Wed May 24, 2006 12:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: why the datastage may occur running 1 record / second
Replies: 8
Views: 2642

Re: why the datastage may occur running 1 record / sec

i want to know when the datastage run 1 record/second , and what's the reason ? database: oracle datastage:6.0.1 It means that, for whatever reason, you are processing approximately 60 rows per minute. There are myriad possible causes, including very large rows. See earlier comments for some ideas.
by ray.wurlod
Wed May 24, 2006 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of job
Replies: 5
Views: 1856

When you reset the job in Director do you get extra diagnostic information in an event "from previous run..."? I suspect you are running out of memory, and thereby generating an access violation. It may also be the case that your loading into the database table is generating 50 warnings so you are t...
by ray.wurlod
Tue May 23, 2006 11:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: master sequencer
Replies: 8
Views: 1556

You have an unusual idea of "main". Usually main controls everything else. So you will need a "super main" to run the five seq jobs then your "main". :roll:
by ray.wurlod
Tue May 23, 2006 11:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job in loop
Replies: 2
Views: 932

Stop Job from Director client. Wait.
by ray.wurlod
Tue May 23, 2006 11:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDC with single stage
Replies: 19
Views: 4263

And how do you determine whether that key value already exists in the target or not (without some kind of lookup, that is)?
by ray.wurlod
Tue May 23, 2006 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i want to capture bad records
Replies: 6
Views: 1476

You don't use DataStage.

Constraints are DataStage's way of directing data flows.

To do it purely in source requires a HarryPotter stage. :lol:
by ray.wurlod
Tue May 23, 2006 11:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New to Datastage need docs
Replies: 3
Views: 865

Re: New to Datastage need docs

saurabhgupta4u wrote: where can i get this Server??

You buy it from IBM or an authorized reseller. You need lots and lots of money.
by ray.wurlod
Tue May 23, 2006 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDC with single stage
Replies: 19
Views: 4263

Why?

SCD involves some kind of comparison with target, even if it's only to check for existence.

You simply can't do it with source alone.

Are you confusing SCD (slowly changing dimension) with CDD (changed data detection)?
by ray.wurlod
Tue May 23, 2006 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsadm
Replies: 3
Views: 1491

Stop Job in Director is the best.
Cleanup Resources in Director is next best.
There is also the DS.TOOLS menu on the server.
by ray.wurlod
Tue May 23, 2006 9:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: deleting dataset
Replies: 6
Views: 1326

My earlier reply on this thread contains a complete answer.
by ray.wurlod
Tue May 23, 2006 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix paramter
Replies: 4
Views: 1136

You are wrong. You need a -param option for each parameter.

Code: Select all

dsjob -run -param name=value -wait projectname jobname
by ray.wurlod
Tue May 23, 2006 9:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsadm
Replies: 3
Views: 1491

1) dsadm is a user ID, not a command 2) a binary for invoking either a DataStage or a UniVerse environment 3) never kill jobs through UNIX commands - use the proper utilities 4) -param option with dsjob 5) whatever you design For more information search the forum. Good luck with your interview.
by ray.wurlod
Tue May 23, 2006 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe - Impact of adding additional columns to table
Replies: 5
Views: 1420

Yes and no. You can include EVAL or any valid SQL expression in the derivation in the Columns grid. Otherwise no.
by ray.wurlod
Tue May 23, 2006 8:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: function
Replies: 6
Views: 1201

You have not yet read the next record.

Therefore you can not compare anything to it.

What you ask is impossible.

Is that sufficiently definitive?
by ray.wurlod
Tue May 23, 2006 8:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix paramter
Replies: 4
Views: 1136

Re: Unix paramter

chandra wrote:Hi ,

I want to pass the parameter to job from unix .
how can i acchive this.


Please be more specific. The usual method is to interrogate the job parameter value using the dsjob command line interface, once job execution has completed.