Search found 53125 matches

by ray.wurlod
Tue Jan 25, 2005 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cannot give exclusive permissions......A strange problem
Replies: 5
Views: 1937

There may be a database lock on the repository owned by a defunct process. To determine whether this is the case, execute these commands. . $DSHOME/dsenv $DSHOME/bin/list_readu | grep RU | grep -v : If there is a lock you will see it in this report. The name of the job will appear in the rightmost c...
by ray.wurlod
Tue Jan 25, 2005 1:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to change job parameter based on each record
Replies: 3
Views: 1435

No.

It is simply not possible to change the value of a job parameter while the job is running.
by ray.wurlod
Mon Jan 24, 2005 8:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Could not load dsstpora.so
Replies: 25
Views: 9079

The library dssybctl.so should be in /ETL-batch/Ascential/DataStage/DSEngine/lib; please check that it is, and that the executing user for DataStage jobs has read and execute permission to it.
by ray.wurlod
Mon Jan 24, 2005 8:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo
Replies: 2
Views: 1043

From DSINCLUDE/JOBCONTROL.H Equ DSJE.BADLINK To -9 ;* LinkName does not refer to a known link of the stage Are you certain that the value passed from the Input Values field (to the InputArg argument) is correctly spelled and correctly cased? Even in your post you've been careless with case (DSgetLin...
by ray.wurlod
Mon Jan 24, 2005 8:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to make .exe from exported jobs
Replies: 4
Views: 961

A DataStage export is created on the client machine. You don't need to move it to be able to import what was exported into another project on another host. All you have to do is to connect to the other host (which must, of course, have DataStage (legally) installed). In the common connection dialog ...
by ray.wurlod
Mon Jan 24, 2005 7:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating XML Files from DS PX
Replies: 8
Views: 3195

T42 means a shared container, containing server job components (specifically the XMLWriter stage).
by ray.wurlod
Mon Jan 24, 2005 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: accesssing a hash file in a Basic routine
Replies: 3
Views: 715

Welcome aboard! :D

I need to write a Datastage basic routine to lookup a hash file and return the result.

Why? This is exactly what the Hashed File stage does! Why do you want to re-write DataStage functionality in code (to be used within DataStage!), which you then need to maintain? :?
by ray.wurlod
Mon Jan 24, 2005 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Could not load dsstpora.so
Replies: 25
Views: 9079

Welcome aboard! :D

Have you checked all the things that were mentioned earlier in this thread?
by ray.wurlod
Mon Jan 24, 2005 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL within Server Routine
Replies: 2
Views: 822

If you have a problem extracting it in SQL, why not use the DataStage system variable @INROWNUM? This gives a count of the input row numbers on the input link to a (Transformer) stage, starting at 1 and increasing by 1 for each row processed. Sorting in the SELECT statement does not impact the value...
by ray.wurlod
Mon Jan 24, 2005 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is table definition shared?
Replies: 4
Views: 1446

Welcome aboard! :D What you seek is not delivered in DataStage. One of the reasons is that so much of the SQL can be job parameters - table owner, table name, constants in a WHERE clause. It's true that you can not use job parameters as column names, but there is no search-and-replace facility for c...
by ray.wurlod
Mon Jan 24, 2005 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Test Cases for PX jobs
Replies: 9
Views: 2689

Creating test data is an art. It helps if you're cynical, suspicious, or even outright paranoid. Ideally you test every possible condition. Practically, you test all, or most, likely combinations of conditions. You create a test plan showing the test data to be used in each case, the expected outcom...
by ray.wurlod
Mon Jan 24, 2005 4:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: year from sysdate
Replies: 2
Views: 785

date +"%Y"
by ray.wurlod
Mon Jan 24, 2005 4:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with sort and group by
Replies: 4
Views: 1552

A Routine of type "transform function" is invoked for every row processed, accepting one or more argument values and returning one value (though this can be a dynamic array, and other values can be returned through system variables). A simple routine can return the sum of the current and previous tw...
by ray.wurlod
Mon Jan 24, 2005 1:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with sort and group by
Replies: 4
Views: 1552

Welcome aboard! :D Obviously, from your description, you've gotten the lookup part fairly well sorted out, and now you seek to take the sum of base amount the three highest PPERIOD_CD values in each particular PYEAR_NUM. To accomplish this you need to be able to remember the two previous values. If ...
by ray.wurlod
Sun Jan 23, 2005 8:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch and job calling sequence - interesting
Replies: 2
Views: 890

What do you want in your report if a job is only conditionally executed in the batch? This can be achieved in a Job Sequence via triggers and/or a nested condition and, of course, in a hand-coded Job Control routine.