Search found 53125 matches
- Tue Jun 22, 2004 3:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stage FTP
- Replies: 1
- Views: 1090
There is a manual for each plug-in stage type. I note that you are on release 6, so you'll need to look in the Packages folder on your DataStage CD to find the FTP plug-in stage. In a folder called Docs you should find ftp.pdf , which is the manual that explains how to use the stage. The FTP stage d...
- Tue Jun 22, 2004 2:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File-Is there any way to insert duplicates
- Replies: 3
- Views: 1493
No. Only non-key columns can be multi-valued in hashed files. You need a generated key. Make it an Integer, and generate it as @OUTROWNUM in the Transformer stage that loads the hashed file. Specify, in the hashed file creation options, that the hashing algorithm is SEQ.NUM. If you're using a UV sta...
- Tue Jun 22, 2004 2:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help!
- Replies: 9
- Views: 2960
- Tue Jun 22, 2004 12:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help!
- Replies: 9
- Views: 2960
UtilityHashLookup uses a hashed file on disk. It cannot take advantage of memory caching in the same way that the Hashed File stage can. So your job would be far slower. I have not had time for detailed analysis of your new design yet. Converting columns to rows (which is a horizontal pivot) is perf...
- Mon Jun 21, 2004 9:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: User Defined Routine with Built-in Transforms
- Replies: 6
- Views: 3003
Because ConvertMonth is not an instrinsic function in the DataStage BASIC language. It's a regular routine. You can view its source code in the Routines branch of the Repository. It's cataloged under DSX rather than DSU because DSX is for routines that support supplied Transforms, while DSU is for u...
- Mon Jun 21, 2004 9:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframes
- Replies: 3
- Views: 898
- Mon Jun 21, 2004 5:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: translate a string into a number
- Replies: 1
- Views: 900
Because there are no data types within DataStage (OK, that's a simplification, but it's how things seem), you can actually do nothing.
If the sign is going to cause a problem, simply perform some arithmetic. The most efficient is adding zero.
If the sign is going to cause a problem, simply perform some arithmetic. The most efficient is adding zero.
Code: Select all
InLink.TheVarChar + 0- Mon Jun 21, 2004 5:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframes
- Replies: 3
- Views: 898
- Mon Jun 21, 2004 5:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pc locks up when in Transformer
- Replies: 7
- Views: 1620
- Mon Jun 21, 2004 4:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal Termination
- Replies: 7
- Views: 2272
- Mon Jun 21, 2004 4:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Cross rows from two tables
- Replies: 3
- Views: 1084
- Mon Jun 21, 2004 4:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: User Defined Routine with Built-in Transforms
- Replies: 6
- Views: 3003
Transforms can not be called. When you compile them into DataStage expressions, they are replaced by the expression that defines them. For example, the defining expression for the MONTH.LAST Transform (which you can determine by inspection of the Transform's properties) is ConvertMonth(%Arg1%, "L") ...
- Mon Jun 21, 2004 4:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to import and export UserDefined Environment variable.
- Replies: 7
- Views: 5272
User-defined environment variables, like project-wide log purge settings, are stored in the DSParams file in the project directory. While there's no client-based mechanism for transferring them (at least none of which I am aware), it's a relatively straightforward process to unload them from one DSP...
- Mon Jun 21, 2004 4:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get Project's Environment variable.
- Replies: 10
- Views: 3757
- Sun Jun 20, 2004 9:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HF and Seq. file dynamic join
- Replies: 8
- Views: 2068