Search found 4605 matches

by kduke
Thu Aug 10, 2006 5:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project Corruption
Replies: 8
Views: 2258

Sometimes you can import part of a job. When you pull it up in Designer it says no design time information. There is nothing that says you can save any of these jobs. You can just try to save them.
by kduke
Wed Aug 09, 2006 9:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project Corruption
Replies: 8
Views: 2258

Most of the time a corrupt project can be fixed with DS.TOOLS. If you can export jobs then the project is not that bad. I would try to fix it by reindexing. UVFIXFILE can fix DS_JOBS or DS_JOBOBJECTS. The jobs you export may be worthless. You can export a job that is broken and will not import. You ...
by kduke
Wed Aug 09, 2006 9:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The routine KeyMgtGetNextValueConcurrent
Replies: 8
Views: 1747

Sure. You can point a hash file to another account. An account is the same as another project as far as you are concerned. So store the hashed file in one project and point to it from the other project.

There are several other ways using SETFILE and q-pointers if you want to search for those.
by kduke
Wed Aug 09, 2006 9:03 am
Forum: General
Topic: Error Writing to RT STATUS
Replies: 10
Views: 10893

If you do an exact search on chmod you will find several posts on how to fix this. The most complete is http://www.dsxchange.com/viewtopic.php? ... hgrp+chmod
by kduke
Wed Aug 09, 2006 9:00 am
Forum: Site/Forum
Topic: Premium Content? (I know its been done to death, but...)
Replies: 9
Views: 4732

There are only a small percentage of users who have singed up. It still does not pay for the full time webmaster. So in no way are they getting rich off this site. If they lowered the cost I doubt if any more people will sign up. There are people willing to pay to advance their careers and others do...
by kduke
Wed Aug 09, 2006 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can we define hierarchy in datastage jobs
Replies: 3
Views: 1340

The hierarchy is not described in DataStage. It is described in your sources and your targets. In other words show us your source to target mappings then you can probably build the ELT. If not then we might be able to help.
by kduke
Tue Aug 08, 2006 5:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing the Exit Status of a Shellscript and affect DS Job
Replies: 1
Views: 554

I am not sure you can directly because ssh needs to return it to DataStage. Just try it and let us know. ExecSH has a return value. You can also use execute ... capturing ... returning ...

I would search for these.
by kduke
Tue Aug 08, 2006 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find the last 10runs time of a job
Replies: 5
Views: 1687

You have to download it from one of the 2 links below my signature.
by kduke
Tue Aug 08, 2006 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find the last 10runs time of a job
Replies: 5
Views: 1687

Not sure it works with PX jobs. Never tried it.
by kduke
Tue Aug 08, 2006 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find the last 10runs time of a job
Replies: 5
Views: 1687

If you have not cleared the log then there is a job within EtlStats which will retrieve this from the log file.
by kduke
Tue Aug 08, 2006 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Line No in Job no
Replies: 8
Views: 2288

I think your second run was with a different user. If you are on UNIX then the permissions need to be set so all users running jobs are in the same default UNIX group. Next each user needs to have write permission to the whole project directory. Also each user needs to overwrite another user's files...
by kduke
Tue Aug 08, 2006 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Field function to get final delimeter of a string
Replies: 16
Views: 6063

If you still need help then let us know.
by kduke
Tue Aug 08, 2006 6:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Field function to get final delimeter of a string
Replies: 16
Views: 6063

You can write your own with Index(). Index() will find any string within another string. It returns the position of where it found it. It is fairly fast because of how it works under the covers. Index() will look for the 3rd or 4th occurance of the string. So you will need to find the position of th...
by kduke
Mon Aug 07, 2006 9:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Line No in Job no
Replies: 8
Views: 2288

You are in a catch 22 problem. It appears your process does not have write permission to the RT_LOGnnn. So it cannot log the error.
by kduke
Fri Aug 04, 2006 12:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warnings from routines returning other than 0
Replies: 20
Views: 5842

They sort of switched it. You need to use routine arguments to return values in a sequence. Newer versions allow you to use argment values as parameter values in 7.5 and above.