Search found 6 matches

by vsurap
Thu Apr 06, 2006 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 15
Views: 8281

If POS is fixed (i.e only M/D/R) then you can use the below logic using Join stages. 1) Splitt the Input data into 3 datasets/Files, one for each POS 2)Do a full outer join to Join any two datasets.(take Dataset M and Dataset D) 3)Do the Null handling in a transformer. 4)Do a Full outer to join the ...
by vsurap
Mon Apr 03, 2006 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Facing a problem in opening a job.
Replies: 2
Views: 1192

Re: Facing a problem in opening a job.

You can do this in two ways

1)From the Director

Job > Cleanup Resources

Select the job/Process in the Processes list box, then click Logout.

2) If you can Identify the PID related to the Job, Use the OS command to kill the process.

I guess,doing it from the Director is a better way
by vsurap
Fri Mar 31, 2006 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Needed - Job Compilation is extremely slow
Replies: 7
Views: 3577

Your Client configuration looks fine. We had a similar issue long back. The issue was in the connectivity (between Client and Server).
Do FTP a big Flat file from your client to server and see if it is a Network connectivity/Bandwidth issue.
by vsurap
Fri Mar 31, 2006 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to integer
Replies: 15
Views: 6405

Right( ("000":SrcColumn) , 3 )
by vsurap
Thu Mar 30, 2006 7:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to group data and check some constraint
Replies: 9
Views: 4529

Re: how to group data and check some constraint

I guess the below logic should work.

Input----->Remove Dups(Key: ID,MO and CA)--->Agregater (Key: ID,MO) get the Count rows--->
Transformer( Constraint: if count Rows=1)---> To Lookup(Reference Stream)


Input -----> Lookup(Key: ID and MO) ---> Ouptput
by vsurap
Thu Mar 30, 2006 6:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup error
Replies: 10
Views: 6448

If you are trying to get a Cartesian product then use a Join Stage.
or
You can use the message handler to suppress the warning from the logs, but in my opinion it is not a best practice
or
As vmcburney said, remove duplicates from your Lookup stream