Search found 156 matches

by 1stpoint
Wed Apr 07, 2004 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Starting a Windows DataStage job from Unix.
Replies: 10
Views: 5913

code

Ken, I don't have a real elaborate version, but basically I use the os.system() module on the Windows Server called directly from the unix shell. This still requires SFU to be installed as it provides the "gateway". Python makes it platform independent. here is the essence of the code (uns...
by 1stpoint
Tue Apr 06, 2004 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Starting a Windows DataStage job from Unix.
Replies: 10
Views: 5913

Answers?

If you have a UNIX Datastage Server I would start them under UNIX itself. If you have a Windows DataStage Server why bother starting jobs via UNIX. We have a Windows DataStage server and client(s). We currently *DO NOT* have at this client a Unix license. Unix is controlling the process of running ...
by 1stpoint
Mon Apr 05, 2004 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Starting a Windows DataStage job from Unix.
Replies: 10
Views: 5913

remsh

remsh and rsh are OS programs for running commands on remote systems. From your Unix box, use remsh to execute dsjob on the Windows DS server. First you need SFU installed on the Windows Server (Unix Windows Services). Yes, it looks like we're forced to go this route. Apparently there isn't a clien...
by 1stpoint
Mon Apr 05, 2004 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Starting a Windows DataStage job from Unix.
Replies: 10
Views: 5913

Starting a Windows DataStage job from Unix.

We want to setup a unix cron process that kicks of a DataStage job on windows. Apparently the dsjob executable is not part of the DataStage client so we could not just request a Unix client for this purpose. The other method is to write a dsjob interface (DOS Batch) to start the DataStage batch and ...
by 1stpoint
Fri Apr 02, 2004 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch Job for deleting a hash file
Replies: 11
Views: 3957

missing a line

You never assigned HashFileName to it's input parameter. DataStage does not automatically make parameters available.

Add this line to the top of your batch code:

Code: Select all

HashFileName   = DSGetParamInfo(DSJ.ME,"HashFileName",DSJ.PARAMVALUE)
by 1stpoint
Fri Apr 02, 2004 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: splitting 950 lines to each Header and Line Items
Replies: 3
Views: 1381

python

I found that sometimes it's easier to write a short python script to pre process the file.
by 1stpoint
Mon Mar 29, 2004 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Long DataType - Oracle datatype not presently supported
Replies: 14
Views: 12089

Update

Ascential support has entered an enhancement request for the ORAOCI9 plugin to support long datatypes.
by 1stpoint
Wed Mar 24, 2004 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abnormal termination of Aggregator
Replies: 3
Views: 4078

good point

ray, good point. This topic should be "moved" to the DataStage forum since 5.2 is almost legacy now.

You may want to open a case with support to see if there are patches that need to be applied.
by 1stpoint
Tue Mar 23, 2004 1:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abnormal termination of Aggregator
Replies: 3
Views: 4078

ds 5/aggregator

Which specific release of DataStage 5 are you on?
I remember there being memory leaks in the aggregator and ended up getting a patch for it.
by 1stpoint
Tue Mar 23, 2004 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Long DataType - Oracle datatype not presently supported
Replies: 14
Views: 12089

Found this in Knowledge base

Topic: Oracle LONG DataTypes not supported in DataStage OCI plug-in. Product: DataStage Release: 2.2 Date Entered: 10/31/1997 Fixed in Release: Date Closed: Full Description: Oracle LONG DataTypes not supported in DataStage OCI plug-in stage. Resolution: None given. Workaound Provided: None given. ...
by 1stpoint
Tue Mar 23, 2004 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Long DataType - Oracle datatype not presently supported
Replies: 14
Views: 12089

interesting

has anyone reported this as a bug?
It's a problem with both ORAOCI8 and ORAOCI9I plugins.
by 1stpoint
Mon Mar 22, 2004 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Long DataType - Oracle datatype not presently supported
Replies: 14
Views: 12089

a big VARCHAR

Since DS/OCI Stage does not support LongVarChar, I specified a Varchar with a length of 9,999,999. Will the CLOB be truncated if the length is longer? Is it possible to specify an <unlimited> size?
by 1stpoint
Mon Mar 22, 2004 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in loading into Oracle
Replies: 8
Views: 4365

hmm

sounds like you should enroll in the basic DS Training.
by 1stpoint
Fri Mar 19, 2004 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator fails with no error
Replies: 4
Views: 2521

v5?

We are having a problem telling the Aggregator Stage that the input into the Aggregator Stage. We have only 1 Key we wish to aggregate on. On the Key on the "Input" tab we said "1" in the Sort Column and "ascending" on Sort Order. but we blew up doing this. Is there so...
by 1stpoint
Fri Mar 19, 2004 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best Method for Concatenating data from multiple rows.
Replies: 7
Views: 2871

aggregator

the Aggregator just pulls the "Last" value from the input link. I may try to instead replace it with a constraint but for now it works. If I go the constraint route I may have to put in a dummy row at then end as ray suggests.