Search found 42189 matches

by chulett
Wed Nov 17, 2004 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call Perl Program
Replies: 2
Views: 979

You can also use DSExecute - check the online help.
by chulett
Wed Nov 17, 2004 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RAM / swap usage
Replies: 13
Views: 7707

denzilsyb wrote:Are file sizes an issue?

Yes! There is definitely a limit on the file sizes the Folder stage can handle. Unfortunately, I don't believe there is a hard-and-fast number published by Ascential... it seems to vary by hardware and version. :?
by chulett
Wed Nov 17, 2004 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting a project......
Replies: 12
Views: 5044

At this point, it would seem the SQL Catalog for that project is horked up. There are a few posts on the subject here, this is one of the ones that helped me when facing a similar problem. Note the rather strong warnings Ray gives in this post about having a good backup. Executing any of these steps...
by chulett
Tue Nov 16, 2004 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file name question
Replies: 3
Views: 1793

Re: Hashed file name question

PilotBaha wrote:How can I prevent the hash file name to be drived from the link name?

You can't, the link name is the default hash name. However, it's a simple matter to rename each one to a single, consistant name so they all end up writing to the same hash file. :?
by chulett
Tue Nov 16, 2004 5:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValue Usage
Replies: 4
Views: 1445

As an FYI, these SDK routines are documented, some better than others - check out the Short and Long Descriptions in their properties. For example, this routine says: Sequence number generator. Routine to generate a sequential number. This routine does not support access to a particular sequence by ...
by chulett
Tue Nov 16, 2004 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Job properties unavailable
Replies: 1
Views: 598

The 'fix' is to uninstall SP2. There are notices of the issues SP2 causes posted over on ADN if you have access to that. I understand there is a patch for the problem, but it is only available for 7.5 as far as I know. Edit: There is a post here where this is discussed. It notes that the patch will ...
by chulett
Tue Nov 16, 2004 5:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLSTATE
Replies: 10
Views: 2166

I think Ray may have missed the point that you want to capture the 'errors' from when the DB2 lookup 'fails' - i.e. it doesn't return a record. He is answering based on the failure of the write of the Output link, not the lookup. I think you've already gotten your answer in your first post - I don't...
by chulett
Mon Nov 15, 2004 12:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller problem: Unhandled failure in Routine
Replies: 2
Views: 2806

When you include Routines that return a non-zero return code, you can't take advantage of the 'automatically handle failure' option, as that is considered a failure in the routine. Not without special handling, anyway. Make sure the trigger from the routine isn't just a 'Ran OK' trigger, try making ...
by chulett
Mon Nov 15, 2004 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with the project in DS
Replies: 4
Views: 718

sonia jacob wrote:sorry i panicked. :oops:

No problem. I certainly would have, given the same situation. :D Glad you seem to have it sorted out.
by chulett
Mon Nov 15, 2004 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Resetting jobs
Replies: 2
Views: 869

Re: Resetting jobs

Is there anyway to get the list of jobs aborted in the Project directly? More than likely. I'm sure you could query the underlying structures and only get the jobs you are looking for. The syntax is probably in the forum somewhere, or one of the Grognards could post it for you here, I would bet. Ho...
by chulett
Mon Nov 15, 2004 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with the project in DS
Replies: 4
Views: 718

Anything happen to your server that you are aware of? Any chance you've run out of space where your project is installed? Here's hoping you've got a recent backup, just in case... :?
by chulett
Sun Nov 14, 2004 9:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Batch Jobs
Replies: 5
Views: 6034

No, sorry, wasn't kidding. I misunderstood what you were saying was your favorite. From the way the sentence was phrased I didn't think you meant BASIC jobs in general, I thought you had a specific example that had been posted here and had forgotten to link to it. FWIW, I completely agree. While we ...
by chulett
Sun Nov 14, 2004 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Batch Jobs
Replies: 5
Views: 6034

Hey Ogmios, out of curiousity... which one is your favorite?
by chulett
Sat Nov 13, 2004 11:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopping a Job from itself
Replies: 6
Views: 2108

Was thinking about this. Is there any way to constrain your job to a unit of work such that it completes within your 10 minute window? You could setup a looping master control job that kept it executing. Was wondering what your alternative was to your job constantly killing itself. In either situati...
by chulett
Sat Nov 13, 2004 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting data from an ftp address
Replies: 7
Views: 2516

Check the syntax for the DSExecute command. You need four parameters, only one of which is the command to execute. First parameter is the O/S, in your case "DOS". Second is the command(s) to execute. Third is an array to hold any screen output from the command and lastly the parameter that holds the...