Search found 15603 matches

by ArndW
Wed Jan 20, 2010 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: get running job sequncers list
Replies: 6
Views: 1627

You would do this in a server job or via a server routine.

1. Get a list of all jobs (DSGetProjectInfo())
2. Go through the list and open up each job and see if it is a sequence (DSGetJobInfo(Handle,))
3. Get the job status (DSGetJobInfo(Handle,DSJ.JOBSTATUS)
by ArndW
Wed Jan 20, 2010 4:59 am
Forum: General
Topic: CORBA Marshall access issue
Replies: 2
Views: 1981

from the DOS command line try

ping 10.142.193.28
telnet 10.142.193.28 1858
by ArndW
Wed Jan 20, 2010 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I restart the server after particular job finished?
Replies: 32
Views: 37342

qutesanju:

a) All UVCONFIG assignments are made with commands such as UVTEMP={value}. Check the other assignments before and after and then check your UVTEMP again, if it is missing the path assignment then you have found your error

b) what are you telling us to check? :?:
by ArndW
Wed Jan 20, 2010 4:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSTAGE-TODC-00053 not found
Replies: 3
Views: 1711

I just saw that you are working under windows, it has been a while since I've used DS and windows so perhaps those variables are not required. Perhaps someone with Windows could cross-check this.
by ArndW
Wed Jan 20, 2010 4:46 am
Forum: General
Topic: How to run UV commands from Unix
Replies: 15
Views: 21580

There is another problem with your command. the "SELECT" verb also exists with the DataStage query language and DS detects the different flavours (DS syntax or SQL syntax) by looking for a ";" terminator in the command, if that is not present then it is assuming the standard Data...
by ArndW
Wed Jan 20, 2010 4:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Coverting into 2 months Back
Replies: 6
Views: 1970

What is your definition of "2 months". If it is "60 days" then you could convert your date to day-of-year, subtract 60, then convert back to a date (checking for negative numbers on the way). If you define 2 months as "same day number 2 months back" then you need to add...
by ArndW
Wed Jan 20, 2010 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequnce in parallel
Replies: 2
Views: 895

If you turn on APT_DUMP_SCORE for your jobs you will be able to see how many processes each starts. Add up the numbers for all jobs started by your 14 sequences that run in parallel - how many processes do you have and what sort of a hardware configuration do you have (CPUs,Memory)? That is more lik...
by ArndW
Wed Jan 20, 2010 4:34 am
Forum: IBM QualityStage
Topic: Use of the Filescan utility on Unix
Replies: 4
Views: 1595

"filescan" is not, to my knowledge, a standard UNIX command in any flavor I know of.
by ArndW
Wed Jan 20, 2010 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Left Zero fill, force to field length
Replies: 11
Views: 6460

The transform function Right('000000000000':In.AD-ACCT-ID,12) on a string.
by ArndW
Wed Jan 20, 2010 4:31 am
Forum: General
Topic: About External source stage
Replies: 2
Views: 945

Yes, you can - but you need to do more programming work than if you used the appropriate DataStage database stage(s).
by ArndW
Wed Jan 20, 2010 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS-PX Day from Date
Replies: 4
Views: 1359

With the "%e" or "%E" format of DateToString() you can get the numeric day-of-week for a given date, and with "%ddd" you can get the numeric day-of-year for that date. Subtract the day-of-week from the day-of-year and then reconvert to a date using StringToDate() and yo...
by ArndW
Wed Jan 20, 2010 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp Conversion
Replies: 9
Views: 3459

Kumar66, A timestamp (and date, time as well as all numeric datatypes) has no format ; thus what you are doing when going from one timestamp to another timestamp is using up CPU but not changing any value at all. All of the 'binary' datatypes are without a format until they are assigned to a string ...
by ArndW
Wed Jan 20, 2010 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date_from_ustring
Replies: 5
Views: 1651

Your picture for the conversion has 10 characters, but your string only holds 8.

p.s. please delete your duplicate post before someone responds to it.
by ArndW
Tue Jan 19, 2010 5:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs shown in Director but not shown in designer
Replies: 9
Views: 4340

So now you have a corrupt repository, perhaps a discrepancy between the xmeta and DS repositories that cannot be reconciled. If you do a full project export, create a new project and import the file, are the "missing" jobs present? If yes, it might be quickest to just delete that corrupt p...
by ArndW
Tue Jan 19, 2010 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs shown in Director but not shown in designer
Replies: 9
Views: 4340

Narrow the problem down to one job that you see in the director and not designer list. From the director, click on the job in question and then the "Tools -> Designer", does it open up the job in the Designer and, if so, is the job shown correctly and does it appear in the designer list?