Search found 42189 matches

by chulett
Tue Jan 15, 2013 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage slapping value -05:00 automatically while loading
Replies: 11
Views: 2679

What database? Can you be more specific as to the "timestamp" source and target columns - what exact data type are they? And a specific example of what "slapped with" means would be nice.
by chulett
Tue Jan 15, 2013 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loss of performance for Loading Oracle
Replies: 3
Views: 1088

Any "performance loss" with upserts is typically due to full table scans. Are there indexes in place for the where clause columns? Stats up to date?
by chulett
Tue Jan 15, 2013 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate Id's based on the key field
Replies: 4
Views: 1690

cherry wrote:Let not confuse with the sample data above.
Best way to not confuse people? Don't post "simple" or made up sample data, make sure it is representative of the actual data. That way people don't post invalid answers.

As to your "any idea" question I'd already posted a solution.
by chulett
Tue Jan 15, 2013 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Force a warning depending on Procedure Execution Result
Replies: 6
Views: 1563

Perhaps just a call to DSLogFatal() depending on the outcome of the output variable check?
by chulett
Tue Jan 15, 2013 8:25 am
Forum: General
Topic: DSParam and DSEnv file
Replies: 3
Views: 2905

DSparam is automatically created for you. So what exactly have you been tasked with? Do you have an existing project they want you to transfer DSParam information from?
by chulett
Tue Jan 15, 2013 1:00 am
Forum: General
Topic: Looping in Sequencer
Replies: 5
Views: 1829

DIR /B is a "bare" listing of filenames, equivalent to "ls -1" in UNIX. An "ls" with the "-m" option actually creates a comma-delimited list of filenames, ready to go. Hence the recommendation. Regardless, you'd still need to deal with the Field Mark at the end.
by chulett
Mon Jan 14, 2013 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborts if composite key columns are passed as a parametr
Replies: 7
Views: 4345

I would ask if you finally involved support but worry it would be two or three weeks again before the answer came. And I have a funny feeling we already know the answer...
by chulett
Mon Jan 14, 2013 11:23 pm
Forum: General
Topic: Looping in Sequencer
Replies: 5
Views: 1829

I'm curious what exactly you tried for step 3 and what "it's not working" means. Also, are you familiar with the $Counter functionality that Ray mentioned? The examples in the documentation are decent and an exact search here for that should turn up a number of previous conversations on th...
by chulett
Mon Jan 14, 2013 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove special characters from XML file
Replies: 8
Views: 3395

eostic wrote:They might mean escaping them in various ways as per xml rules....so that a '<' comes thru escaped as < or '&' becomes & .
Which is what I meant when I said made "safe"... could have sworn that was the term for that substitution.
by chulett
Mon Jan 14, 2013 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate Id's based on the key field
Replies: 4
Views: 1690

I'm guessing your example posted is not representative of the actual data, if it was you'd just use the BENEFIT to number the ENTITY_ID. Meaning there'd be no reason to generate or increment anything. However... Use a Sort stage to get the data into the proper order and have it generate a Key Change...
by chulett
Mon Jan 14, 2013 12:06 am
Forum: General
Topic: Delete job logs while retaining most recent run
Replies: 2
Views: 808

Re: Delete job logs while retaining most recent run

ON the subject of deleting old job logs in the &PH& directory. The problem is the files in the "phantom" &PH& directory are not the job logs. They are files used to communicate the status of the background processes that all jobs run as. That's why the recommendation is to...
by chulett
Sun Jan 13, 2013 11:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage ..for any server job on DS 8.5
Replies: 5
Views: 6398

It wasn't my issue, so no.

Best to start your own post on the subject with the gory details of your problem.
by chulett
Sun Jan 13, 2013 9:12 am
Forum: General
Topic: Not able to open Datastage log
Replies: 2
Views: 1146

Well, here we are in the correct forum now...
by chulett
Sat Jan 12, 2013 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Division by Zero
Replies: 4
Views: 1618

More than likely that is the issue. Fix the division error and you'll see.
by chulett
Sat Jan 12, 2013 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Packed decimal CFF Stage
Replies: 6
Views: 2162

You're outputing 'decimal' fields to the flat file, I assume. From what I recall, those are written in binary and the DataStage options you are using to display them are aware of that and convert them for you when they display the fields. The raw file viewed 'in UNIX' will not be able to display the...