Search found 92 matches

by Klaus Schaefer
Thu Jul 13, 2006 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invoke Datastage Server/Parallel job from c++ program
Replies: 2
Views: 3436

Just test it out ;-)

Unfortunatly I'm neither a c++ guru nor having experience in working with DS API-calls from external programs...

Klaus
by Klaus Schaefer
Thu Jul 13, 2006 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invoke Datastage Server/Parallel job from c++ program
Replies: 2
Views: 3436

Re: Invoke Datastage Server/Parallel job from c++ program

Have a look at the Server Job Developers Guide, chapter "DataStage Development Kit (Job Control Interfaces)".

It describes all API-calls. Should be valid for server and EE jobs.

Klaus
by Klaus Schaefer
Thu Jul 13, 2006 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error Could not find input field "Col1".
Replies: 9
Views: 4777

Re: error Could not find input field "Col1".

Can you do view data on Sequential_File_2? Looks like data format issue. Can you peek without MODIFY stage?

Klaus
by Klaus Schaefer
Thu Jul 06, 2006 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Sequence from command line
Replies: 11
Views: 3224

Re: Running Sequence from command line

Your sequence seems to be aborting for some reason. You should first look into why it is aborting, because this will set your sequence into a "not runnable" state. If you trigger your sequence from a job activity, you could use the execution action "reset if required then run" to...
by Klaus Schaefer
Thu Jul 06, 2006 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: USING SEQUENCER's
Replies: 3
Views: 1571

Actually the Sequencer functionality is described in the "Designer Guide". Please have a look at this, it shall give you a good overview and details on what you can achieve with the job sequencer. The job sequencer can be used for both server and EE-jobs. It can even run a mix of jobs. Klaus
by Klaus Schaefer
Mon Jul 03, 2006 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Stage by itself
Replies: 8
Views: 3707

Re: Command Stage by itself

well, yes, that's a known feature....

You may also consider writing a job control job instead and use the DSExecute function. You're then flexible in constructing the DOS command and have it run as an independend job.

Klaus
by Klaus Schaefer
Mon Jul 03, 2006 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to set NLS to NONE in Parallel Job?
Replies: 2
Views: 2318

You need to define the data of type "raw" in schema,

e.g.: data:nullable raw[max=65535]

which translates into LongVarBinary in DS table definition, to have them not go through NLS mapping.

klaus
by Klaus Schaefer
Mon Jul 03, 2006 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Stage by itself
Replies: 8
Views: 3707

Re: Command Stage by itself

Better use command activity in job sequencer for this.

Klaus
by Klaus Schaefer
Fri Jun 30, 2006 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in routine
Replies: 11
Views: 3988

Re: error in routine

Specify:

Deffun KeyMgtGetNextValue(A1) Calling "DSX.KeyMgtGetNextValue"

in the first line of your routine.

Klaus
by Klaus Schaefer
Thu Jun 29, 2006 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between Control job and Sequencer....
Replies: 10
Views: 5956

The sequencer functionality is described in the "Designer Guide". Have a look at you DS client installation:

Start/All Programs/Ascential Datastage/DataStage Docu 7.51A and choose "Designer Guide".

Best regards
Klaus
by Klaus Schaefer
Wed Jun 28, 2006 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2-Fast load stage
Replies: 3
Views: 2084

Ah, that's fine!

> property for "FILE TYPE MODIFIER"

I have never recognized/tested that option in the stage... ;-)

Happy loading!

Klaus
by Klaus Schaefer
Wed Jun 28, 2006 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2-Fast load stage
Replies: 3
Views: 2084

Re: Db2-Fast load stage

Narendra, I think you have to modify the generated load script, e.g.: ... MODIFIED BY codepage=819 ... Look for the "MODIFIED BY" phrase and insert the "codepage=xxx" after this. I had to do it once for German Umlaute loading, and then it worked. So for the load stage, you should...
by Klaus Schaefer
Tue Jun 27, 2006 3:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 4
Views: 1330

Re: Parallel Routine

Bala,

you should move this entry to the parallel forum, as this is an issue regarding DSEE...

Not sure if this error has to do with your function. Do you have a reject link specified in the transformer?
Does it compile without using the function in the transformer?

Klaus
by Klaus Schaefer
Mon Jun 26, 2006 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: run time fatal error : Player 12 terminated unexpectedly
Replies: 23
Views: 10893

Re: run time fatal error : Player 12 terminated unexpectedly

"This looks similar to problems relating to Time Based Job Monitoring that have been experienced by other customers and is also documented in the datastage readme.txt (see extract below): Time Based Job Monitoring - Intermittent Problems ------------------------------------------------- Intermi...
by Klaus Schaefer
Mon Jun 26, 2006 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transfering data from one job to another in a sequencer
Replies: 6
Views: 2575

Re: Transfering data from one job to another in a sequencer

If you store the records it in a EE DataSet - quick and VERY performant - they will be in memory if you act on them with a lookup in job b.

Klaus