Search found 42189 matches

by chulett
Sun Jul 25, 2010 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 XML datetype and "Datatype Not Supported"
Replies: 2
Views: 1145

If it is anything like the XMLType in Oracle, you can't simply select or update it as if it were a CLOB. Talk to your DBA or google around, I would imagine there are specific sql functions you'll need to accomplish this.
by chulett
Sun Jul 25, 2010 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding Parameters
Replies: 20
Views: 7607

BATCH_MJC_ZFD..JobControl (fatal error from KBAJobControl): Error occured getting parameter array from file - \bis_data\msg\mfr\offshore\parameters\Parameter_offshore_funds.ini By the way, this error should simply mean that it either couldn't find or couldn't open the file. Check your path and perm...
by chulett
Sun Jul 25, 2010 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference between DB2 connector/DB2 enterprise/DB2 UDB stag
Replies: 6
Views: 8824

Any reason you couldn't find that in the "Connectivity Guide for IBM DB2 Databases" pdf manual?
by chulett
Sun Jul 25, 2010 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substituting a column value in transformer
Replies: 10
Views: 2320

Reread my post. You cannot do what you are trying to do. You can use a Job Parameter directly in a DB stage query but nothing you've generated inside the job. :? You should be using two jobs for this. If you need to generate a series of values and run the second job multiple times, consider either ...
by chulett
Sun Jul 25, 2010 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGABRT Error Occured while creating XML
Replies: 4
Views: 1620

Did you try Resetting the aborted job? Does any "From previous run..." message appear in the job's log when you do? I'd also be curious how exactly you are populating / handling the trigger column and if the job works if you "disable" that part, just as a test.
by chulett
Sun Jul 25, 2010 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't insert data into an Oracle table
Replies: 5
Views: 2610

I'm curious how you are expecting any kind of 'upsert' mechanism to work on a single column? There's really nothing to update, all you can do is insert a value or not, if it already exists and no duplicates are allowed. The update will only fire if the insert fails, typically due to a unique index b...
by chulett
Sun Jul 25, 2010 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding Parameters
Replies: 20
Views: 7607

I have added some code in 'Job Control'. Ok, maybe there is a need to see some code. Tell me what the heck that means. What "code" did you add and what were you trying to accomplish? Where exactly did you add it? Did you mean you edited the KBA code or you put something under the 'Job Con...
by chulett
Sun Jul 25, 2010 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding Parameters
Replies: 20
Views: 7607

No, you didn't 'select the wrong one'. I don't need to see any code, I've got all of the KBA stuff here. Which parameter in your .ini file is part of the parameter set? All I was trying to show you was that you'll probably need to fully qualify the parameter name with the parameter set name in the i...
by chulett
Sat Jul 24, 2010 9:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split a column into multiple rows
Replies: 8
Views: 2391

... and then constrain out the nulls after that.
by chulett
Sat Jul 24, 2010 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split a column into multiple rows
Replies: 8
Views: 2391

Why not mention that originally? So... up to 160 records per? :?
by chulett
Sat Jul 24, 2010 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding Parameters
Replies: 20
Views: 7607

KBA doesn't "speak" parameter sets. It was written long before there was any such thing, so you may need to modify the "GetParameter" routines to support them properly. Before you ask, I have no idea if you'd need to do that or exactly how to do that off the top of my head and no...
by chulett
Fri Jul 23, 2010 7:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL server connection in Datastage
Replies: 4
Views: 3817

Yes, on the server rather than the client. And by the way, the 'native' driver for SQL Server EE *is* ODBC, what with both being a Microsoft product and all. :wink:

Well, that or OLE-DB, Microsoft's "successor" to ODBC, but that's a different stage.
by chulett
Fri Jul 23, 2010 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there anyway to convert PL/SQL to DataStage?
Replies: 6
Views: 3624

There's not much to explain other than you document / break down what the PL/SQL code is doing and then you 'code' the equivalent processing in a DataStage job.