Search found 15603 matches

by ArndW
Mon Dec 12, 2005 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: executing a batch file from unix
Replies: 4
Views: 1511

Dsquestion,

no, you cannot. All jobs are executed exclusively on the DataStage server machine.

There are ways you can make a UNIX server execute a .BAT script on a windows machine, but they are outside of the scope of the DataStage product.
by ArndW
Mon Dec 12, 2005 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information carried by a link
Replies: 4
Views: 943

If you used the canvas and added a new DB/2 stage and dragged the link across then the stage information will also be transferred over; this is different from the link information. If you were to drag your link to a dataset and then drag it back to the DB/2 stage your table and DB/2 connection infor...
by ArndW
Mon Dec 12, 2005 5:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiler/License issues
Replies: 3
Views: 3201

The c++ compiler license limits the number of concurrent compiles that you can do; if you try to exceed this limit the warnings that you are seeing are issued. This is only a warning message; perhaps the error about inability to find a license is just an artefact.
by ArndW
Mon Dec 12, 2005 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: function & a transform
Replies: 5
Views: 1300

Many people have answered that question in this forum before. Doing a search will return many helpful threads, including this one.
by ArndW
Mon Dec 12, 2005 4:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort Stage Problem
Replies: 5
Views: 1933

sansan, I think that instead of addressing your actual problem with the sort stage you should try to do this sort step using the windows "sort" command - it might give you somewhat better performance. The sort stage doesn't have any problems with 500K rows normally. If you watch the processes in Win...
by ArndW
Mon Dec 12, 2005 4:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding config file
Replies: 5
Views: 1662

rkdatastage, I did a quick search of this forum using the terms "config" and "file" and got 292 hits; that would make a good starting point. The question is far too broad and sound suspiciously like an interview question. The "config file" you are referring to doesn't exist directly. You have a "uvc...
by ArndW
Mon Dec 12, 2005 4:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Or View Does not exist
Replies: 7
Views: 3890

Are you fully qualifying the table name with {schema}.{tablename}?
by ArndW
Mon Dec 12, 2005 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: equivalent for Between function
Replies: 8
Views: 1822

Can you give us exact values for your 3 variables? Put an output link to a dummy text file with the 3 columns, plus you can also add 2 extra columns containing your derivations "stageVariable1 >= StageVariable2" and also "stageVariable1 <= stageVariable3"; these will have the value of either 0 for F...
by ArndW
Mon Dec 12, 2005 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: updat or insert
Replies: 5
Views: 1273

This "condition" is part of the OCI stage attributes and is not done in a transform stage. From your description you would want to do a "update existing or insert new" in the OCI stage.
by ArndW
Mon Dec 12, 2005 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with lookup
Replies: 2
Views: 729

Ragu,

if the lookup on the reference fails you can also get null values in the columns. Have you checked the NOTFOUND variable in the constraint?
by ArndW
Mon Dec 12, 2005 2:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: updat or insert
Replies: 5
Views: 1273

The method you use depends upon the target database stage. If you are using Oracle then there is a "update or insert" as well as a "insert or update" option.
by ArndW
Mon Dec 12, 2005 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine for Before/After Job Processing
Replies: 3
Views: 1002

The "Before/After" subroutines for both server and PX jobs are the same, they are coded in the basic language. If you wish to use another programming language for these routines can can do that, but they still need to be called through a piece of BASIC code.
by ArndW
Mon Dec 12, 2005 1:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job recovery
Replies: 16
Views: 4573

No, once the job is deleted all information about that job is irretrievably gone and no recovery is possible.
by ArndW
Sun Dec 11, 2005 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with IsNull function
Replies: 9
Views: 5764

koolnitz, in your case the error message is most likely generated by a misconfigured c++ compiler - it is used when a job has transform stages and would explain that other jobs are correctly compiling. But you also seem to have an installation using more CPUs than you have licensed. I trust that thi...
by ArndW
Sat Dec 10, 2005 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to parse dsx
Replies: 4
Views: 1686

A dsx file will contain two lines that denote the beginning of a new job:

Code: Select all

BEGIN DSJOB
   Identifier "ProcessFTP"


You can search for the string "BEGIN DSJOB" and then use the string inside quotes on the next line to get the job name.