Search found 42189 matches

by chulett
Mon Jun 12, 2006 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_loadlibrary: error in dlopen - Dynamic Error
Replies: 10
Views: 4243

DataStage is a 32bit application on your platform.
by chulett
Mon Jun 12, 2006 6:07 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Where does 'trace' output go?
Replies: 14
Views: 7338

Two for two.
by chulett
Mon Jun 12, 2006 5:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export of jobs
Replies: 5
Views: 1492

Never tried, but should be fine I would think.
by chulett
Mon Jun 12, 2006 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Stage Input/Output
Replies: 9
Views: 2239

Good, glad you sorted it out. :wink:
by chulett
Sun Jun 11, 2006 6:06 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Where does 'trace' output go?
Replies: 14
Views: 7338

Yup, makes sense and exactly where it showed up. Two things to note - the RTI Console lets you change Tracing on a running job without any kind of restriction. It's not until you actually start a job with tracing turned on that you get the normal 'Active stage starting, tracemode = 1' messages in th...
by chulett
Sun Jun 11, 2006 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Content Deletion
Replies: 8
Views: 2766

Craig, cant he access the hashed file with universe stage and supply a delete command ? wouldnt that work ? Sorry, yes - if the hashed file is in an account as Ray notes. I've been using pathed hashed files for so long I tend to forget about that option. From my standpoint, having to explain to som...
by chulett
Sun Jun 11, 2006 4:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: format string
Replies: 6
Views: 1952

Either you input file looks different than the sample data you have provided or i am going cukoo.' Or perhaps a little of both. I'd ask Sai for two things. 1) Post a real example of the source data. 2) Actually try what you suggested. Saying "I don't think it may work" isn't helpful at all. Try it ...
by chulett
Sun Jun 11, 2006 1:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Content Deletion
Replies: 8
Views: 2766

Actually, there's no way to directly delete records from a sequential file either. With both you can play the old game of writing out the records you want to keep to a new name and then renaming things back when you are done. Or dump the hashed file contents you want to save to a sequential file and...
by chulett
Sun Jun 11, 2006 10:37 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Where does 'trace' output go?
Replies: 14
Views: 7338

Where does 'trace' output go?

Silly question, but I don't have access to any manuals from here and there's no online help in the RTI Console, so... When one drills down to 'Job / Maps Attached to the Operation' level in the console and then right-clicks on the icon, one of the options is Set Tracing On. Can anyone tell me where ...
by chulett
Sun Jun 11, 2006 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_loadlibrary: error in dlopen - Dynamic Error
Replies: 10
Views: 4243

Re: ds_loadlibrary: error in dlopen - Dynamic Error

And make sure you remove the line I didn't qoute to you!

Code: Select all

LD_LIBRARY_PATH=$ORACLE_HOME/lib

Leaving that one in will hork up the other change and was what I was referring to when I said 'no need to declare them twice'.
by chulett
Sun Jun 11, 2006 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_loadlibrary: error in dlopen - Dynamic Error
Replies: 10
Views: 4243

After you made the change, did you stop and restart DataStage? It's required for any dsenv change.
by chulett
Sun Jun 11, 2006 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promote warning to fatal error
Replies: 7
Views: 2650

Can't help with the 'promote the warning' bit, but I thought that was done via a right-click in the job's log on the warning itself? Is there a way in PX to say if records go this particular link, abort the job after n of them? In the Server world you can say 'Abort after 1 row goes down this link' ...
by chulett
Sun Jun 11, 2006 10:05 am
Forum: Site/Forum
Topic: Congratz Craig!!!!
Replies: 5
Views: 2440

Not really all that much of a competition. :lol:
by chulett
Sun Jun 11, 2006 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_loadlibrary: error in dlopen - Dynamic Error
Replies: 10
Views: 4243

Put your 32bit libraries first. Actually, you can remove the 64bit libraries as they won't be used. No need to declare them twice, either. :wink:

Code: Select all

LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib32:$ORACLE_HOME/rdbms/lib32
by chulett
Sun Jun 11, 2006 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can Array size and Transation size is related
Replies: 1
Views: 673

Well... you do typically want Transaction Size to be a multiple of Array Size. So, with an Array Size of 1000 you might have a Transaction Size of 5000 or 10000 for example. Not to send this careening off course, but keep in mind the fact that, if you are using a reject link, it will only really wor...