Search found 42189 matches

by chulett
Sun May 17, 2009 8:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DECIMAL TO STRING
Replies: 2
Views: 1439

Sounds like you don't actually have decimal values you're working with.
by chulett
Sun May 17, 2009 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: work flow in IBM DataStage
Replies: 4
Views: 1634

The dummy file gives you something to check for, as Arnd noted. Think of it like a flag or semaphore - your Sequence job checks for the existence of the file and only if found allow the processing job to run. And there are several ways you can 'check', one way is by using a simple UNIX test function...
by chulett
Sun May 17, 2009 8:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Suppressing NLS warnings
Replies: 3
Views: 1336

ps. "I increase it to 2500 in Director" just means you have changed the default value for you on your PC when you manually launch the job from the Director. Now, if you run the Sequence job with that warning higher level, it is supposed to pass it down to all Job Activity stages automatica...
by chulett
Sun May 17, 2009 8:30 am
Forum: General
Topic: Can't save a package with the Information Server Manager
Replies: 4
Views: 1049

Thanks for coming back and posting that, especially the specific patch number.
by chulett
Sun May 17, 2009 8:28 am
Forum: General
Topic: High Availability and DataStage 8.1
Replies: 12
Views: 9425

I helped build a clustered installation of the Server product on Compaq Tru64 Alpha boxes many moons ago. However, as noted, I wouldn't consider it true "high availability" as there was no notion of what was called TAF at the time: Transparent Application Fail-over. Running jobs would all ...
by chulett
Sat May 16, 2009 8:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove the padding charachers from a string
Replies: 11
Views: 3713

I know, it was just a friendly poke in the kidneys for Petty Officer Wussing. :wink:
by chulett
Sat May 16, 2009 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to get the rejected records from oracle enterprise st
Replies: 8
Views: 4154

Exactly - logical rather than physical rejects. No job should ever knowingly violate a constraint on a table and thus should not only be aware of them all but attempt to ensure compliance with them before sending the record to the database.
by chulett
Sat May 16, 2009 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Limitation on number of instances of a job
Replies: 3
Views: 1292

Just to expand on (3) - they are like "include files", the code they contain is added to the job at compile time as if it had always been there. It's not like a discrete object that is also shared at runtime.
by chulett
Sat May 16, 2009 2:06 pm
Forum: General
Topic: java.lang.ClassNotFoundException in orbtrc files
Replies: 8
Views: 6329

As a guess, some sort of tracing option was turned on.
by chulett
Sat May 16, 2009 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to get the rejected records from oracle enterprise st
Replies: 8
Views: 4154

They're rejected for a reason and that reason is logged, regardless. A 'cheat' would be to demote what you don't want, better to fix the job and (gasp) not violate the constraint. Any reason you can't do that? :?
by chulett
Sat May 16, 2009 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Text file read aborts - Short read encountered
Replies: 8
Views: 4168

The default format is "plain csv". Since I don't have access at the moment to get all of the exact specific settings, I suggest you remove the stage then add it back in again. Add any lost metadata - filename, first line is columns, etc and then define your one string column. That should w...
by chulett
Sat May 16, 2009 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove the padding charachers from a string
Replies: 11
Views: 3713

Remember that without code tags the forum software removes all of that nasty extra white-space you accidentally put in there. :wink:
by chulett
Fri May 15, 2009 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is any way we can retrieve the "Part Num" of Datas
Replies: 7
Views: 2080

Is there any reason to believe that this internal IBM part number is even stored in the engine / software somewhere? I can't see why it would be. :?
by chulett
Fri May 15, 2009 8:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Range lookup issue
Replies: 18
Views: 5126

Tried changing that "select *" to a specific list of fields? One that exactly matches your columns in the stage?
by chulett
Fri May 15, 2009 8:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instances Dynamically.
Replies: 6
Views: 2353

Another option - open any job in the Designer and switch to the Job Control tab under the Job Properties. Use the 'Add to job' option and pick one or two jobs at random that have job parameters defined. Answer the questions that come up and then examine the code it generates to run and monitor the j...