Search found 42189 matches

by chulett
Wed May 24, 2006 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Upgradation to 6.0
Replies: 4
Views: 1082

In what sense? As a client - sure. As a Server - don't know. Someone else here will or it will be mentioned in the docs or on the Ascential product availability website.
by chulett
Wed May 24, 2006 6:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loop Job
Replies: 1
Views: 844

Lots of help already here for working with sequential files. Try reading your documentation or searching here for keywords like OPENSEQ, READSEQ, etc. Then ensure the routine returns whatever is appropriate from the sequential file to be used as a parameter value. Move the User Variable Activity sta...
by chulett
Wed May 24, 2006 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Size limit for Folder Stage
Replies: 8
Views: 3413

Re: Size limit for Folder Stage

surendra_ds wrote:I dont think the size of folder will matter in any ways as far as DataStage is concerned.

As I noted, is does matter.
by chulett
Wed May 24, 2006 6:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special characters and ORAOCI9 stage
Replies: 5
Views: 4182

Just been through a similar exercise. It's all in the NLS_LANG settings you are using, both in the database and on the 'client' side. And it's not that the problem is caused by the OCI stage, but by Oracle itself. You set them globally in the dsenv file. You can override them in any job by including...
by chulett
Tue May 23, 2006 7:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom Routine in Generating a Sequence Number
Replies: 7
Views: 1684

Umm... there's no need to send you anything. :?

Connect to your project with the Manager. Navigate to the Routines / sdk / Key Management category. The routines will be there.
by chulett
Tue May 23, 2006 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limitation in aggregator stage??
Replies: 2
Views: 1344

Sort the data and then assert that in the Aggregator stage. :wink:
by chulett
Tue May 23, 2006 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Size limit for Folder Stage
Replies: 8
Views: 3413

Yes, there are known but undocumented limits on the sizes of files that can be sucked thru a Folder stage. It seems to vary from version to version and O/S to O/S. When you find those limits, as far as I know the only thing you can do about that is ensure that your files are all under that limit - e...
by chulett
Tue May 23, 2006 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: controlling part of a job in sequence
Replies: 4
Views: 1147

Open up the Transformer stage. In the topmost menu bar, the icon on the far right (with the blue arrow pointing up and down) allows you to specify the Output Link Ordering. And changing the link order will not affect the layout on the canvas.
by chulett
Tue May 23, 2006 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ho to split the data blocks returned from a folder stage
Replies: 4
Views: 1028

Ok... I know it is possible. My point is that (IMHO) it is the wrong approach - the Folder stage should be used with XML files. Most people would either concatenate the four files together before-job and process them at once, or create an interative process where you loop four time and process each ...
by chulett
Tue May 23, 2006 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ho to split the data blocks returned from a folder stage
Replies: 4
Views: 1028

I've never tried to use the Folder stage with sequential files other than to get a list of file names, not contents. :?

The Folder stage is meant to process XML files and so is typically followed by an XML Input stage which does the parsing into rows and columns.
by chulett
Tue May 23, 2006 8:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: automatching columns with hyphens
Replies: 2
Views: 813

Hypens? As in dashes? I don't recall DataStage supporting column names with hyphens in them. :?

In any case, if they occur in the same order you can select them all from one side and 'drop' them on the other.
by chulett
Tue May 23, 2006 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Jobs Aborting in Production
Replies: 5
Views: 2066

Off the top of my head, both the Sequential and Hashed stages.
by chulett
Tue May 23, 2006 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Jobs Aborting in Production
Replies: 5
Views: 2066

What happens when we Reset/stop the jobs which are aborted or hung? Nothing happens to the files or tables inside the job, the status of that job is reset so that it can be rerun. See page 3-5 of the Director guide. This is true unless that 'Automatically backup' option is enabled in an output stag...
by chulett
Tue May 23, 2006 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Upgradation to 6.0
Replies: 4
Views: 1082

Re: DataStage Upgradation to 6.0

If we upgrade the Datastage from 5.1 to 6.0, What would be the impact on the existing jobs. There really shouldn't be any. Mainly, how the Hashed files will be impacted. They won't be. Hashed files are hashed files. Are all the stages in 5.1 are supported by 6.0? Yes, of course. Are IPC stages &...
by chulett
Mon May 22, 2006 10:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSRoutine
Replies: 8
Views: 1815

dspxlearn wrote:My problem is, can a routine return more than one value.

To answer your question - No. You need to do exactly what it sounds like you are doing, returning some kind of delimited value and then breaking it up into its component parts after the fact.