Search found 47 matches

by tracy
Thu May 14, 2009 8:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fmt vs DecimalToDecimal/DecimalToString
Replies: 5
Views: 2378

Thanks!

Since I got the "nothing wrong with it" response I was looking for, I'll follow your lead and ignore the rest of this so I don't waste anymore of your time. :wink:
by tracy
Thu May 14, 2009 7:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fmt vs DecimalToDecimal/DecimalToString
Replies: 5
Views: 2378

Fmt vs DecimalToDecimal/DecimalToString

I have a Decimal(11,2) that I want to add to a Sequential file in a Varchar field. For instance, I want to see "Total: 9999.99" in the Sequential file. I'm finding that it's not always showing the 2 decimal places. So I went searching for a way to force it to always show 2. I've seen discu...
by tracy
Mon Feb 23, 2009 11:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

ArndW, I pulled dsx's from both systems and then used the Show Differences feature in VSS which allows me to see it more visually.
by tracy
Thu Feb 19, 2009 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

I've compared the dsx and other than date/timestamps, version numbers, PROMOTE/INIT lines, and Read Only vs not, I don't see any differences.
by tracy
Thu Feb 19, 2009 11:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

1) If I change: a_a
back to: a.a
It fails/won't compile.
2) We are mostly hardcoding Invocation Ids. Some use variables, but I don't think we are as advanced as you may be indicating. We are more using a Job Parameter as an Invocation Id or the Job Name.
3) I don't think this applies to me.
by tracy
Thu Feb 19, 2009 11:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

I compared the dsx. Other than date/timestamps, version numbers, PROMOTE/INIT lines, and Read Only vs Not, I don't see any differences.
by tracy
Thu Feb 19, 2009 10:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

1) The jobs were scheduled from Director.
2) These invocation ids worked before: 'a' a.a
3) During failure, they were same as #2. Once they failed, I changed them to: a a_a
4) I don't know what an invocation sequence value reset is, so I'm guessing the answer is no.
by tracy
Thu Feb 19, 2009 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

uvconfig seems to be the same on each server.
by tracy
Thu Feb 19, 2009 10:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

uvconfig seems to be the same on each server.
by tracy
Thu Feb 19, 2009 10:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

The similarity is that they all use Invocation Ids. After the issue surfaced, it seemed as though the Invocation Ids were invalid. But prior to the issue surfacing (for instance, last week in production or currently in dev/test), everything seemed fine. So it's like there was suddenly an Invocation ...
by tracy
Thu Feb 19, 2009 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

The jobs were scheduled in production. I only compile when: 1. I've made a change in development. 2. When I promote to test or prod, I check the compile checkbox. 3. When something goes wrong. For instance, I did a full compilation through Manager yesterday to see how many jobs were suddenly having ...
by tracy
Thu Feb 19, 2009 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not compiling in production, but they do in test
Replies: 20
Views: 5798

Jobs not compiling in production, but they do in test

I've got a strange situation. I've got code that's been running in production without any issues for a long time. Then all of a sudden, various parts started erroring. I can't Compile them from Manager. If I open the jobs in Designer, some of the "nodes" get that little yellow warning symb...
by tracy
Wed Feb 11, 2009 6:18 pm
Forum: General
Topic: Adding Arguments to heavily used existing routine
Replies: 4
Views: 1496

Thanks, Ray! You are awesome!
by tracy
Wed Feb 11, 2009 10:44 am
Forum: General
Topic: Adding Arguments to heavily used existing routine
Replies: 4
Views: 1496

I want to add the 6th argument and have the routine behave differently based on the value of it. If I create a six-argument routine that simply calls the five-argument routine, what happens with that 6th argument? It can't be passed to or handled by the five-argument routine. So I think I'm on the s...
by tracy
Wed Feb 11, 2009 12:46 am
Forum: General
Topic: Adding Arguments to heavily used existing routine
Replies: 4
Views: 1496

Adding Arguments to heavily used existing routine

We've got a routine with 5 arguments that's used in a lot of our jobs. We would like to add another argument to this routine, but don't want to have to go in and modify all the jobs that currently call it. We'd rather just let a default value kick in if a value isn't provided. But we are having a ha...