Search found 42189 matches

by chulett
Tue Jun 15, 2010 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ABORTed due to deadlock
Replies: 1
Views: 1907

Suggest you talk to your DBA. Find out why deadlocks happen and what you can do to prevent them.
by chulett
Tue Jun 15, 2010 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Job Import Issue in 8.1
Replies: 10
Views: 4494

I would disagree with the statement that "the jobs have been successfully imported". :wink:
by chulett
Tue Jun 15, 2010 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data conversion problem
Replies: 28
Views: 24838

Exactly. Saying you changed the target column in the table to a varchar and still got "the same error" makes absolutely no sense. :?
by chulett
Tue Jun 15, 2010 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to handle duplicate records in sequential file
Replies: 7
Views: 2897

Re: with using sequential file only

ds_dwh wrote:
nagarjuna wrote:duplicates stage , sort stage , transformer stage ......
with using sequential file only
Why? :?
by chulett
Tue Jun 15, 2010 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job compilation takes about 4 hrs
Replies: 17
Views: 4849

It always takes four hours or has on occassion taken that long?
by chulett
Tue Jun 15, 2010 6:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while importing Stored Procedure in manager
Replies: 7
Views: 2104

Don't use a temp table? I can't imagine there's no other way to 'get count only'. :?
by chulett
Tue Jun 15, 2010 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Returning value from routine - error handling in sequence
Replies: 1
Views: 1204

Yes, and it has been discussed here quite a bit and there was even a webinar on the subject. Searching for "automatically handle" should turn those conversations up.
by chulett
Tue Jun 15, 2010 6:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: /tmp getting full
Replies: 7
Views: 4652

However, /tmp is really where stuff like that belongs on a UNIX server. If you are having space issues there, I would make sure of two things: 1) An appropriate amount of space has been allocated for it 2) Your SysAdmins are properly managing / pruning / culling files from there Once you move files ...
by chulett
Tue Jun 15, 2010 12:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Double Quotes in Textfields for Oracle Load
Replies: 9
Views: 2569

Why not post the actual error messages so we can all be mislead together?
by chulett
Mon Jun 14, 2010 10:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job run is happening continuously
Replies: 8
Views: 3100

Are you certain anything is actually running, meaning you see active processes for it on the box? Or is this just your classic 'status flag be stuck' situation?
by chulett
Mon Jun 14, 2010 7:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: REG SCD 1 IN Px
Replies: 5
Views: 1506

ray.wurlod wrote:We can. Overwrite the record.
I think we're more into the how than the what, Ray. :wink:
by chulett
Mon Jun 14, 2010 3:50 pm
Forum: General
Topic: How to find changed records ?
Replies: 2
Views: 1148

As noted, without some kind of properly maintained 'change timestamp' on the record, you'll need to select everything and then figure out for yourself what has changed by comparing the old and new values. That or use CRC32 if you don't care which field(s) have changed but just need to know that at l...
by chulett
Mon Jun 14, 2010 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date conversion error
Replies: 5
Views: 3686

Thanks... and unless it gets more complicated, you can do all that inside the StringToDate function rather than in several stage variables.
by chulett
Mon Jun 14, 2010 11:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Double Quotes in Textfields for Oracle Load
Replies: 9
Views: 2569

What errors were in the job's log? What about the ".log" file from the sqlldr session? Looking for the specific reason it is not liking your data.
by chulett
Mon Jun 14, 2010 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date conversion error
Replies: 5
Views: 3686

You are on the right track with padding the single digit months/days with a leading zero so it matches the format mask the conversion function needs. You can simplify what you are doing (using syntax that I don't recall off the top of my head but which has been posted here numerous times) but it sti...