Search found 18 matches

by ucf007
Fri Dec 02, 2005 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage scheduling
Replies: 9
Views: 5066

On the NT Platform, you can use AT commands ( on unix, crontab) ...
to schedule jobs instead of the DS schdluer.
by ucf007
Fri Oct 21, 2005 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tranformer compilation error
Replies: 19
Views: 14501

It's works on win2k also,
in your case you need to fix some parameters for the MKS Toolkit...
by ucf007
Wed Oct 12, 2005 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting the server name into the drop-down list box
Replies: 2
Views: 1530

the file is interfaces
generally found in :
/opt/opcl12.5.1/
(the sybase client location)
by ucf007
Wed Oct 12, 2005 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase Open Client Issue
Replies: 2
Views: 1346

I'm working with the sybase OC 12.5 plug-in and everything is fine, what version are u using ?
by ucf007
Wed Oct 12, 2005 11:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Omit last record from a sequential file
Replies: 13
Views: 11248

you need to preprocess the file using OS (unix) commands or a datastage routine, personally I use a DS routine to copy the selected lines (count(lines)-1) to a new file...
by ucf007
Tue Oct 11, 2005 12:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Null values
Replies: 9
Views: 2933

add in the transformer something like:
if in.field01 = 'NULL' then @NULL
by ucf007
Tue Oct 11, 2005 12:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reusable Job to be used Concurrently
Replies: 6
Views: 2396

You can use a multiple instance job, setting a different invocation ID in (one invocation ID for each call to the job) the sequencer ...
by ucf007
Tue Oct 11, 2005 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling Sequencer
Replies: 13
Views: 4526

use the option -param ...
by ucf007
Wed Oct 05, 2005 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Activity Stage
Replies: 7
Views: 4084

you need to add a sequencer stage, link the inputs to it then generate an output from it...
by ucf007
Tue Oct 04, 2005 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: single source record need load two records in the target
Replies: 10
Views: 4431

a transformer with 2 outputs will do the job, selecting the right metadata...
by ucf007
Tue Oct 04, 2005 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Encrypted parameter value displayed in Director log
Replies: 5
Views: 5130

If you are using 7.1 or 7.0 there are still few bugs related to encrypted parameters...
by ucf007
Tue Oct 04, 2005 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SYBASEOC Connection problem
Replies: 3
Views: 2041

Read the release notes there are some informations concerning the sybase open client versions compatibility with the datastage plug-in...
by ucf007
Wed Sep 21, 2005 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppression Of left zeroes
Replies: 10
Views: 7217

You can use :
Right(mystring,Len(mystring)-4)

if you hav always 4 zeros at the beginning...
by ucf007
Fri Sep 16, 2005 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer aborting when it calls a routine.
Replies: 7
Views: 2602

Hi,

When you are using a routine that returns a value inside a sequencer, you need to set the trigger to Failed (Conditional) ie the link will always be red in the sequencer design, this applies when the checkbox - Automatically handle activities that fail - in Job properties/General.

Youssef
by ucf007
Thu Sep 15, 2005 2:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting the number of records.
Replies: 3
Views: 1719

Routine ...

Here is a sample routine that works with DS/Solaris/Unix ************************************************************* ** Routine: GetFileNbRows ** Creator: Youssef Loudiyi ** Company: BI Expertise - www.biexpertise.com ************************************************************* **** Get the line ...