Search found 53125 matches
- Sun Apr 10, 2005 2:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Capturing Job Information? Pls Help asap!
- Replies: 9
- Views: 3302
All of the information Vignesh seeks can be found in the DataStage Repository - and therefore can be reported on using the Reporting Tool (Documentation Assistant) or MetaStage. In current versions, indeed, all the information is in a single table, but this is one of those tables for which complete ...
- Sat Apr 09, 2005 4:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple values into 1 target column
- Replies: 11
- Views: 2497
- Sat Apr 09, 2005 4:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: invalid quotes problem ( " )
- Replies: 11
- Views: 3188
- Sat Apr 09, 2005 4:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: 50 Warnings Limit
- Replies: 11
- Views: 5043
- Sat Apr 09, 2005 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Validating E-mail
- Replies: 5
- Views: 1403
- Sat Apr 09, 2005 4:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: "String data, right truncation" error msg
- Replies: 3
- Views: 5219
You need to establish which column is causing the offence. Then check your source data (perhaps within DataStage - an extra output containing both the column and its length) looking for things like trailing space characters that cause the column to be longer than the maximum length specified by its ...
- Sat Apr 09, 2005 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Notification Activity
- Replies: 6
- Views: 1448
- Sat Apr 09, 2005 4:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Not getting the proper format
- Replies: 5
- Views: 1822
As Arnd said, you have looked at the log for the controller. You now need to look at the log for the controlled job, CopyOfFXRate_Extraction. There will likely be a number of warnings; the first of these is the most important one. Also check the Fatal message (the one with the red icon); but don't p...
- Sat Apr 09, 2005 4:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Check for Blank and NULL
- Replies: 4
- Views: 1176
- Sat Apr 09, 2005 4:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Help documents on writing Routines
- Replies: 3
- Views: 1349
- Sat Apr 09, 2005 4:05 pm
- Forum: IBM QualityStage
- Topic: Can we get Fields used in Matching from the deployes Script
- Replies: 7
- Views: 4293
This isn't Orchestrate, it's QualityStage (the software formerly known as INTEGRITY from Vality). I think, if you inspect the execution scripts, you would be able to recover the field names manually, but as to the column widths I think that would be trickier. Unfortunately most of the metadata is co...
- Sat Apr 09, 2005 4:00 pm
- Forum: Site/Forum
- Topic: Forum time GMT +1
- Replies: 10
- Views: 5926
- Thu Apr 07, 2005 5:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File Options
- Replies: 7
- Views: 2553
The write cache is good. What you get is writing to random locations in memory rather than writing to random locations on disk (within the file structure, of course). Once all rows have been written, the cache is flushed to disk in group order, which is maximally efficient I/O. You can preallocate d...
- Thu Apr 07, 2005 4:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Script to delete files based on timestamp
- Replies: 8
- Views: 3015
Investigate the UNIX find command. For example:
Read the man pages for find to garner more information.
Code: Select all
find . -atime +30 -exec rm {} \;Read the man pages for find to garner more information.
- Thu Apr 07, 2005 4:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine Error
- Replies: 4
- Views: 1123
The problem is almost certainly in your OpenSeq statement. You have assumed that nothing will go wrong but, this time, it has. You have not coded for anything going wrong; indeed you have explicity specified a no-operation (NULL statement). The OpenSeq statement actually has up to four clauses (ON E...