Search found 92 matches

by dsxdev
Wed May 25, 2005 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Source as a parameter?
Replies: 14
Views: 5287

This is absolutely right you have to uses

Code: Select all

dsjob -wait 
option to run the jobs.
by dsxdev
Wed May 25, 2005 5:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file and routine
Replies: 7
Views: 1659

are you trying to create some kind of sequence by getting a count from the hash file and add the row number. in such how arre you getting the count from the hash file to transformer. Check the from hash file as soon as you read it by using a peek stage. If you are getting avalid value then check the...
by dsxdev
Tue May 24, 2005 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server job process
Replies: 8
Views: 2226

Hi SNassimR, In DataStage Director from the menu Job -> Cleanup Resources you get a window with two text areas. Choose "show all jobs". in under both the screens. Yhis will show you all the job locks and process Id. Check for the Job name and note down the process id. Now go to unix prompt...
by dsxdev
Mon May 23, 2005 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling in PX Sequential files
Replies: 23
Views: 22647

Hi VJ, Above suggestions hold good if you have used the Null field property while writing to the file. Otherwise you will not be able to read this record. Actually Nulls do exist in Sequential files but these values are not interpreted correctly. To avoid any such prcarious situation, use Null field...
by dsxdev
Mon May 23, 2005 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Export Command
Replies: 7
Views: 2510

From the details you have provided you are working on DataStage PX on unix and the command you have quoted is for Windows version.

For unix version of DaaSatge you have a command

Code: Select all

 dsjob -<options> 
with export option.

I am not sure whether you can export a single job.
by dsxdev
Mon May 23, 2005 5:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [Help] Fatal error
Replies: 22
Views: 9325

As elavenil suggested when you export the file you get such errors when as process is not terminated. If there is any issue during export DataStage writes the error message to dsx file which is happening in your case. The object file created by DataStage on compilation of the job. All teh libraries ...
by dsxdev
Sat Dec 25, 2004 3:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to abort a job in a routine if the source file is empty?
Replies: 8
Views: 3131

You can achieve this functionality in a routine by using DSExecute and all the logic embedded inthe Code. Even Job cintrol Code would be another option.
by dsxdev
Sat Dec 25, 2004 3:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where can i get a Universe BASIC Compiler
Replies: 4
Views: 1950

how skould it be invoked first

Code: Select all

uvsh 
then followed by

Code: Select all

dssh 
or revers

Code: Select all

uvsh 
and

Code: Select all

dssh
How do these commands work?
by dsxdev
Sat Dec 25, 2004 3:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where can i get a Universe BASIC Compiler
Replies: 4
Views: 1950

Hi Ray, You quoted If you have DataStage you already have the compiler. But it should be invoked from within the dssh environment. The UniVerse BASIC compiler should be invoked from within the uvsh environment. can you just give a snippet to compile a BASIC program . Are BASIC program different from...
by dsxdev
Sat Dec 25, 2004 3:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verb "DSJOBS" is not in your VOC.
Replies: 10
Views: 2929

Hi Amos,
Can we use

Code: Select all

DSD.RUN routineName  
to run a routine. Is it possible to call routines through unix.
by dsxdev
Sat Dec 25, 2004 2:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verb "DSJOBS" is not in your VOC.
Replies: 10
Views: 2929

From which directory on server do we run DSD.RUN
Can you tell more obout DSD.RUN what is it and its functionality.
by dsxdev
Sat Dec 25, 2004 1:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get a list of jobs that use a shared container
Replies: 1
Views: 858

Simplest way would be to go to DataStage Manager->Shared Containers->sharedcontainer then do usage analysis.
It lists down all the Jobs where in this Shared container is used.
by dsxdev
Sat Dec 25, 2004 1:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: running Routines from unix prompt.
Replies: 4
Views: 2207

running Routines from unix prompt.

Hi
Is there any posibility to execute routines through unix scripts?
If so how can this be achieved ?
When we write routines where does DataStage store these routines and in what form does it store. Can we access this Data Stage Repository?
by dsxdev
Sat Dec 25, 2004 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we develop plugins for DataStage?
Replies: 3
Views: 2047

Where to find these Giudes ?

DataStage Plug-In Writer's Guide, ... etc.
by dsxdev
Wed Dec 15, 2004 9:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: the number of records
Replies: 7
Views: 2536

Hi To get the line count of a file in a Routine you can use this piece of code. Call DSExecute("UNIX","wc -l ":strFileName,Output,SystemReturnCode) If Output=0 Then -- logic to be implemented End You can read a Job parameter from the routine and assign the variable strFileName th...