Search found 15603 matches

by ArndW
Tue Sep 08, 2009 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Purging Job Logs - Query regarding Code being used
Replies: 12
Views: 5034

Umm... are you sure that this code is working, even for the other logs? I would use the line TableName = "RT_LOG":FIELD(JobList, "|",2)<5> This uses the 5th field of the data, which contains the job number. The more I look at it, the more I think that the original code would neve...
by ArndW
Tue Sep 08, 2009 5:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Purging Job Logs - Query regarding Code being used
Replies: 12
Views: 5034

The dynamic variable contains the key (job name) then the record data separated with a pipe, which is why that is being displayed - the "NRO" is the first data column and means that the job is not read only. So you can ignore that display, it indicates that the job is working correctly. Yo...
by ArndW
Tue Sep 08, 2009 5:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with DS_AUDIT table
Replies: 3
Views: 1793

Couldn't that mean it was modified at 07:45 (somewhere), then written to a .dsx file and imported to the current project at 18:15?
by ArndW
Tue Sep 08, 2009 5:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL query in DS routines
Replies: 5
Views: 2011

I would not shell out to a database, but either write a routine in C++ and bind that to the job, or use a date dimension table.
by ArndW
Tue Sep 08, 2009 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow Compile
Replies: 11
Views: 3962

The slow compile is usually due to Transform stages. Is that correct in your case, meaning do the jobs that compile quickly not have transform stages?
by ArndW
Tue Sep 08, 2009 5:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to open RT_STATUS...file - when server load is heavy
Replies: 10
Views: 6120

Yes, you can raise MFILES without fear in this case. The RT_STATUSnnn files are dynamic files (Type 30) and thus affected by the T30FILE parameter, and if you had reached this limit the error message would have been clear. Or it should be, what is your T30FILE setting? Is this problem always for one...
by ArndW
Mon Sep 07, 2009 10:53 am
Forum: General
Topic: Merge Sequential Files - handling missing files
Replies: 7
Views: 1870

Can you just add a before-job UNIX call to "touch" all the files, this would create an empty file for the ones that don't exist and just update the timestamp on those that do exist.
by ArndW
Mon Sep 07, 2009 10:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file, record missing
Replies: 2
Views: 889

Could the key contain a @FM or other nondisplayable character such as a 0x0?
by ArndW
Mon Sep 07, 2009 4:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Week of the year
Replies: 3
Views: 1302

The "J" conversion will give you the day number (1-366) in the year. Since there are various rules for computing Calendar Week you will have to choose the appropriate one and do the math from there. If you can choose, then just INT(ICONV(@DATE,'MDJ')/7) for CW 0 through 52.
by ArndW
Mon Sep 07, 2009 3:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LIST.READU not showing locked jobs
Replies: 8
Views: 4074

True, using that method would release all jobs open in that session. The locks should show up in the LIST.READU command.
by ArndW
Mon Sep 07, 2009 3:25 am
Forum: General
Topic: Configuration of Information Server V 8.0.1 on Windows XP
Replies: 14
Views: 6016

The suggested will work if the server machine is the same as the client machine.
by ArndW
Mon Sep 07, 2009 2:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LIST.READU not showing locked jobs
Replies: 8
Views: 4074

Why not use the web console, as suggested earlier? It is simple and accurate.
by ArndW
Mon Sep 07, 2009 1:49 am
Forum: General
Topic: Configuration of Information Server V 8.0.1 on Windows XP
Replies: 14
Views: 6016

What URL did you use? (n.b. it expects the ":9080" port to be part of the url).
by ArndW
Mon Sep 07, 2009 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation problem
Replies: 2
Views: 945

See my response to your other thread on this same subject.
by ArndW
Mon Sep 07, 2009 1:45 am
Forum: General
Topic: Installation problem
Replies: 2
Views: 928

As far as I know, Vista is not a supported platform for the server. See IBM Infosphere DataStage for the list of supported platforms. The client must connect to a server, and you need to provide the connection information such as host name, user-id and password for that machine. If you didn't instal...