Search found 472 matches

by tonystark622
Thu Apr 01, 2004 10:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reject handling sybase
Replies: 6
Views: 2374

Josy, In the constraint, instead of marking the row as the reject row, you could do something like this: DSLink4.DBMSCODE <> 0 You can find DBMSCODE by right clicking in the constraint menu, pick Link Variables, then Outputs, click on the plus sign next to the link name and you'll see DBMSCODE. Good...
by tonystark622
Thu Apr 01, 2004 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: This one is for RAY!!!
Replies: 5
Views: 3527

Srinivas,

I'm not Ray, but perhaps I can help.

I suspect you need to "source" the dsenv file before running 'uv'. From Unix prompt key:

cd home/dsadm/Ascential/DataStage/DSEngine
. ./dsenv
uv

That may help.

Tony
by tonystark622
Tue Mar 02, 2004 6:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Permissions From Scheduled (cron) Jobs
Replies: 2
Views: 1489

I just ran into this problem with DataStage v6.0.1. I contacted Ascential support about it. Eventually we worked out the exact scenario that you mentioned above. The fix was to put the "umask 002" command in the dsenv file, (we only had it in the start up script (the "rc" file))....
by tonystark622
Wed Feb 11, 2004 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Java Object and DS ver 6.0
Replies: 1
Views: 767

Viswanath One way to do this would be to split the job into two jobs. The first job contains all the stuff that happens before the JAVA program is to be run. The second job contains everything that should happen AFTER the JAVA program runs. In a Job Sequencer job, put a JobActivity stage to run the ...
by tonystark622
Tue Feb 03, 2004 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Functionaliy missing in DS7x Sequencer
Replies: 10
Views: 4649

Thanks, Roy!
by tonystark622
Tue Feb 03, 2004 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Functionaliy missing in DS7x Sequencer
Replies: 10
Views: 4649

Thanks for the workaround. We're getting ready to upgrade to v7 in the near future and I thought this might affect existing jobs. From what you've said, you only see this when creating new sequencer jobs. Is this correct?

Thanks,
Tony
by tonystark622
Mon Feb 02, 2004 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Functionaliy missing in DS7x Sequencer
Replies: 10
Views: 4649

Roy,

Did you get a case number for this problem? I don't find anything on the knowledge base about this problem.

Thanks,
Tony
by tonystark622
Thu Jan 22, 2004 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

Thanks, Ray. I originally created just a "regular" hash file with all the default options using the hash file stage. When I've done that in the past, it created a type 30 file. I dunno what happened, but it's fixed now. Unfortunately, this happened a couple of months ago and the job logs a...
by tonystark622
Thu Jan 22, 2004 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

I thought I would give everyone an update. I found that a hash file was the bottleneck in the job. Further investigation showed that the hash file was creating a file for each row that was supposed to be in the hash file (with the file name being the data for that row). I had originally defined this...
by tonystark622
Fri Jan 16, 2004 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

OK, sorry it took so long to get back to you, I'm working on this in my "spare" time. I did try the Unix sort (4 million rows). It took 7 minutes to do the sort. Then I fed the results into the aggregator. It still took 4.5 hours to run. The next thing I'm going to try is to do the aggrega...
by tonystark622
Fri Jan 02, 2004 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

Thanks, Craig. I'll try the Unix sort and see if it buys me anything.

If y'all see a different approach to accomplishing my requirement, please let me know.

Thanks again,
Tony
by tonystark622
Fri Jan 02, 2004 2:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

"...Having you tried writing your data out to flat files, sorting them at the Unix level and then loading back to your Aggregator jobs from there? Might be worth tinkering with, or at least worth running a benchmark on one of your four streams. Still curious, how is the 4:30 split between sort ...
by tonystark622
Fri Jan 02, 2004 12:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

You're right, Kenneth. I missed that one. The output data should be Part Unit Unit ID From To Quantity 1 1 3 3 instead of 1 1 10 3 I'll try to explain the ranges. Say an assembly contains Part1, Part2, and Part3 when a Unit is originally designed. By the time the first 10 units are made, a problem i...
by tonystark622
Fri Jan 02, 2004 11:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

I was just looking at the job and thought I'd post some numbers. There are about 50,000 rows with From/To ranges. When these are expanded to individual Units, there are 4,029,542 rows that need to be sorted, aggregated, and put back into ranges. I have split these into 4 streams hoping to speed thin...
by tonystark622
Fri Jan 02, 2004 11:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for job design suggestions
Replies: 14
Views: 5806

Hi Craig. Thanks for your reply. Yeah, I know it's a lot to absorb, but I felt like I had to explain things before I asked my question, so I would get a meaningful answer. Looks like the sorting and aggregating takes about 4 hours 30 minutes out of the total of 4 hours and 44 minutes. And yes the so...