Search found 7 matches

by DatastageSolutions
Tue May 12, 2009 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow performance writing to lookup fileset with direct i/o
Replies: 1
Views: 1339

Slow performance writing to lookup fileset with direct i/o

Has anyone had poor performance issues after enabling direct i/o? The system I'm currently working on appeared to be using large volumes of memory for file caching at a system level. I had the volume we're using for storing the data files, datasets and lookup filesets switched to direct i/o and this...
by DatastageSolutions
Wed Oct 17, 2007 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file - (project directory or different directory)
Replies: 8
Views: 3292

Arnd - I'm busy running one of your jobs and it stores everything in the project area! :wink:
by DatastageSolutions
Wed Oct 17, 2007 5:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file - (project directory or different directory)
Replies: 8
Views: 3292

Personally, I like to use the project area because then you have all the Universe commands available to you. I know you can set a pointer in the VOC to get around this but if you want to check whether a row exists its so much easier to just go into Administrator and type in a bit of SQL. BUT... a lo...
by DatastageSolutions
Mon Oct 08, 2007 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to check if 2 numbers are equal in datastage
Replies: 8
Views: 2774

As Josh said, its probably padding that's causing the problem. If you haven't got $APT_STRING_PADCHAR set then by default Datastage will pad chars with a \0 null character, in a similar way to C. Try adding $APT_STRING_PADCHAR=0x20 to the parameters. It'll tell Datastage to use spaces to pad chars o...
by DatastageSolutions
Mon Oct 08, 2007 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamically processing csv files based on header row
Replies: 8
Views: 3774

Thanks for that bit of Perl John, can't really send you the live data as its financial information but I'll definitely give it a go :D For gateleys and anyone else who's interested, here's a chopped down example of the Basic version... Enjoy! JobName="ConvertCSV" ! Open infile and outfile ...
by DatastageSolutions
Fri Oct 05, 2007 5:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamically processing csv files based on header row
Replies: 8
Views: 3774

Cheers for the ideas. Not being a Perl expert, I tried using Unix scripting to convert the file. It worked fine but just took too long to run. In the end I knocked up a basic routine which does about 100,000 rows a minute. Good enough for me!

Thanks again,
Dave
by DatastageSolutions
Tue Oct 02, 2007 9:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamically processing csv files based on header row
Replies: 8
Views: 3774

Dynamically processing csv files based on header row

Can anyone think of a neat solution to this problem? I've got a csv file with approximately 200 columns, which could potentially change position. The first row defines the column names and I would like to pivot the data so that I end up with one record per column along these lines: Input file: Key C...