Search found 42189 matches

by chulett
Tue Apr 08, 2008 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to delete a huge log
Replies: 5
Views: 1285

Or just export it first so you don't need to futz with a backup after the delete.
by chulett
Tue Apr 08, 2008 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling jobs more than daily
Replies: 7
Views: 1865

You really should start your own post rather than jump on the end of a six year old post, but - short answer is 'yes'. Simply 'Add to Schedule' multiple times.
by chulett
Tue Apr 08, 2008 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Jobs updating the same Hash File
Replies: 8
Views: 2535

Re: Multiple Jobs updating the same Hash File

Each job stream updates the CUST_ID.hsh hash file with new CUSTID and DWH_CUST_ID values. There is a situation where each feed may have a new CUSTID and may try to insert the same DWH_CUST_ID value for two different CUSTIDs. How is this situation where 'the same DWH_CUSTID could be assigned two dif...
by chulett
Tue Apr 08, 2008 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job-Reset gets stuck
Replies: 4
Views: 1411

I've also found a need to put a short sleep - 5 seconds? - between the job reset and the job run, in spite of the -wait option. Perhaps that might help here as well.
by chulett
Mon Apr 07, 2008 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type Conversion Error........
Replies: 6
Views: 1962

Re: Type Conversion Error........

As noted in your error message:

pavans wrote:the result is non-nullable and there is no handle_null to specify a default value.
by chulett
Mon Apr 07, 2008 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type Conversion Error........
Replies: 6
Views: 1962

Curious... how do you propose to convert string values like your "WS" into a decimal?
by chulett
Mon Apr 07, 2008 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records going to peek stage........
Replies: 27
Views: 6606

Are you sure you need a 'workaround' for this? It's a character field for a reason, which more than likely means you actually have no issue. If somehow that data now needs to be stored in your database without trailing spaces, then yes you would need to arrange to have the field changed to a VARCHAR...
by chulett
Mon Apr 07, 2008 1:47 pm
Forum: Site/Forum
Topic: Effective Search By Author
Replies: 5
Views: 2781

Not sure, I didn't have that problem when I tried out what I was suggesting. Perhaps just try again and see if it is a little less... busy.
by chulett
Mon Apr 07, 2008 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records going to peek stage........
Replies: 27
Views: 6606

Handle what? As noted, one cannot trim a CHAR field. :?
by chulett
Mon Apr 07, 2008 1:24 pm
Forum: Site/Forum
Topic: Effective Search By Author
Replies: 5
Views: 2781

While, as you've noted, there's no way to constrain it I have found it simple enough to check the Author column in the search results for that same name. If there are many postings to weed through, then use the Sort By option of 'Author' was well to lump them all together.
by chulett
Mon Apr 07, 2008 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to delete a huge log
Replies: 5
Views: 1285

One suggestion would be patience. Clear it from the Status view, not the log view and then... wait. That or CLEAR.FILE RT_LOGnnnn if you know the job nnnnumber, but then you'll need to reestablish the auto-purge settings afterwards.
by chulett
Mon Apr 07, 2008 11:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cache the contents of a file while using it in a routine.
Replies: 3
Views: 749

Then you should be able to do what I said, leverage COMMON storage and a dynamic array.
by chulett
Mon Apr 07, 2008 9:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server (DRS) stage error
Replies: 5
Views: 2395

User-defined SQL?
by chulett
Mon Apr 07, 2008 9:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unknown element on the output warning
Replies: 5
Views: 1040

There you go. Time to mark the thread as Resolved, it seems.
by chulett
Mon Apr 07, 2008 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cache the contents of a file while using it in a routine.
Replies: 3
Views: 749

First thoughts were how one would do it in a BASIC Server routine, but I'm guessing that wouldn't help here. So this is a C++ routine you wrote? I'm thinking there must be some kind of equivalent you could do... for Server you would: 1. Declare COMMON storage 2. Declare an array to hold the file con...