Search found 42189 matches

by chulett
Mon Mar 23, 2015 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order of Columns in Select Query and metadata!!!
Replies: 2
Views: 1597

First thing that comes to mind is why are you writing the SQL? If you let the Connector automatically generate it by setting Generate SQL at runtime to Yes, you won't have to worry about things like that. Provide the SQL only if it is something that the stage is incapable of generating. That being s...
by chulett
Mon Mar 23, 2015 7:29 am
Forum: General
Topic: Unable to rename or delete jobs
Replies: 8
Views: 2057

Can you provide some... details, please? Some starter questions: 1) Define 'long time'. Only for jobs with transformers or all jobs? 2) What happens? What error message do you get? 3) Define 'long time'. Some or all stages? 4) Corrupt how? When? And for the 'long time' bits, are you remote / far awa...
by chulett
Mon Mar 23, 2015 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delete on table which has simultaneous inserts
Replies: 2
Views: 1538

I don't see anywhere that the DB2 Connector let's you control the level of locking used - however you can lock the entire table should you so desire. Plus I see a 'Lock with force' property for how to deal with any other applications that hold conflicting locks. In your shoes I'd have a chat with yo...
by chulett
Mon Mar 23, 2015 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue while reading Binary data using CFF stage
Replies: 11
Views: 4921

So not a workaround but rather the resolution. Marking as such.
by chulett
Mon Mar 23, 2015 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could checksum return 2 columns?
Replies: 1
Views: 1338

No... you would have to use two (or more) 'boxes'. :wink:
by chulett
Sat Mar 21, 2015 7:33 am
Forum: General
Topic: Sequencer Job Controller Problem
Replies: 1
Views: 973

Welcome. Can you clarify some things for us, please? What exact 8.x version are you running? I'm curious why you mention a Parallel job and then mark the Job Type in your post header as '390' which is a mainframe job type. I'm also wondering if you did a copy/paste your exact error message into your...
by chulett
Fri Mar 20, 2015 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Job Parameter value in Oracle Connector Stage query
Replies: 2
Views: 2696

Right... SQL files do not support #parameters# in them so you've got to build / rebuild the file each run with any parameter values subsituted in.

*throws another penny in the cup*
by chulett
Fri Mar 20, 2015 12:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ_connector
Replies: 4
Views: 1527

Here I was thinking it would need to be a service but then I thought... heck, I'll just wait for Ernie. :wink:
by chulett
Fri Mar 20, 2015 10:54 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Webservices not processing higher volume after re-structure
Replies: 1
Views: 7186

Curious if you ever got an answer / solution for this...
by chulett
Fri Mar 20, 2015 8:48 am
Forum: General
Topic: Sequencer reading from just one folder
Replies: 14
Views: 4033

not sure why you have the -l on your LS command since you are just counting lines. Guilty of this over the years for a couple of reasons. Force of habit mostly and it generally works just fine. :wink: Now, perhaps it can contribute to the dreaded "argument list too long" error you'll see ...
by chulett
Fri Mar 20, 2015 6:47 am
Forum: General
Topic: How to export every job in the project(one xml per job)
Replies: 1
Views: 986

Not that I am aware of. You could always script something from the command line, use the dsjob functionality to get all of the jobs and then loop through them, exporting them individually. Or people have posted 'cutter' scripts over the years, perhaps something in these threads can be adopted to you...
by chulett
Fri Mar 20, 2015 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data trunction when i am load into target as sql server
Replies: 9
Views: 2796

Re: data trunction when i am load into target as sql server

kethya11 wrote:target have sql server datatype has sql server.
:?:

Anyway, perhaps the replies here can help, even if they are about Oracle.
by chulett
Thu Mar 19, 2015 3:57 pm
Forum: General
Topic: Sequencer reading from just one folder
Replies: 14
Views: 4033

CMD does not support UNC paths as current directories

Ah... so forget the "cd" part and see if a restructured command like this works:

Code: Select all

ls -l \\mmetl1\PIMExport\MDMExport\Source\ | wc -l | sed "s/ //g;"
by chulett
Thu Mar 19, 2015 1:57 pm
Forum: General
Topic: Sequencer reading from just one folder
Replies: 14
Views: 4033

Right... when your directory path cannot be found you are still in the CWD or Current Working Directory of the executing process. I have no idea if your UNC path is both valid and if the user executing the DataStage job has access to it. I'm suspecting it's not or it doesn't. Regardless, I'd suggest...
by chulett
Thu Mar 19, 2015 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java Transformer Stage adding one extra column in java
Replies: 6
Views: 2088

Is there not someone you work with that is Java proficient and can help?