Search found 42189 matches

by chulett
Thu Apr 09, 2015 12:47 pm
Forum: General
Topic: XML Stages/Realtime stages need additional license
Replies: 2
Views: 869

Re: XML Stages/Realtime stages need additional license

spuli wrote:Is there a need to buy license to use realtime stages especially XML stage?
No, you are good to go.
by chulett
Thu Apr 09, 2015 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Stage CSV column seperation to Multiple rows
Replies: 4
Views: 1445

Yes, that's a good alternative when you don't know how many columns may need to be pivoted or at least don't know the maximum number. And yes, available since 8.5.
by chulett
Thu Apr 09, 2015 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Stage CSV column seperation to Multiple rows
Replies: 4
Views: 1445

Welcome. Normally we'd start by asking things like 'what have you tried?' and 'what issues have you seen?'. Show us that you've at least tried to solve your puzzle before you came here and just posted input and output. In this case though, it's just a one word answer: pivot. More specifically: a hor...
by chulett
Thu Apr 09, 2015 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sql Server Table- Spl Character - Warning msgs & Phantom
Replies: 4
Views: 6001

You've got the "double convert" coded incorrectly. What you use for the list of characters are the GOOD ones, the ones to keep which is a finite list. Anything that does not match that list is what ends up being converted.
by chulett
Wed Apr 08, 2015 10:49 pm
Forum: General
Topic: Run script using multi instance job
Replies: 3
Views: 860

Agreed.
by chulett
Wed Apr 08, 2015 3:32 pm
Forum: General
Topic: Execute n number of jobs at a time
Replies: 13
Views: 4872

Looks to be here, copy/paste as a direct link won't work:

http://www-01.ibm.com/support/knowledge ... s/wlm.html
by chulett
Wed Apr 08, 2015 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorrect delete record count in job log
Replies: 12
Views: 3797

My understanding has always been that it is carried as part of the SQLCA or SQL Communication Area. Not really sure how (or if) one could get access to that in DataStage. Perhaps others do. Last time I recall actually taking advantage of that was way back in my Informix days. ps. Don't really see ho...
by chulett
Wed Apr 08, 2015 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorrect delete record count in job log
Replies: 12
Views: 3797

Technically 8.5 was broken and it has been corrected in 9.1. I know that's not the answer you are looking for but DataStage has always (as in from the earliest versions) reported the number of DML operations sent to the database. Meaning if you send one delete DML it logs it as one 'record' going to...
by chulett
Wed Apr 08, 2015 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorrect delete record count in job log
Replies: 12
Views: 3797

Clarify something for us so we stop making assumptions about exactly what it is you are doing. I understand your source and target are the same table. What I'm wondering is... One "ID" needs to be deleted and there are four records associated with this ID. Does the job send 1 record to the...
by chulett
Tue Apr 07, 2015 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: /app/DB2Client/DB2V97/sqllib/db2nodes.cfg' must exist and be
Replies: 8
Views: 3968

I'm curious... I see that this job is new but is this also the first time you've attempted to connect to this DB2 instance? Any DB2 instance? Or do all others work fine and the problem is just with this one job?

Wondering if you've done all the setup / configuration steps needed for DB2 access.
by chulett
Tue Apr 07, 2015 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NZ sql script calling
Replies: 6
Views: 2876

I was assuming you'd be testing your understanding then letting us know if they were indeed correct or not.
by chulett
Mon Apr 06, 2015 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading CSV file with comma and double quotes in Datastage
Replies: 7
Views: 7160

First I'd suggest you try the Server version of the Sequential File stage and see how it behaves, what you get. Document that here and then we can see where to go next if you need more help after that.
by chulett
Mon Apr 06, 2015 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading CSV file with comma and double quotes in Datastage
Replies: 7
Views: 7160

prasson_ibm wrote:Try to read the file with comma delimited and do not mention double quote in the job in file definition.
So their four columns will read / be parsed as six? Not really sure how that will help. :?
by chulett
Mon Apr 06, 2015 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading CSV file with comma and double quotes in Datastage
Replies: 7
Views: 7160

I'm curious - have you tried to read it yet? If so, what happened? The double-quotes should 'hide' the extra commas and treat them as data. If a Parallel job is having issues, try a Server job as they can handle flat files of that nature better. If for some reason that is not an option, try the Sequ...