Search found 42189 matches

by chulett
Fri Oct 08, 2004 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with job sequencer
Replies: 1
Views: 741

Search is your friend! :wink:

Found this post with both the same problem as you are seeing and a solution as well. Hope it helps.
by chulett
Thu Oct 07, 2004 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting into Oracle
Replies: 9
Views: 2904

Now, there's a doughnut worthy suggestion! :wink:
by chulett
Thu Oct 07, 2004 1:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting into Oracle
Replies: 9
Views: 2904

What does your target table look like? What kind of errors are you getting? Your biggest problem is going to be the fact that 30,000 is way too big for a single field of any normal type. You need to go with something like CLOB on the Oracle side and then you'll find that DataStage doesn't really han...
by chulett
Thu Oct 07, 2004 11:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Permission Denied while executing DSSendMail
Replies: 21
Views: 6397

Solution!

FYI - there is a solution for this issue from Ascential. They shipped me a 'patched' version of the DSSendMail.B module and I was able to send emails from 7.5 without having to run the job under the administrator id.

The eCase is 60747 if anyone else is having the problem.
by chulett
Thu Oct 07, 2004 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting into Oracle
Replies: 9
Views: 2904

You looking for help designing a job or a table? :?
by chulett
Wed Oct 06, 2004 7:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract file name from path
Replies: 5
Views: 1458

Count the number of delimiters. Use that count in conjunction with the Field function to always get the 'last' field.

Do it all at once like this:

Code: Select all

Field(Link.Field,"/",DCOUNT(Link.Field,"/"),1)
by chulett
Wed Oct 06, 2004 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Protected Projects and DataStage Operator role
Replies: 4
Views: 4674

Re: Protected Projects and DataStage Operator role

However, using the Protected project with the .dsx approach for code migration is the only way we can get the code to be in a read-only state. Version Control will do this for you automatically without having to use a protected project. And about the release information appended to the job name, we...
by chulett
Wed Oct 06, 2004 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Protected Projects and DataStage Operator role
Replies: 4
Views: 4674

Re: Protected Projects and DataStage Operator role

With Protected projects, we found out that the users belonging to the role of a DataStage Operator only have access to the Director. In addition to that, the Operator can only execute,reset jobs and view logs in the Director if the jobs are "released". Why is that so ? No clue. I think that all we ...
by chulett
Wed Oct 06, 2004 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtracting 2 dates in Transformer
Replies: 22
Views: 5053

Have some more tuna. :P
by chulett
Wed Oct 06, 2004 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtracting 2 dates in Transformer
Replies: 22
Views: 5053

So, what made it work for you? Best to post the actual solution so that others can learn from it. That and so we can settle Ken's donut dillema. :wink:
by chulett
Wed Oct 06, 2004 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtracting 2 dates in Transformer
Replies: 22
Views: 5053

Post an example (or two) of what your data actually looks like. It must not be in Timestamp format after all.
by chulett
Wed Oct 06, 2004 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtracting 2 dates in Transformer
Replies: 22
Views: 5053

Not sure what to tell you as this should work fine - as long as you have data. I threw this into a scratch routine and it subtracted the two timestamps just fine. The only time I got a zero was if both were the same or if both were blank. Any chance of that? Have you run your job through the Debugge...
by chulett
Wed Oct 06, 2004 10:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtracting 2 dates in Transformer
Replies: 22
Views: 5053

Ok, that seems fine. It looks like you are using Stage Variables rather than a custom routine, is that correct? Can you cut and paste the actual derivations you are using, please and use the 'code' tags so they format nicely? It always worrys me when someone says "I'm trying to do something like thi...
by chulett
Wed Oct 06, 2004 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtracting 2 dates in Transformer
Replies: 22
Views: 5053

What exactly do your date fields look like?
by chulett
Wed Oct 06, 2004 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting Blank Rows into a file
Replies: 7
Views: 2201

Work tables. :wink:

If you can't find a way to work this out all in DataStage, break it into a couple of pieces. First job transforms your source, does your Quarter Hour thing and then loads it up into a work table. Then you can do the union minus thing after that.