Search found 42189 matches

by chulett
Sat Apr 02, 2016 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic vertical pivot issue
Replies: 14
Views: 6235

Not really seeing a problem here as it looks like you just choose the first non-empty value of the three and output that. That's just IF-THEN-ELSE. Or am I missing something? :?
by chulett
Fri Apr 01, 2016 1:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: update then insert
Replies: 1
Views: 1390

Short answer? Yes. Use whichever has the most frequent action first. If mostly inserts chose "Insert then Update". Etc. Of course there's more to it than that but... yes.
by chulett
Fri Apr 01, 2016 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change data capture - How can I preserve certain fields?
Replies: 4
Views: 1620

Make sure you run your job on a single node, that should take any 'randomness' out of the picture.
by chulett
Fri Apr 01, 2016 8:57 am
Forum: General
Topic: Way to generate automated Excel templates?
Replies: 8
Views: 4590

Okay... but isn't that limited to canned reports based on metrics of job stats that the tool automatically captures for this very purpose? Or is it more... open... than this and something anything can be published to?
by chulett
Fri Apr 01, 2016 6:23 am
Forum: General
Topic: Way to generate automated Excel templates?
Replies: 8
Views: 4590

Kim is talking about building a formatted HTML page rather than an Excel spreadsheet by creating all of the needed "tags" manually, which could then be opened by a browser... and technically Excel as well. If that's not already in your wheelhouse (building web pages and the like so you are...
by chulett
Fri Apr 01, 2016 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: Player terminated unexpectedly
Replies: 3
Views: 2288

:!: There's no need to send Private Messages, everything gets looked at and can be answered by anyone and everyone. In the forums.
by chulett
Thu Mar 31, 2016 7:18 am
Forum: General
Topic: Way to generate automated Excel templates?
Replies: 8
Views: 4590

That's not really what ETL tools are meant / designed to do. A more typical solution would be for the ETL 'report' to be data loaded into a table and then something else, a BI tool for example, to do the dashboard Make Pretty part.
by chulett
Thu Mar 31, 2016 7:14 am
Forum: General
Topic: Error running RunImportStart.sh script on IIS 9.1.2 AIX 7.1
Replies: 1
Views: 1241

Involve support.
by chulett
Wed Mar 30, 2016 3:35 pm
Forum: General
Topic: Set to Courier Font in Log Event Detail Panel
Replies: 5
Views: 1942

I doubt you can, it probably just uses the default Windows font which would mean changing it everywhere. But perfectly happy to be proven wrong! :wink:
by chulett
Wed Mar 30, 2016 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: External string too long
Replies: 7
Views: 9452

Other than what I already posted? No.
by chulett
Wed Mar 30, 2016 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: External string too long
Replies: 7
Views: 9452

http://www-01.ibm.com/support/docview.w ... wg21962771

About all it seems to me you can tell from the message is that it is a 1 character string and it wanted to put 2 characters in it.
by chulett
Wed Mar 30, 2016 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The connector could not establish a connection to Oracle
Replies: 3
Views: 2197

I'd also be curious if this used to work and no longer does or if this is the first time you've used the connector and thus has yet to work properly.
by chulett
Wed Mar 30, 2016 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read multiple dataset (output) of a sql server procedure
Replies: 5
Views: 3105

I'm a little lost here. You have a stored procedure that somehow 'generates' three output datasets at once? Or is this 'one after the other'? And then exactly what do you need to do with this? Other than read in one go and do some manipulation, I mean. You have three different targets that you'll ne...
by chulett
Wed Mar 30, 2016 6:43 am
Forum: General
Topic: Passing User variable to Exception Handler
Replies: 11
Views: 3858

As noted by Ray, rather than using a "current timestamp" that you either pass in or generate, why not use the system variables or macros that hold the Job Start Timestamp which would be available anywhere in the job and are a constant since they are set in stone when the job actually start...
by chulett
Tue Mar 29, 2016 5:42 pm
Forum: General
Topic: Passing User variable to Exception Handler
Replies: 11
Views: 3858

That's what I suspected but had no way to verify except through others - the hard break between the exception handling and the body of the sequence is what leaves any variables not in the exception "timeline" out of reach. The 'problem' with adding another there just for the CURRTIME is it...