Search found 15603 matches

by ArndW
Fri Feb 02, 2007 11:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wee have mystery dbx processes on our Unix server
Replies: 31
Views: 9529

The UNAVAILABLE usually refers to a session which DataStage thinks is still alive but whose UNIX process is no longer present. Usually this is because the process has terminated with an unhandled abort, most often when a "kill -9" is issued to it.
by ArndW
Fri Feb 02, 2007 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wee have mystery dbx processes on our Unix server
Replies: 31
Views: 9529

The PORT.STATUS command is not included the VOC files of any projects, only in the master UV account.
by ArndW
Fri Feb 02, 2007 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while using Fmt function
Replies: 5
Views: 1403

You probably have a PRECISION of 14 set, so using FMT and a number with more digits is not going to work correctly. Try IF DSLink3.Field001<0 THEN -':FMT(ABS(DSLink3.Field001),'11"0"R'):'.00000' ELSE FMT(DSLink3.Field001,'12"0"R'):'.00000' Note I used the ...
by ArndW
Fri Feb 02, 2007 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with failed jobs: suspended processes...
Replies: 4
Views: 997

I do understand. Did you check to see what these processes are doing using the truss command as I suggested earlier?
by ArndW
Fri Feb 02, 2007 9:25 am
Forum: General
Topic: Folder stage and network folder
Replies: 18
Views: 5619

Cesare - when you ran it from the before-job did it also display the contents of the directory? Or just not give an error? (I'm surprised that it worked, that's all). Also, could you try it with the command "dir G:\tt" as well?
by ArndW
Fri Feb 02, 2007 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence or Unique identifer across tables in PX ?
Replies: 13
Views: 3674

PX has a surrogate key stage; but it generates unique keys only within the job itself. But you can specify the starting value dynamically, i.e. through a parameter to the job. If you can think of an algorithm that ensures each job only uses a given range of numbers you can use that method. The gener...
by ArndW
Fri Feb 02, 2007 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while using Fmt function
Replies: 5
Views: 1403

Sumesh,

You don't need to use the L and R functions, or even any string formatting options at all, you can use FMT(DSLink3.Field001,'18"0"R5')
by ArndW
Fri Feb 02, 2007 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: input dataset does not have field error
Replies: 3
Views: 1482

Also note that your error is not the database access stage but in the PEEK stage.
by ArndW
Fri Feb 02, 2007 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with failed jobs: suspended processes...
Replies: 4
Views: 997

xjonny, you have posted to many problems at once and it is hard to tell now what is cause and what is effect. You have tried to bring up DataStage while there are still processes up and running, which is why the engine has not correctly started. After bringing down the engine you need to ensure that...
by ArndW
Fri Feb 02, 2007 8:35 am
Forum: Site/Forum
Topic: Getting logged out during session
Replies: 17
Views: 9495

No, it is normal navigational links; i.e. when I have the list of new posts and click on one to view it. Even though I've just looked at a previous one, I'll get the login screen again. If I close the window, reopen it at the top level then my login cookie is also gone and I need to re-enter the use...
by ArndW
Fri Feb 02, 2007 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert ASCII CHAR into ASCII BINARY format
Replies: 13
Views: 4130

I agree with Ray's suggestion. Write a SERVER job to do this. Write a routine "ConvertStringToNumAscii(InString)" with the following code: Ans = '' StringLen = LEN(InString) FOR Counter = 1 TO StringLen Ans := FMT(SEQ(InString[Counter,1],"3'0'R") NEXT Counter I added th...
by ArndW
Fri Feb 02, 2007 8:00 am
Forum: General
Topic: Folder stage and network folder
Replies: 18
Views: 5619

To take out the hashed-file variable from this and confirming that it is a mapping/permissions issue at a userid level from Windows please try to execute a DOS command in the before-job call for this job - "dir \\YourServer\YourFolder " and see what the error message is. Are you running the job with...
by ArndW
Fri Feb 02, 2007 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence or Unique identifer across tables in PX ?
Replies: 13
Views: 3674

I think using job name is better - since the JOBNO for a job may change (re-import to another project, saving of a copy, etc.).
Are you looking at something like an Oracle Sequence, but driven from DataStage?
by ArndW
Fri Feb 02, 2007 5:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenation of large strings
Replies: 2
Views: 765

String lengths of 20 and 200 are not particularly long and should cause no issues. What stage are you using for the concatenation? Have you found a length of C1 which works, and where length+1 doesn't? Is it consistent with length?
by ArndW
Fri Feb 02, 2007 3:42 am
Forum: Site/Forum
Topic: Getting logged out during session
Replies: 17
Views: 9495

Getting logged out during session

In the past 2 days I've been going through threads and at some point during the session I get the login screen when clicking on a link; it seems my session has not only been lost but when I close the explorer window and re-open it to DSXchange it has forgotten my password. This has happened to me on...