Search found 93 matches

by MarkB
Mon Jul 11, 2011 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HASH TABLE
Replies: 4
Views: 1922

I guess it would be the same as any other table for food ... you put the hash on the table and serve it from there :twisted:

If you mean a hashed file, that is a server-specific topic, and you are posting in the Parallel forum.

So when's the interview???
by MarkB
Thu Jul 07, 2011 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems using File Pattern option with DataStage in Windows
Replies: 9
Views: 5942

Just for fun, try specifying the file path instead of a parameter and see what happens. I've tried it using #PARAMNAME#test*.txt, where the PARAMNAME parameter is set as type pathname, and as a regular path, like D:\MyPath\ - works both ways. Is it possible you've defined your #PATHTOFILE# parameter...
by MarkB
Tue Jun 28, 2011 11:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Hangs when Trying to Import From Lotus Notes
Replies: 6
Views: 5896

Well, it's been awhile ... we've had 'fun' working with IBM Support to try and solve this. We could actually run a sample OSH file at the command line and connect to a Lotus Notes file, but not through the GUI. Finally, we are now able to import metadata from a Lotus Notes 'database' (i.e. a .nsf fi...
by MarkB
Mon Jun 20, 2011 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Attach large Files (20 MB) and above
Replies: 5
Views: 4231

I guess the first thought is - why is the file size so huge? Any way to pare down the size? Other than that, a .csv file is just text, and zipping it should drastically reduce the size of it. I can't see it being an issue.
by MarkB
Fri Jun 17, 2011 7:55 am
Forum: General
Topic: Installation Issues in V8.1
Replies: 1
Views: 2535

Where to start??? :roll:

First, your RAM is woefully inadequate, and I'd certainly want more than 75GB on a disk. More importantly, though, DataStage 8.1 Server needs Windows Server 2003 ... it isn't supported on Windows XP.
by MarkB
Fri Jun 10, 2011 4:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff between
Replies: 3
Views: 3808

When's the interview???? :roll:

Try RTFM.
by MarkB
Tue Jun 07, 2011 9:16 am
Forum: General
Topic: Any Env Variable to Suppress Warnings in DS
Replies: 4
Views: 3170

No need for an ENV variable. Just go to the Limits tab and check 'No Limit' under warnings.
by MarkB
Tue Jun 07, 2011 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage
Replies: 2
Views: 1347

When's the interview?? :roll:
by MarkB
Mon Jun 06, 2011 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer compilation eror
Replies: 12
Views: 11110

ray.wurlod wrote:VS2008 is supported for DataStage version 8.5.

You still have not advised the settings of the four project environment variables in the Compiler folder, as requested. ...
Which is why I mentioned what I did about VS2008 not being supported - he said he was on DataStage 8.0 ...
by MarkB
Fri Jun 03, 2011 11:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer compilation eror
Replies: 12
Views: 11110

At least up to 8.1, VS 2008 wasn't supported by IBM - only 2003 and 2005.
by MarkB
Wed May 25, 2011 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null values are dropped in the tranformer stage
Replies: 2
Views: 2359

Make sure in your Sequential File stage that you are setting a null value. Go to the Format Tab, and then Field Defaults. You can then specify the null value. Of course, make sure that nullable fields are also set as being nullable.
by MarkB
Fri May 20, 2011 7:02 am
Forum: General
Topic: help in DSJOB command
Replies: 16
Views: 12106

Forgot about the -wait duh - not enough coffee yet ... though my Kornshell remarks stay the same ... 8)
by MarkB
Fri May 20, 2011 6:24 am
Forum: General
Topic: help in DSJOB command
Replies: 16
Views: 12106

Maybe you should check your Kornshell reference for proper syntax ... this is a DataStage forum, not a Kornshell forum :roll: Have you tried something like (not tested) .... #!/bin/ksh typeset -i i=0 while [[ $i <= 100 ]]; do dsjob command & wait insert error checking routine here ((i+=1)) done
by MarkB
Fri May 20, 2011 5:41 am
Forum: General
Topic: help in DSJOB command
Replies: 16
Views: 12106

Look at my post ... after the dsjob command you need an ampersand (i.e. &) to put the job into the background ... then the wait command should work.
by MarkB
Fri May 20, 2011 5:23 am
Forum: General
Topic: help in DSJOB command
Replies: 16
Views: 12106

If you are using KornShell, you can wait for the job to finish by using the wait command.

Code: Select all

dsjob blah blah &
wait
For a sequence, set the sequence as adding checkpoints to be restartable, and in your Job Activity set the Execution Action to Reset if Required, Then Run.