Search found 15603 matches
- Tue Jan 10, 2006 11:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Hi All
- Replies: 6
- Views: 2593
PX is very picky about data types and values, so you shouldn't be using a "not null" column definition when you know it will contain nulls. Define it as nullable, then in a transform stage or a modify stage use one of the builtin null handling conversions to explicitly change a null value to somethi...
- Tue Jan 10, 2006 11:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need workaround - No error codes being returned from DB2
- Replies: 12
- Views: 5391
- Tue Jan 10, 2006 11:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage scheduler for business week days
- Replies: 8
- Views: 2114
There is no DataStage scheduler, it uses the default Windows scheduler (AT). I don't know why you can't run the DataStage scheduler, unless you haven't installed it on your server. The free UNIX utilities such as mks-toolkit or the Microsoft one (I can't recall the name) have versions of the UNIX cr...
- Tue Jan 10, 2006 8:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Hi All
- Replies: 6
- Views: 2593
ajit, the message is saying that the column "SOURCE_DT" has a null value in the data, but your target column "DWH_UPD_TIMSTM" does not allow null values and you haven't specified any special conversions for this column; so the job has to abort. You either need to do a right-mouse-click-"edit row" on...
- Tue Jan 10, 2006 6:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: strip html tags
- Replies: 16
- Views: 5994
When you test a DataStage routine the engine will put your test arguments into a small program so that the actual function call can tested. Because it assigns the test value into a string it can (and does) get confused with unbalanced quotes. This will not affect your actual runtime values; so you c...
- Tue Jan 10, 2006 6:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: strip html tags
- Replies: 16
- Views: 5994
- Tue Jan 10, 2006 6:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: strip html tags
- Replies: 16
- Views: 5994
Khron, I stand corrected, PHP is a high-level language and has builtin tag handling. Even though having one language support it doesn't really match your statement of "any high-level language" having that capability. I did learn something else from this thread, I had always assumed that the definiti...
- Tue Jan 10, 2006 5:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error while logging to DataStage
- Replies: 16
- Views: 5205
- Tue Jan 10, 2006 5:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Differences between DataStage 7.1 and DataStage 7.5.1
- Replies: 3
- Views: 1702
- Tue Jan 10, 2006 4:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Broken Pipe Error
- Replies: 3
- Views: 1936
The error message you are seeing is most likely an effect of another error. If the process that is doing your writing to the database aborts it will cause it's end of the pipe to be closed and trigger the "broken pipe" error message in the other process. You will need to delve a bit deeper into your...
- Tue Jan 10, 2006 4:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: strip html tags
- Replies: 16
- Views: 5994
...It's a pitty that this kind of functions are not included in DataStage, as they are available in any higher level language. Khron, I'm curious - which high-level language has builtin html metatag cleaning functions? The ones that I know for certain don't have ANSII builtin functions are C, C++, ...
- Tue Jan 10, 2006 2:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: strip html tags
- Replies: 16
- Views: 5994
Khron, you could write a small DS Basi routine to do this. The following code (untested, written while on-line therefore probably needing debugging) will remove any number of constructs beginning from a '<' and ending with a '>' from a string. Note that it won't work if the string contains a valid '...
- Tue Jan 10, 2006 2:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: NLS Lang
- Replies: 8
- Views: 2827
Hexa, no, you won't get "any solution" from me - you haven't told us where you are, what your database NLS setting is (and what it is), what your character set is and what language you are working in. So how do you expect to get an answer? The original poster specified both his location and characte...
- Tue Jan 10, 2006 2:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: NLS Lang
- Replies: 8
- Views: 2827
- Tue Jan 10, 2006 2:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need workaround - No error codes being returned from DB2
- Replies: 12
- Views: 5391
Andy, are you using the reject link functionality with an error link coming out of the DB/2 stage in your job? Also, what is triggering the rejects - just one error code/reason or several? I know I did some jobs that used this type of functionality and would be worried if nothing were reported since...