Search found 15603 matches
- Wed Dec 14, 2005 1:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Paralled Extender Compilation Issue
- Replies: 6
- Views: 1180
Take your job that is not compiling and start removing columns until it does compile. Either there is a specific column that causing the compile to fail or it is the amount. You will need to narrow down the exact cause more before useful help can be given. If the error is because the transform stage...
- Wed Dec 14, 2005 1:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dead Lock waiting for resource
- Replies: 10
- Views: 2006
Koolnitz, the message doesn't state that you had a deadlock, just that you might have. The locks available in DB/2 are not limited to record-level locking, you can also have block level and table level locks; plus you might also have other processes accessing and locking entries on your tables. The ...
- Wed Dec 14, 2005 3:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ServerJobs-JobSequence Errors
- Replies: 2
- Views: 718
- Wed Dec 14, 2005 2:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Import the DSX file and making available for client users
- Replies: 13
- Views: 7172
antojj, when you import jobs you do so using a client but nothing gets placed on the client Windows PC. So if you created a project called "dstage" then that project will be visible from any other client connecting to the server. This is the way that client/server technology works. You state that yo...
- Wed Dec 14, 2005 2:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Schema file : in Seq File or in Colum Import stage?
- Replies: 1
- Views: 583
It is always better to read the input files with the correct metadata, only in certain cases where you need to do processing across actual columns would you wish to read the file as one long virtual column. The column import can be used to split a long string into columns - but it is much more effic...
- Wed Dec 14, 2005 2:30 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Paralled Extender Compilation Issue
- Replies: 6
- Views: 1180
- Tue Dec 13, 2005 4:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Combinability mode
- Replies: 4
- Views: 4300
- Tue Dec 13, 2005 1:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of Stage Transformer detected
- Replies: 2
- Views: 3668
- Tue Dec 13, 2005 11:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: URL parsing in Datastage
- Replies: 9
- Views: 2747
- Tue Dec 13, 2005 10:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: date conversion help
- Replies: 4
- Views: 1926
- Tue Dec 13, 2005 9:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: conversion to timestamp
- Replies: 4
- Views: 1254
The DataStage internal date is an integer denoting the number of days since Dec 31st, 1967. So Day 1 is January 1, 1970. There are (60*60*24*1000) Milliseconds in a day. The mathematical conversion between your millisecond representation and the DataStage internal representation is known, and the co...
- Tue Dec 13, 2005 9:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: MKS Toolkit
- Replies: 5
- Views: 1408
Sure, just bear in mind that being 99.9% compatible doesn't guarantee thatit will work correctly in both Windows and UNIX environments. DataStage doesn't notice a difference when doing external calls - apart from choosing your external call type (DOS/UNIX), but you can use a call to system(91) to de...
- Tue Dec 13, 2005 8:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to diffrentiate the parameters in execute command stage
- Replies: 8
- Views: 2621
- Tue Dec 13, 2005 8:34 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Data with all special characters - no delimiter
- Replies: 2
- Views: 950
Normally files like this have quoted strings, so if the delimiter does occur inside a string it can still be differentiated. But this shifts the parsing problem to the quote character, which is also just one character (unless you have NLS enabled) - if all 256 characters are part of the data then yo...
- Tue Dec 13, 2005 8:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Redirect data on a warning
- Replies: 2
- Views: 1386
I think that DataStage might not be the most efficient tool to do this, but if I were to do it in DS I would create a job that reads the file and writes it to /dev/null or something of the like. I'd call the job from a sequence with the filename to check and then use the job's completion status as t...