Search found 200 matches

by sjordery
Tue Sep 30, 2008 3:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Set of values from a data base table to Sequence Job
Replies: 7
Views: 2078

Passing Set of values from a data base table to Sequence Job

Hi ,

I want to pass 4 distinct values from a data base table to a Sequence job.
I have defined 4 parameters to catch the values.
Is there any method to read and pass it to the job parameters.


Thanks in Advance!
by sjordery
Thu Jul 10, 2008 4:07 am
Forum: General
Topic: Jobs - icons, text etc display differently in v8 import
Replies: 0
Views: 533

Jobs - icons, text etc display differently in v8 import

Hi All, I've had a search through on this, but couldn't find anything using the parameters I used. Basically, I have a few jobs that I exported from a v7.5 server and imported back into a v8 instance. The job displays fine in v7.5, but when I open it up in v8, the icons are smaller and font on the l...
by sjordery
Thu Jun 12, 2008 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: iconv/oconv routine for date conversion fails in v8
Replies: 3
Views: 1967

Perfect - thanks Mike.

Cheers,
S
by sjordery
Thu Jun 12, 2008 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: iconv/oconv routine for date conversion fails in v8
Replies: 3
Views: 1967

Got it! :) We didn't used to have NLS installed on the old server, but have it with v8.01. The default date under this option was set as US-ENGLISH. Changed to GB-ENGLISH and it now works. I will change the routine to explicitly expect input date of DD/MM/YYYY. Hope this helps someone else at some p...
by sjordery
Thu Jun 12, 2008 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: iconv/oconv routine for date conversion fails in v8
Replies: 3
Views: 1967

iconv/oconv routine for date conversion fails in v8

Hi All, I have a BASIC routine that was working happily on our old v7.5 instance on DataStage. It looks like this: WorkDate = Iconv(InputDate,"D/E") Ans = oconv(WorkDate, "D/MDY[2,2,4]") Basically, it takes input date in the UK accepted standard format and converts to the US form...
by sjordery
Thu Jun 05, 2008 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure trying to view Dataset
Replies: 2
Views: 6030

:oops: :oops: :oops: :oops: A matter of user error I'm afraid. I had one of the directory parms set up incorrectly in the jobs - so it was looking for the .ds header/pointer file in the wrong directory. There was a IdMasterDataFull.ds in the 'incorrect' directory, but a previous clean-up had removed...
by sjordery
Thu Jun 05, 2008 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure trying to view Dataset
Replies: 2
Views: 6030

Failure trying to view Dataset

Hi All, I have searched extensively for this, as I thought it must have come up before, but couldn't find it, so here goes... I have a job that runs a number of times, parsing XML and appending to a dataset as output. That dataset is then opened up in a downstream job to write to a DB. The parsing j...
by sjordery
Mon Jun 02, 2008 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Chunk' XML Files before parsing
Replies: 12
Views: 6906

Thanks for the input Ernie, much appreciated.

Regards,
S
by sjordery
Thu May 29, 2008 4:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Chunk' XML Files before parsing
Replies: 12
Views: 6906

Thanks sud for you time and input. I'll give it a go.

Best,
S
by sjordery
Wed May 28, 2008 11:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Chunk' XML Files before parsing
Replies: 12
Views: 6906

A rather crude way of getting the file to look the way you want to be able to chunk it (it looks hilarious since I am particularly poor at sed and awk): sed 's_<[A-Z]_*&_g' testxml.txt | sed 's_</[^D]_*&_g' | tr '*' '\n' testxml.txt is your xml file. This will basically render your file in ...
by sjordery
Wed May 28, 2008 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Chunk' XML Files before parsing
Replies: 12
Views: 6906

Hey sud - thanks for this, it's an approach that I hadn't really considered, so will see if I can fit it in. I am interested in the build-op technique, and (due to the type of xsd's we use not working well with DS meta data importer - long story, different thread) I am using manually coded xpaths, s...
by sjordery
Wed May 28, 2008 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Chunk' XML Files before parsing
Replies: 12
Views: 6906

chulett wrote:I personally think generating files of that size is... well, just wrong and doesn't do anyone on the receiving end any favors. :evil:
I have to admit that those words have echoed around my head more than once. :roll:

Cheers,
S
by sjordery
Wed May 28, 2008 6:00 am
Forum: General
Topic: Datastage 8.0 XML Input Stage Usage - Need Clarification
Replies: 18
Views: 20182

But the point is how shall I map this to the Output of the XML Input stage to get the data? Same way as you would with the Input XML stage using the Folder in Server - map using xpaths declared in the description field of the table definition. All detailed in the XMLPACK guide in the DataStage docs...
by sjordery
Wed May 28, 2008 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Chunk' XML Files before parsing
Replies: 12
Views: 6906

'Chunk' XML Files before parsing

Hello All, I have a requirement to parse multiple XML files, many of which are over 2Gb in size. As many of you will know, due to the way in which DataStage handles XML parsing, there is a limit on file size, and when that is breached, you'll see the jobs abort with: APT_CombinedOperatorController,0...