Search found 53125 matches
- Fri Mar 02, 2007 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Please provide alternative method of loading
- Replies: 8
- Views: 2189
You can add a second Transformer stage to your job design to filter the backdated records onto a separate stream before progressing with whatever processing is currently in your job. The backdated records could be processed in the same job, or written to a staging file for processing by a subsequent...
- Fri Mar 02, 2007 2:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: LOG RECORDS
- Replies: 7
- Views: 1662
- Fri Mar 02, 2007 2:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with APT_ParallelSortMergeOperator
- Replies: 3
- Views: 1121
The repeats are because the warning is generated on each processing node mention in your configuration file; the ",0" indicates partition number 0, for example. It is a warning not because anything is wrong, but because something unusual or unexpected is happening at run time; in this case you are w...
- Fri Mar 02, 2007 2:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Filter Stage usage for LIKE %ABC%
- Replies: 8
- Views: 3774
Manuals from IBM training classes and Orchestrate Operators manual page 7-8. The latter lists all the recognized regular expression characters and "%" is not among them. IBM Center of Excellence claims that the Transformer stage is now faster than the Filter stage because the latter is interpreted; ...
- Fri Mar 02, 2007 2:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: LOG RECORDS
- Replies: 7
- Views: 1662
But could be on a different machine. The service-oriented architecture of version 8.0 requires that you access metadata through the Metadata Delivery service; the actual location and structure are thereby hidden. And it (the job log) may not be one table any more - none of the supported databases fo...
- Fri Mar 02, 2007 2:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Passing Routine Output as Parameter into SQL Query
- Replies: 4
- Views: 4381
- Fri Mar 02, 2007 2:33 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: requirements for using oracle stage in parallel jobs
- Replies: 3
- Views: 864
- Fri Mar 02, 2007 2:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Filter Stage usage for LIKE %ABC%
- Replies: 8
- Views: 3774
The Filter stage is a strange hybrid. With LIKE it expects regular expressions rather than SQL wildcards. Therefore what you need is
Code: Select all
LIKE '*ABC*'- Fri Mar 02, 2007 2:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: problem with importing orchestrate schema
- Replies: 1
- Views: 598
It does this to ascertain how many tables meet your filter criteria. It then (if the count is non zero) performs another SELECT from DBA_TABLES to return a list of tables so you can choose one to import. Therefore, yes, you do need SELECT privilege to DBA_TABLES, and about eight other system tables ...
- Fri Mar 02, 2007 2:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: LOG RECORDS
- Replies: 7
- Views: 1662
- Fri Mar 02, 2007 2:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding warnings
- Replies: 5
- Views: 2243
Your input record has nine bytes but your metadata (record schema) defines only seven. Can only guess at the second one, but it looks like you have specified - or implied through "preserve partitioning" - an explicit partitioning algorithm, so DataStage is warning you that its default (using Entire ...
- Fri Mar 02, 2007 2:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Modify Stage
- Replies: 8
- Views: 2122
You might try Vincent's suggestion, but note that the default value clause needs to be enclosed in curly braces and it and the "table" in square brackets.
Code: Select all
lookup_int16_from_string[{default_value=0}('AAA=0')](inputcolumn)- Fri Mar 02, 2007 5:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: view *.fs file info
- Replies: 3
- Views: 875
- Fri Mar 02, 2007 5:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: LOG RECORDS
- Replies: 7
- Views: 1662
The log records are in a database table within the Repository. The name of the table is RT_LOGnnnn, where nnnn is the job number associated with the job. You can search the forum or use LIST DICT RT_LOG to get the column names available to query the log; you could create a DataStage server job to do...
- Fri Mar 02, 2007 5:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Improper data type
- Replies: 10
- Views: 3563
Where did you find the "$" syntax for a CALL statement? This normally means a GCI call, which means that a reference to the function must exist within the General Call Interface mechanism. How are you invoking your server routine in a parallel job? Is it within a server shared container, or within a...