Search found 53125 matches
- Mon Jul 25, 2005 9:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: date conversion
- Replies: 27
- Views: 8143
- Mon Jul 25, 2005 9:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to trap column value in After job routine
- Replies: 3
- Views: 885
Where is the column value stored? Apparently you've collected data from all processing nodes into a sequentially executed stage type, so that there's only one location. If this is a sequential file or a one-node File Set, you should be able simply to read it from there. As a general observation, the...
- Mon Jul 25, 2005 9:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with info type DSJ.LINKSTAGE in DSGetLinkInfo
- Replies: 4
- Views: 1621
- Mon Jul 25, 2005 9:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: change in number of columns
- Replies: 6
- Views: 1321
- Mon Jul 25, 2005 1:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: date conversion
- Replies: 27
- Views: 8143
There's an even simpler explanation here
- Mon Jul 25, 2005 1:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Script for clearing logs
- Replies: 2
- Views: 927
Can't be done from UNIX. Job logs are database tables in the Repository database. Therefore you would need to be working in the database environment ( dssh ). Second, you would need knowledge of how instances are identified in the RT_STATUSnn and RT_LOGnn tables; this knowledge is not in the public ...
- Mon Jul 25, 2005 1:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: date conversion
- Replies: 27
- Views: 8143
- Mon Jul 25, 2005 1:11 am
- Forum: Data Integration
- Topic: DataStage job listings at an all time high
- Replies: 7
- Views: 8926
- Sun Jul 24, 2005 10:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date to Julian
- Replies: 14
- Views: 2612
- Sun Jul 24, 2005 10:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: char to integer32
- Replies: 6
- Views: 1965
Re: char to integer32
ds_is_fun wrote:Char to numeric conversion. Any suggestions?
int32_from_string in Modify stage. Just be very sure that every value can accurately be converted.
- Sun Jul 24, 2005 9:56 pm
- Forum: Data Integration
- Topic: Issue with DataStage Jobs
- Replies: 1
- Views: 3438
Welcome aboard! :D When shared libraries can't be found it's usually the environment variable that specifies the search path for shared libraries (this is variously called LD_LIBRARY_PATH, SHLIB_PATH or LIBPATH, depending what kind of UNIX your DataStage server runs on). DataStage processes set thei...
- Sun Jul 24, 2005 12:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Diff between Load and Upsert method
- Replies: 5
- Views: 2341
The statistics report what DataStage sent, not necessarily what the database server accepted. You must look in the job log (for upsert) or in the bulk loader's "bad" file (for load) to see whether there were any problems getting data into the table. For bulk load, in particular, once the bulk loader...
- Sun Jul 24, 2005 12:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error while importing the jobs
- Replies: 4
- Views: 1012
- Sun Jul 24, 2005 12:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Adding businessdays to timestamp
- Replies: 9
- Views: 1985
If you're going to work with DataStage BASIC internal format dates, then you can modify my earlier formula to take account of the fact that Mod(TheDate,7) returns 0 for Sunday and 6 for Saturday to replace the constant 3 in the addition. If it's Wednesday through Friday you need to add 5; otherwise ...
- Sat Jul 23, 2005 5:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Joining DB2 and a hash file
- Replies: 6
- Views: 1425
Of course you can! You are streaming data from the hashed file. It feeds the link that is a solid line into your Transformer stage. To effect multi-row return you connect an ODBC stage to the Transformer stage; it's link is painted as a dashed line, indicating a reference input link. That's your joi...