Search found 53125 matches

by ray.wurlod
Fri Oct 20, 2006 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Valid values of DSJ.STAGESTATUS
Replies: 6
Views: 1483

DSJ.STATUS is JOB status, not stage status. Job status is returned by DSGetJobInfo; stage status is returned by DSGetStageInfo.
by ray.wurlod
Fri Oct 20, 2006 9:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can we reset a datastage job using datastage coding
Replies: 7
Views: 8704

Create a job sequence containing a job activity. Set the run property to "reset if required, then run". On the job properties window examine the code produced by compiling this job sequence. Emulate that code.
by ray.wurlod
Fri Oct 20, 2006 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need for loop in basic code
Replies: 14
Views: 5526

:idea: NEVER put OpenSeq inside a loop!
by ray.wurlod
Fri Oct 20, 2006 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax for SQLConnect command
Replies: 1
Views: 772

It's not a command, it's a function. You first need to have allocated an ODBC environment using SQLAllocEnv() and a connection using SQLAllocConnect(). You may then wish to set connection options using SQLSetConnectionOptions(). The syntax of SQLConnect() varies depending on exactly what you want to...
by ray.wurlod
Fri Oct 20, 2006 8:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage error: User Id is a required stage property
Replies: 8
Views: 3220

My guess is that UserId is used internally as a variable name therefore making it the name of a job parameter introduced ambiguity into usage of that particular variable.
by ray.wurlod
Fri Oct 20, 2006 8:50 am
Forum: General
Topic: Ship Date, *Stage 8.0
Replies: 7
Views: 4504

The architecture is radically changed. UniVerse, technically, has not been the Repository database since version 5.2. Since then it's been DataStage (child of UniVerse). In version 8.0 this is no longer a choice; the choices are DB2 v9, Oracle v10g or SQL Server. However, DataStage Engine continues ...
by ray.wurlod
Thu Oct 19, 2006 10:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob status code 1 & 2
Replies: 9
Views: 21439

No different effect on the running of the job from -jobstatus ; either option will cause the dsjob command. The difference is that -wait does not emit a job status report and emits the exit status of dsjob rather than the exit status of the job. From memory the -wait option emits the job status on f...
by ray.wurlod
Thu Oct 19, 2006 8:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill
Replies: 4
Views: 1023

You don't want to, for the reasons I gave.

Use "Cleanup Resources" in Director to log out process(es) in a job, or the equivalent function from the DS.TOOLS menu. That's the safe way.

The unsafe way is to use Task Manager on the server machine. If you do, you're on your own.
by ray.wurlod
Thu Oct 19, 2006 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file as a stage variable
Replies: 2
Views: 836

You can only initialize the stage variable successfully by creating a routine that reads the file, and invoking that routine.
by ray.wurlod
Thu Oct 19, 2006 8:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Share Container
Replies: 12
Views: 4043

What is the job design of the shared container? What is it intended to do? Does it have any of its own parameters? Did you get any warning messages logged? If so, please post the text thereof.
by ray.wurlod
Thu Oct 19, 2006 8:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage error: User Id is a required stage property
Replies: 8
Views: 3220

It doesn't really matter; it has to be supplied
by ray.wurlod
Thu Oct 19, 2006 8:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem running osh shell
Replies: 7
Views: 2060

APT_CONFIG_FILE needs to point to a configuration file, by default $DSHOME/../Configurations/default.apt

APT_ORCHHOME needs to point to the parallel engine directory, by default $DSHOME/../PXEngine
by ray.wurlod
Thu Oct 19, 2006 8:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem running osh shell
Replies: 7
Views: 2060

APT_CONFIG_FILE needs to contain the pathname of a configuration file, for example $DSHOME/../Configurations/default.apt

APT_ORCHHOME needs to contain the location of the parallel engine directory, by default $DSHOME/../PXEngine
by ray.wurlod
Thu Oct 19, 2006 8:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Advice on generating OSH script
Replies: 10
Views: 3738

Create a job containing no table definitions ("metadata"). Save the job so that it gets a name. Go to the New menu and create a new template from that job. Once that's done, as many times as needed go back to the New menu and choose create job from template; name the job and load the requisite table...
by ray.wurlod
Thu Oct 19, 2006 8:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting data from flat files
Replies: 9
Views: 2182

The easiest way to get this right is as follows. Import the table definition for the sequential file. When on the Format tab, check the "fixed width" check box, then fill in the ten column widths as a comma separated list in the indicated field. Complete the import then load the table definition int...