Search found 42189 matches

by chulett
Mon Dec 01, 2008 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the passive stage information from the Job
Replies: 3
Views: 1006

Seems like you need to call DSLogInfo with the results of the DSGetJobInfo call.
by chulett
Mon Dec 01, 2008 9:13 am
Forum: Site/Forum
Topic: Premium membership info needed
Replies: 3
Views: 4173

You emailed when? Four day holiday weekend in the states just wrapping up, ya know.
by chulett
Mon Dec 01, 2008 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delete entire rows and load the table instead of truncate
Replies: 13
Views: 3105

Oracle Enterprise stage? Use the OPEN command for that.
by chulett
Mon Dec 01, 2008 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: high availability for IIS 8.x?
Replies: 16
Views: 3810

As suggested by you I tried to search for the"High Availability of IIS Server" , but couldn't find much about it. There were 20+ posts on the subject, from what I recall. If you went through that, then you went through everything there is to be had here on the subject. As noted, the prope...
by chulett
Mon Dec 01, 2008 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage variable
Replies: 3
Views: 1713

This looks suspiciously like the problem posted by dssiddu here:

viewtopic.php?t=123886

Are you in fact working on the same "issue"? :?
by chulett
Mon Dec 01, 2008 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS server installation running on windows Advanced Server
Replies: 2
Views: 840

And? That's not a question. :?
by chulett
Mon Dec 01, 2008 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performances of the jobs
Replies: 7
Views: 1832

You've given us nothing to help you in your quest for knowledge. At the very least you'd need to give us a detailed explanation of your jobs - what sources / targets, what stages it uses, what target update actions are being performed... etc, etc. Etc. Details, man, details! There really aren't any ...
by chulett
Mon Dec 01, 2008 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage PX Log File
Replies: 2
Views: 884

It would certainly be possible if the log contains the records for multiple runs of the job. Does yours? Or is everything from a single run?
by chulett
Mon Dec 01, 2008 8:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract data from dbf parallel using odbc visual FoxPro
Replies: 4
Views: 1660

One "waiting" for the other would imply there is a locking issue and that you'll need to run the jobs in a serial fashion.
by chulett
Mon Dec 01, 2008 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File error
Replies: 2
Views: 845

It's not an error. There is a physical limit to a field size the viewer can display and you've exceeded it. If you want to see all of the data, dump the hashed file to sequential and view it outside of the tool.
by chulett
Mon Dec 01, 2008 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bulk Load Job failing
Replies: 9
Views: 2686

:? "The error exists" even if you change the directory? Or if you change the directory, everything is fine? If the latter, then obviously something is wrong with your first directory choice.
by chulett
Mon Dec 01, 2008 12:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bulk Load Job failing
Replies: 9
Views: 2686

Just for the record, what stage are you using for this "bulk load job"?
by chulett
Sun Nov 30, 2008 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot read large number value
Replies: 7
Views: 2032

Not to dwell on this issue but an Oracle Number with no precision or scale defined can still allow decimals up to 10. By default a NUMBER is really NUMBER(38,10) in oracle. Not to dwell on this issue, but you're wrong. As Mike notes, your "38,10" comes from what DataStage decides during the import ...
by chulett
Sun Nov 30, 2008 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot read large number value
Replies: 7
Views: 2032

You can't fit a 30 digit integer into a "38,10" decimal field. You should be reading an unbounded NUMBER field as "38,0". What is your target?