Search found 53125 matches
- Fri Jun 25, 2004 6:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence number for multi valued data
- Replies: 11
- Views: 3407
- Fri Jun 25, 2004 6:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creating ODBC in Solaris env
- Replies: 4
- Views: 1311
- Thu Jun 24, 2004 4:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Geospatial data types?
- Replies: 3
- Views: 1343
- Thu Jun 24, 2004 4:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle 9i odbc driver configuration HP-UX ****RESOLVED****
- Replies: 13
- Views: 4381
- Thu Jun 24, 2004 4:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how can i do this???
- Replies: 10
- Views: 3082
Make a hashed file with one row and two columns. The key value is a constant, say "X" (or something meaningful, like "SelectionDate"). The hashed file is loaded from the text file with the YYYYMM value as the non-key column. You can use this in a reference lookup within a Transformer stage. Or you c...
- Thu Jun 24, 2004 4:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Foreign Key Relationship
- Replies: 1
- Views: 752
Not really. If you import from a DCLGen and the foreign key relationships are stated in that, then DataStage will detect them. You can manually edit DataStage's "table definitions" that result from the import, and thus identify foreign key relationships, but I don't believe there is any way for Data...
- Thu Jun 24, 2004 4:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ds_ipcput - timeout waiting for mutex
- Replies: 18
- Views: 14288
- Thu Jun 24, 2004 4:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UniVerse display length vs. character length
- Replies: 6
- Views: 2996
Display length can be different from character length in character sets like Chinese, where there are double width characters. Thus, for example, it needs ten display positions to display five double-width characters, even though the "character length" of the string is 5. And, indeed, there's a thir...
- Thu Jun 24, 2004 3:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sys Date Comparison
- Replies: 7
- Views: 1246
What happens if you try
Code: Select all
If RecordDate - Iconv(LkUp.LAST_INCDR_DATE,"D-YMD[4,2,2]") <= 120
then LAST_INCDR_DATE (show me the date in my file)
else @null(those > 4 months ) - Thu Jun 24, 2004 2:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sys Date Comparison
- Replies: 7
- Views: 1246
You probably have a mismatched format. The only time when strings containing dates can be reliably compared is when they comply with ISO 8601 (for example YYYY-MM-DD). What is the source (text file, database table)? What type is the parameter? Date type parameters are converted into DataStage intern...
- Wed Jun 23, 2004 9:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframe and parallel extender
- Replies: 1
- Views: 573
No. Mainframe jobs generate COBOL code and JCL to get it compiled. These are uploaded to the mainframe where they are compiled and run. Whether any parallelism occurs is not under your control. Parallel jobs generate code that can be executed as osh in the Parallel Extender environment on the UNIX m...
- Wed Jun 23, 2004 4:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence number for multi valued data
- Replies: 11
- Views: 3407
No, it seems to be trying to read record "21849" : @VM : "1" - the delimiter is what causes the 1 to appear on a new line in the logged event. Somehow you're not properly normalizing the data. BY.EXP.DSND is not part of the WITH phrase - it is a separate clause. To use an SQL analogy WITH maps to WH...
- Wed Jun 23, 2004 4:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Chaining reference input links
- Replies: 8
- Views: 2397
- Wed Jun 23, 2004 4:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframes
- Replies: 1
- Views: 828
The Lookup stage is described, with detailed examples, in Chapter 19 of the DataStage Mainframe Job Developer's Guide (mainframe.pdf), which is in your DataStage manual set (in the Docs folder with your DataStage client software). They are also covered in the DataStage Essentials (DS390) class run b...
- Wed Jun 23, 2004 3:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Which Jobs Load Hashed Files?
- Replies: 15
- Views: 4413
This is Universe not Oracle. Very funny. You probably wrote your own explain plan for UV, right? I just wanted to show how to bring in the job name. UniVerse (and therefore DataStage) also has EXPLAIN. It was introduced with the SQL Engine in version 7.3, and heavily refined in version 9.4. SELECT ...