Search found 15603 matches

by ArndW
Thu Oct 25, 2007 7:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How 2 Count Link and List of Jobs
Replies: 2
Views: 1100

"2" is a number and not an English word. The "dsjob" command is meant to be executed from your shell, not from the TCL command line.
by ArndW
Thu Oct 25, 2007 7:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Conversions.
Replies: 4
Views: 1329

Try using "CART:string[7]=substring[0,7] (Mat)"
by ArndW
Thu Oct 25, 2007 6:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: list all the jobs which are in aborted status
Replies: 10
Views: 5720

The status of a job's last run is not available in the DS_JOBS or DS_JOBOBJECTS. Here is some code that you can run in a DataStage routine to get the results you wish. Note that this is a quickie program with no error handling and it also will not show any instances, if you have multi-instance jobs ...
by ArndW
Thu Oct 25, 2007 6:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Installation
Replies: 1
Views: 1152

No reason to post the same question twice, the answer remains the same

It will have been delivered with the product and if you cannot locate it then you need to contact whomever you purchased DataStage from to get it.
by ArndW
Thu Oct 25, 2007 3:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running a job from dos command
Replies: 4
Views: 851

Yes. Use the search function to find out how.
by ArndW
Thu Oct 25, 2007 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to check the string contains A to Z or 0 to 9 Characters
Replies: 9
Views: 1956

uppalapati2003 - you've now gotten the answer you need - just type in the 150 or so non-displayable CHAR codes (which you can look up on any ASCII chart) for your CONVERT() statement.
by ArndW
Thu Oct 25, 2007 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to check the string contains A to Z or 0 to 9 Characters
Replies: 9
Views: 1956

<sigh> this why I requested this thread "die" and even posted a link to the other thread so that people could follow it. The CONVERT() function is good, but you would need to explicitly enter a very long function for all the non-displayable characters than need to be transposed to space, i.e. CONVER...
by ArndW
Thu Oct 25, 2007 12:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to check the string contains A to Z or 0 to 9 Characters
Replies: 9
Views: 1956

Please do not double-post the same question several times, it won't help you get an answer any faster. In fact it usually has the opposite effect.

the duplicate post can be found here


Moderator - Please delete this duplicate post
by ArndW
Wed Oct 24, 2007 11:59 pm
Forum: General
Topic: Problem with deleting hashed files
Replies: 14
Views: 4731

MAnoy - in your first post you stated that you delete the HHH and D_HHH from unix using rm. You obviously did not do that. The normal removal of a hashed file from a DataStage job or by using the "DELETE.FILE {filename}" performs 3 actions that you need to do manually if something has gone awry (i.e...
by ArndW
Wed Oct 24, 2007 10:46 pm
Forum: General
Topic: Problem with deleting hashed files
Replies: 14
Views: 4731

Manoy1 wrote:...Actually, the (delete from VOC where NAME = 'HHH' ) worked.

No, it didn't work, otherwise you wouldn't be getting that error message. Try using 'DELETE VOC HHH' command and make sure the 1 record was deleted.
by ArndW
Wed Oct 24, 2007 10:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The connection is broken (81002)
Replies: 6
Views: 4119

Craig - I don't know what could be happening on your system; and I guess you don't have the luxury of removing the CPUs and resetting the configuration parameters to see if they really were the cause of your woes. I think that the base shared segment is not removed with a ipcrm -m {segment} call, bu...
by ArndW
Wed Oct 24, 2007 8:53 pm
Forum: General
Topic: Problem with deleting hashed files
Replies: 14
Views: 4731

This means your
delete from VOC where NAME = 'HHH'
did not work. Try it again or try

Code: Select all

DELETE VOC HHH
to remove the VOC entry. After that just use the approved methods in DataStage.
by ArndW
Wed Oct 24, 2007 8:26 pm
Forum: General
Topic: Problem with deleting hashed files
Replies: 14
Views: 4731

C'mon Craig - that would be far too easy.
by ArndW
Wed Oct 24, 2007 6:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How many files can File Pattern Handle
Replies: 5
Views: 1395

Parallel routines are c++ based, Server routines are DS/BASIC based. You can, with a lot of work, make external routines callable directly from DS/BASIC (that includes calling them directly in server jobs) but it involves reloading the DS core and is not undertaken lightly. So even though techinical...
by ArndW
Wed Oct 24, 2007 6:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check the Data is ready from Source
Replies: 4
Views: 1079

Use an external command stage calling "wc -l /my/file/path/testfile.txt" and check the return value for your size.