Search found 42189 matches

by chulett
Thu Sep 09, 2010 10:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Call an Oracle Function by using Stored Procedure stage
Replies: 13
Views: 7602

If you insist on treating it like a stored procedure, why not make it a stored procedure? Otherwise, study up on how to properly leverage functions, there are lots of examples out there - here as one example.
by chulett
Thu Sep 09, 2010 9:47 pm
Forum: General
Topic: trimming line terminator
Replies: 17
Views: 5688

Doesn't really answer the question, I'm afraid. Can you post your actual, unedited error message?
by chulett
Thu Sep 09, 2010 7:20 pm
Forum: General
Topic: trimming line terminator
Replies: 17
Views: 5688

In your post, "termination character" means what? An extra comma on the end of the loop list or a trailing Field Mark there from the Execute Command?
by chulett
Thu Sep 09, 2010 7:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tsort merger aborting: Scratch space full Error
Replies: 5
Views: 17043

Hey, there's no "kind of" correct there, Mr Hester. It's just plain old correct correct. :wink:
by chulett
Thu Sep 09, 2010 7:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Large xml file
Replies: 5
Views: 2015

Assuming the problem is creating it, look into the use of the Trigger Column option, value changes there will trigger a switch to a new output filename.
by chulett
Thu Sep 09, 2010 7:14 pm
Forum: General
Topic: Another Milestone
Replies: 5
Views: 2148

Like you need an excuse. :wink:
by chulett
Thu Sep 09, 2010 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create C++ routines in windows
Replies: 6
Views: 3790

Windows or UNIX, doesn't really matter, the compiler would function the same way in either environment. I don't know the gory details, but an exact search for object file returned 130 matches, something in there should help answer your question.
by chulett
Thu Sep 09, 2010 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File size exceeding 2GB
Replies: 4
Views: 2418

No need for a 64bit server, 64BIT hashed files are supported on any platform as the limit is the addressing used internal to the hashed file itself. An exact search here for -64BIT will turn up quite a number of conversations on this topic. Note that your O/S may very well limit files of any kind to...
by chulett
Thu Sep 09, 2010 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tsort merger aborting: Scratch space full Error
Replies: 5
Views: 17043

You're still out of space there. You would need to monitor that while the job runs to see the problem.
by chulett
Thu Sep 09, 2010 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can WriteSeq only write ANSI files ?
Replies: 4
Views: 2897

Nicely done. 8)
by chulett
Thu Sep 09, 2010 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Issue With SCD Stage in 8.1
Replies: 15
Views: 8024

Making an assumption on how the SCD stage works, but do you have an index over the business key in your target it would be using for the lookup existence check / retrieval of the surrogate key needed for any updates?
by chulett
Thu Sep 09, 2010 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Call an Oracle Function by using Stored Procedure stage
Replies: 13
Views: 7602

That's PL/SQL, not a script... and I have no idea what this has to do with your original question. :? Is 'GET_INFORMATION' your stored function? If so, as noted, you would include it in a normal SQL select as if it were a column in a table. If you don't have a need for a table, use DUAL. For example...
by chulett
Thu Sep 09, 2010 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to do initial cap for every letter
Replies: 3
Views: 1500

Plus you'll notice that the "and" I mentioned was actually " and " - the spaces are there on purpose. Not a trivial task, regardless.
by chulett
Thu Sep 09, 2010 6:19 am
Forum: General
Topic: datastage parameter expression , calculate a formated date
Replies: 8
Views: 13359

and by the way, while I'll need to use these functions a lot, I tried to get documentation on how they work , but I can't find it. Would you have a link about that ? You should have a BASIC manual amongst all of the pdf documentation delivered with the product, they would be explained there. Or in ...
by chulett
Wed Sep 08, 2010 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to do initial cap for every letter
Replies: 3
Views: 1500

That's what it does, every word. All I can think of is to do a series of EReplace() calls afterwards, setting ' And ' back to ' and ', etc. Hopefully someone has a better idea.