Search found 6797 matches

by DSguru2B
Wed Apr 25, 2007 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 connection issue in sequence
Replies: 12
Views: 2080

How many nodes are you using. There might be parallel connections open by you within the same job for a single Enterprise stage.
by DSguru2B
Wed Apr 25, 2007 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invocation of DS Job of Sequence from Java
Replies: 8
Views: 1911

If your java adapters can execute scripts it can definately execute datastage jobs. But its better to have a wrapper script to check for return codes, do other household work as well. But to answer your quest, yes it can.
by DSguru2B
Wed Apr 25, 2007 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 connection issue in sequence
Replies: 12
Views: 2080

Just your connections might be 100, there might be other applications connected to the database at the same time. Take this error to your DBA so that he can analyze the number of open connections during the time this error occured and increase the maxappls.
by DSguru2B
Wed Apr 25, 2007 8:18 am
Forum: General
Topic: how to call an unix script in sequence job
Replies: 10
Views: 3854

Can you execute it from unix using the same id? If yes then try giving the command as

Code: Select all

. /data/skscript 
by DSguru2B
Wed Apr 25, 2007 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we export joblog to a file
Replies: 27
Views: 11793

Never mind, its blocked on our intranet. Ill check it out at home. Disregard my previous post.
by DSguru2B
Wed Apr 25, 2007 7:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: issue with pivot stage
Replies: 2
Views: 666

Your generating sequential number in parallel. You have to bring into consideration the partition number and the number of partitions too. There is an FAQ entry by vmcburney on how to do that. Look here.
You can also use surrogate key generator.
by DSguru2B
Wed Apr 25, 2007 7:48 am
Forum: General
Topic: How to add datetime stamp + duration hours
Replies: 3
Views: 1786

Here, I found it. Enjoy.
by DSguru2B
Wed Apr 25, 2007 7:41 am
Forum: General
Topic: how to call an unix script in sequence job
Replies: 10
Views: 3854

Within the script, use fully qualified paths for any file you write to or reference. Your script is complaining that skey.txt is not present. Ofcourse not, the dsengine will look for this file in its home directory. Your script works from command line because skey.txt might be present in /data/ dire...
by DSguru2B
Wed Apr 25, 2007 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where did I go wrong?
Replies: 20
Views: 4999

gateleys, if at the end the performance is still not at an acceptable level, go for staging tables. Load your lookup and source into work tables and pass the same sql. Do that anyways while you wait for advice. It will give you a feel of how quick the process can be at the database level.
by DSguru2B
Wed Apr 25, 2007 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Null Handling in Modify Stage
Replies: 1
Views: 771

NullToValue() does not work. Try handle_null(). You wont find its syntax in the manual. Refer here for exact syntax.
by DSguru2B
Wed Apr 25, 2007 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we export joblog to a file
Replies: 27
Views: 11793

The images are not showing up. :roll:
by DSguru2B
Wed Apr 25, 2007 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Aggretaor
Replies: 10
Views: 2188

Do you have sorted input? Can you explain your job design a little bit more clearly. Do you have any more error messages? details man details.
by DSguru2B
Wed Apr 25, 2007 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OS Group
Replies: 1
Views: 537

You can give any group name. dstage is, generically, used in many places.
by DSguru2B
Wed Apr 25, 2007 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using ExecTCL in Before/After job sub-routine
Replies: 1
Views: 552

What did you find when you did a search on ExecTCL?
by DSguru2B
Wed Apr 25, 2007 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing 2 dates in a Filter stage
Replies: 5
Views: 1603

Comparison could be >, <, =<, => or even <>. For this very reason, not only they have to be in identical formats, they should be in YYYY-MM-DD or YYYY/MM/DD. In short, any format that first has 4 digit year, 2 digit month and 2 digit day.