Search found 42189 matches

by chulett
Wed Jun 06, 2007 7:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage
Replies: 4
Views: 1001

One record per 'hard coded' value that is. :wink:
by chulett
Wed Jun 06, 2007 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Libraries
Replies: 3
Views: 1080

Check the Installation and Upgrade Guide pdf.
by chulett
Wed Jun 06, 2007 6:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sql from file in DB2/UDB API
Replies: 10
Views: 5078

Any particular error?
by chulett
Wed Jun 06, 2007 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete
Replies: 17
Views: 4636

What's not to understand? You told it to commit every 1000 records and only sent it 600. In that case it only commits once at the end. It will always 'commit once at the end' regardless of the setting, the setting is what drives intermediate commits. In this particular case you had none.
by chulett
Wed Jun 06, 2007 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do i find a Job by target?
Replies: 9
Views: 2864

Yes, there are other queries that can find what you are looking for, but they require intimate knowledge of the repository structure which is not made public by the vendor. Certain long-time users have that knowledge and queries have been posted here that a search could turn up, I would think. One m...
by chulett
Wed Jun 06, 2007 5:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About Oconv & Iconv
Replies: 9
Views: 2665

Your problem is the fact that you are converting the date from the format it is expecting to one that it can't use. Check your generated SQL - see the TO_DATE function and the mask it is expecting? Look familiar? What you have will work "as is", stop converting it. :?
by chulett
Wed Jun 06, 2007 5:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Prob
Replies: 2
Views: 679

Why so many substrings? Just:

Code: Select all

DateField[1,10] : " " : DateField[12,15]

Will work. Or just replace the third dash with a space:

Code: Select all

EReplace(DateField,"-"," ",1,3)
by chulett
Tue Jun 05, 2007 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Connection breaks out
Replies: 5
Views: 5045

You set the Inactivity Timeout in the Adminstrator for the server instance, and must be 'dsadm' (or equivalent) to change it.
by chulett
Tue Jun 05, 2007 5:12 pm
Forum: General
Topic: Oracle and Datastage compilation error
Replies: 4
Views: 1461

Then somebody else or some other iteration of your process 'got busy' in your table. I've seen job designs that do things 'out of order' and lock themselves out of being able to truncate tables. Or someone (yourself included) could have been in the table via your favorite tool with an inadverdant tr...
by chulett
Tue Jun 05, 2007 5:04 pm
Forum: General
Topic: Wrong dates in Hash File
Replies: 9
Views: 4030

Hmm... then it sounds like you gots more investigat'n to do. :wink:

And no, you don't have to use an Integer as the Server product is 'typeless' under the covers and basically treats everything as a string, but that's a discussion for a different day.
by chulett
Tue Jun 05, 2007 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log file corrupted
Replies: 3
Views: 1338

Code: Select all

CLEAR.FILE RT_LOG12

Re-establish any auto-purge setting afterwards.

I assume you either ran out of disk space or this hashed file went up against the 2GB Barrier and lost, yes?
by chulett
Tue Jun 05, 2007 3:31 pm
Forum: General
Topic: How to Remove Duplicates?
Replies: 14
Views: 5319

Ah... that was the key piece I was missing. Thanks Arnd.
by chulett
Tue Jun 05, 2007 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running parallel jobs on XP PROF OS
Replies: 7
Views: 1847

Didn't say it wouldn't work. Only that it is not a supported server platform. You need to understand that going into this.

And you must have the 7.5.x2 version.
by chulett
Tue Jun 05, 2007 2:58 pm
Forum: General
Topic: How to Remove Duplicates?
Replies: 14
Views: 5319

:? Why would that be? You asked "How to Remove Duplicates" and "I have a scenario where I need to delete all the duplicates from the source file". I'm curious how exactly this stage fails to work for you. Have you tried it?
by chulett
Tue Jun 05, 2007 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running parallel jobs on XP PROF OS
Replies: 7
Views: 1847

Welcome! :D Only one 7.x version of DataStage can actually run PX jobs on Windows and that's the 7.5.x2 version. Note, not 7.5.2 but literally 7.5.x2 only. Well, that and of course the new 8.x release. Second issue is XP is not a supported server platform. You may be able to get it to work but you w...