Search found 42189 matches
- Sun Oct 29, 2006 8:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: core.* files
- Replies: 12
- Views: 6072
- Sun Oct 29, 2006 5:41 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: No RTI INPUT and RTI OUTPUT STAGES
- Replies: 6
- Views: 4349
Nothing is enabled or disabled based on the installation of the RTI Console. Pretty sure the same can be said for the RTI Server component. Sure, things won't work without it but you should be able to 'RTI Service Enable' a job and add the stages to one without it installed and working. Just don't t...
- Sun Oct 29, 2006 5:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: core.* files
- Replies: 12
- Views: 6072
They are the output of a core dump when a program aborts / abends. Sometimes a vendor will be able to examine one to figure out what went wrong, but typically they just are just messy little piles of information that need to be cleaned up. It is not atypical for a cron job to exist that runs periodi...
- Sun Oct 29, 2006 3:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to Exract only number from alphanumeric
- Replies: 5
- Views: 2545
- Sun Oct 29, 2006 12:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date Conversion
- Replies: 1
- Views: 1049
Welcome aboard. First suggestion would be to try searching the forum here as most problems have been solved several times here already. Searching for 'date conversion' as you used for your subject turned up a number of posts that would help you out, including for example this one. Or specifically se...
- Sun Oct 29, 2006 8:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Write failed for record
- Replies: 9
- Views: 2575
Hmmm... typically, an issue around the 2GB Barrier would actually corrupt the hashed file and give you fun things like 'blink' errors. This is more indicative of either a space problem or something funky in the data you are writing. It can also depend on if you received just this single error or man...
- Sat Oct 28, 2006 8:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Function
- Replies: 3
- Views: 864
Re: Function
Let's approach this the other way 'round. what does is the difference between link.notfound and not(isnull(lookuptable.columnname)) Back in the old days, checking for a null value was the only way to see if a lookup had failed. You fill out the key value(s) from the input stream and the lookup 'fire...
- Sat Oct 28, 2006 5:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Start Loop
- Replies: 7
- Views: 1653
Ray's got another way having the Loop step through a delimited list of dates. Don't see why the way I outlined wouldn't work as well, the decider would be how you needed to use the parameter, if you had a chance to switch it back to 'external' format within the job or if you needed to use it before ...
- Sat Oct 28, 2006 4:33 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: adding column names to reject file
- Replies: 15
- Views: 3482
- Sat Oct 28, 2006 8:52 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: adding column names to reject file
- Replies: 15
- Views: 3482
We've now got six replies to the original post (seven if you count Ray's double) all guessing what ssunda's actual problem is. Rather than having any more well intentioned people pile on with their entry into the contest, here's a thought... Why not wait for the OP to come back and clear things up? ...
- Sat Oct 28, 2006 8:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: VARCHAR TO DATE CONVERSION
- Replies: 3
- Views: 1386
- Sat Oct 28, 2006 8:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Start Loop
- Replies: 7
- Views: 1653
Re: Start Loop
Its runs good, but i know this isnt a right approach and this wont solve my problem.I want to pass the date not as numeric but in its original format say YYYY-MM-DD or MM-DD-YYYY. You can't - not if you want the Loop stages to control the iterations. You'd have to roll your own, I would think, if y...
- Fri Oct 27, 2006 11:47 am
- Forum: General
- Topic: Very Very-urgent(Mload Error)
- Replies: 7
- Views: 8165
Re: Very Very-urgent(Mload Error)
chrisjones wrote:Please let us know what to do and whom to contact immidately to solve the problem and make ETL as effectiect tool.
As noted, contact your support provider - either IBM/Ascential Support directly or whomever performs that for you. Make them aware it is "very very urgent".
- Fri Oct 27, 2006 8:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: server jobs in parallel
- Replies: 7
- Views: 1028
- Fri Oct 27, 2006 8:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to replace special characters with N in a string
- Replies: 9
- Views: 3241
Because, as I noted, you are telling it to replace all commas in the string with yet another comma, so it just looks like it works fine. Check the examples in the online help. It's certainly not a fatal problem, just wastes cycles. It's not all that different from telling it to replace all 'X' char...