Search found 53125 matches
- Tue Aug 03, 2004 10:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stage types
- Replies: 1
- Views: 692
- Tue Aug 03, 2004 10:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal Termination
- Replies: 4
- Views: 3665
DSP.Open is one of theirs (Ascential's). It's the "open" function exposed by plug-in stage types. With sufficient knowledge you could use a utility like VLIST to see what's being executed at address 0x4d4 in the object code but, without source, that won't help greatly. Fault type codes are listed in...
- Tue Aug 03, 2004 10:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Associated Multi-Valued Fields from Thin Air
- Replies: 2
- Views: 880
SQL figures out the relationship somehow within the query engine, so one does not need to declare the columns to be temporarily multi-valued.
Code: Select all
SELECT F3 AS JOB_NAME FMT '36L',
F4 AS LAST_RAN FMT '23R'
FROM VOC
WHERE F0 = 'DSR_LAST_UPDATED';- Tue Aug 03, 2004 9:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How do you use SAS in Enterprise Edition
- Replies: 6
- Views: 2754
- Tue Aug 03, 2004 6:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Associated Multi-Valued Fields from Thin Air
- Replies: 2
- Views: 880
Associated Multi-Valued Fields from Thin Air
Hope the subject doesn't scare anyone away. Here's a useful query in RetrieVe, using generated field names and on-the-fly of field names temporarily declared to be multi-valued. I'll post the SQL equivalent tomorrow. LIST VOC 'DSR_LAST_UPDATED' ID.SUP F3 AS JOB_NAME MULTI.VALUE FMT "32L" F...
- Tue Aug 03, 2004 6:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: export from repository
- Replies: 4
- Views: 986
- Tue Aug 03, 2004 6:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: calling transform from within routine
- Replies: 4
- Views: 1034
Basically it's not possible to call a Transform from a Routine. You can, of course, copy the Transform's derivation expression into your Routine, but then you incur the need to maintain it in two places. In your example, I think it's a pretty safe bet that PIC COMP3 isn't going to change any time so...
- Mon Aug 02, 2004 10:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file: Selecting all/few columns: Performance Impact
- Replies: 4
- Views: 1129
- Mon Aug 02, 2004 10:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How this Row Splitter works
- Replies: 10
- Views: 3942
- Mon Aug 02, 2004 10:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS JCL Job to reset all jobs in a category, pls. critique
- Replies: 9
- Views: 4449
6-10 seconds is about as good as it gets, though you don't have to wait for one to finish before you issue the reset request for the next. That is, lose the DSWaitForJob calls, and implement a different mechanism for checking that things are still running or not, checking the exit status once they'v...
- Mon Aug 02, 2004 10:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: If Delimiter is Space?
- Replies: 11
- Views: 3063
- Mon Aug 02, 2004 10:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Export -- xml vs .dsx format
- Replies: 15
- Views: 10293
- Mon Aug 02, 2004 10:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to pull data from EXCEL?
- Replies: 2
- Views: 972
Given that you're on Windows, you can use the ODBC driver for MS Excel. In this case, you must check the "system tables" box when importing the table definition (each spreadsheet in a workbook is reported as a system table). Further, the spreadsheet MUST have a tabular format and must have column he...
- Mon Aug 02, 2004 10:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading takes Long
- Replies: 2
- Views: 818
A poor education, or an attention deficit disorder, or a visual impairment are often manifested as slow reading ability. (That was to make the point about how vague your question was.) Diagnosis of anything in DataStage is by elimination. Start with the simplest; read and discard the results (no tra...
- Mon Aug 02, 2004 9:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference between lookup stage and hash stage
- Replies: 1
- Views: 930
The Hashed File stage refers to a hashed file (a database table with special characteristics for locating records). A lookup stage refers to a dataset (an in-memory collection of data, with its own intrinsic indexing mechanism). Read the relevant chapters in the Server Job Developer's Guide and the ...