Search found 5168 matches

by kumar_s
Mon Mar 20, 2006 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt in data movement.
Replies: 16
Views: 5319

You cannot update the key in the table using upsert method. So you should be checking it in DS and need to replace or update the whole record. Do a lookup and if matches, insert two records one with Validto = (validfrom-1) and another with 9999-12-31. And so the manipulation of Validto = (validfrom-...
by kumar_s
Mon Mar 20, 2006 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: Cannot open file BP_11
Replies: 9
Views: 3580

Can the type 19 directory be found under Project Directory? Buy I could not find it?
by kumar_s
Mon Mar 20, 2006 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error 81002 when connecting from datastage clients to server
Replies: 8
Views: 8365

Try

Code: Select all

cd $DSHOME
bin/dssh
>LOGTO {Project_name}

Make sure you can able to login to project through TCL.
by kumar_s
Mon Mar 20, 2006 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to call a shellscript in middle of the job run
Replies: 4
Views: 1221

Is it possible to build a Wrapper stage with set of unix commands?
by kumar_s
Mon Mar 20, 2006 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt in data movement
Replies: 4
Views: 1205

What is the target stage?
What is that you want from the target stage?
Is it an database and do you need a query?
If so

Code: Select all

Select ColA from <Table> where ColB in (Select ColB from <Table> where ColA = #Input#)

As suggested, more you be clear, more quickly you get the result.
by kumar_s
Mon Mar 20, 2006 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how would we know approxmt time datastage takes to process.
Replies: 4
Views: 2106

Each Passive stage is a single process.
All the active stage consicutive to each other will be again considired as single process.
by kumar_s
Mon Mar 20, 2006 5:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8079

Gives out the number of records consumed by each player for the run. (So I am not sure whether this variable is available in Server Edition)
by kumar_s
Mon Mar 20, 2006 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8079

How about turning on APT_RECORD_COUNT envirnmental variable (Not sure about Server edition)
by kumar_s
Mon Mar 20, 2006 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error 81002 when connecting from datastage clients to server
Replies: 8
Views: 8365

What you get if you execute

Code: Select all

netstat -a | grep dsrpc
from command prompt?[/code]
by kumar_s
Mon Mar 20, 2006 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how would we know approxmt time datastage takes to process.
Replies: 4
Views: 2106

Easy way to find the time taken for a job to finish sucessfully, can be found from Direcotr. So you can make sample job which can read a sample (but with large amount of similar data) to write into oracle stage. Make sure you dont have any other application or jobs runing on the server. Rerun form s...
by kumar_s
Sat Mar 18, 2006 12:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Zipping the xml fles
Replies: 2
Views: 677

Not sure whether you can compress multiple files using this stage. But you can execute all the unix commands from ExecuteCommand Activity in Job Sequence or through Before/After Subroutine.
by kumar_s
Sat Mar 18, 2006 12:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling routine DSSendmail
Replies: 12
Views: 8436

Once I had such scenario from Comnand Activity, which replies 0 - Success, 1 - Warining, 2 - Error. Though I handled all the error code in the trigger section, it throwed me unhaldled error for reply 1. We manage to solve by giving 'Otherwise' trigger only for that condition.
by kumar_s
Sat Mar 18, 2006 12:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Spaces added to string literal before entry into db
Replies: 2
Views: 730

Can you post the full error log. It might give the clear picutre.
Sometimes the truncating warning may be related to this post.
http://www.dsxchange.com/viewtopic.php? ... highlight=
by kumar_s
Sat Mar 18, 2006 12:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: Cannot open file BP_11
Replies: 9
Views: 3580

Re: Error: Cannot open file BP_11

Hi, I'm getting the folowing error when a job is opened or compiled. Cannot Open File BP_11.0 Cannot Open File BP_11. Can anyone help me out in solving this issue? Thanks, Vimali Might be your job got corrupted. Not suer what information will be stored in BP_nn/BP_nn.O. Just to reconfirm it is RT_B...
by kumar_s
Sat Mar 18, 2006 12:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transformer output is only one row
Replies: 18
Views: 3832

sendmk wrote:i knew i can transformer and @outrownum=1, but i want to use only stage variables :cry:

thx

What stops you to use @outrownum?
Whats special in Stage variable?
And pls let us know who you get the uniqe records out using @outrownum without using stage variable?