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.
Search found 15603 matches
- 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
- 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...
- 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
- 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.
- 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...
- 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...
- 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
- 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...
- Mon Dec 12, 2005 3:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: updat or insert
- Replies: 5
- Views: 1273
- Mon Dec 12, 2005 3:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with lookup
- Replies: 2
- Views: 729
- Mon Dec 12, 2005 2:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: updat or insert
- Replies: 5
- Views: 1273
- 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
- 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
- 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...
- 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:
You can search for the string "BEGIN DSJOB" and then use the string inside quotes on the next line to get the job name.
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.