Search found 53125 matches
- Wed Nov 19, 2008 1:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using parameters in ExecCommand command
- Replies: 4
- Views: 1512
One thing you could do is to preset the PATH environment variable and use an unqualified command name. Another thing you could do is to invoke a shell script that is passed the pathname of the command (including the resolved job parameter) and which invokes the command in question. Show us what you'...
- Wed Nov 19, 2008 1:45 pm
- Forum: General
- Topic: calling routine/job across proejcts
- Replies: 10
- Views: 2803
- Wed Nov 19, 2008 1:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: fetching first few records
- Replies: 9
- Views: 1870
- Wed Nov 19, 2008 1:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to identify a data file contains level and arrays.
- Replies: 5
- Views: 1795
And if, as you subject line suggests, there are different levels and there are repeating groups (arrays) then you MUST get information about these. A COBOL file definition is the easiest way - they can email it to you and you can import the table definition (record schema definition) from the COBOL ...
- Wed Nov 19, 2008 1:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error Security in W IIS 8.01
- Replies: 9
- Views: 3248
Check whether the password of the owner of the XMETA database (a user that is created by the installation process) has expired. The install script does not create this user with a "password never expires" setting, so it does expire after whatever expiry setting you are using in Windows user profiles.
- Wed Nov 19, 2008 1:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warnings using Change Capture Stage
- Replies: 4
- Views: 2463
- Wed Nov 19, 2008 1:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to get server transformer stage in parallel jobs?
- Replies: 13
- Views: 4117
Not true. The BASIC Transformer stage can run in parallel, though every node on which it executes must be on the (a) machine where the DataStage server engine is installed. You can also include server shared containers in parallel jobs, subject to certain restrictions that are documented in Chapter ...
- Wed Nov 19, 2008 1:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: User defined SQL
- Replies: 4
- Views: 1826
- Wed Nov 19, 2008 1:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Capture Rejected rows along with its description in rej file
- Replies: 5
- Views: 1185
- Wed Nov 19, 2008 1:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: RT_ERRORS with a twist.
- Replies: 6
- Views: 1648
Re: RT_ERRORS with a twist.
BIuser wrote:I am logging a case with HAL, and will let you know if we get anywhere with this.
- Wed Nov 19, 2008 1:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Refresh TEST environment with PROD one
- Replies: 5
- Views: 1345
Why not create a suite of DataStage jobs to synchronize the contents of the hashed files? Are the TEST and PROD environments on the same server? Whether you can successfully use operating system commands to move hashed files depends on how they were created. However, simply copying the PROD project ...
- Wed Nov 19, 2008 1:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing Delimited List of Values to StartLoop
- Replies: 5
- Views: 1839
- Wed Nov 19, 2008 1:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: French char. are not converted correctly for M/F binary file
- Replies: 3
- Views: 1763
- Wed Nov 19, 2008 1:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sever Job: Not able to read (') in data
- Replies: 10
- Views: 3387
- Wed Nov 19, 2008 1:11 pm
- Forum: General
- Topic: Truncate decimal digits
- Replies: 7
- Views: 1406
I don't know why Fix() isn't doing what it's supposed to. You can use
Code: Select all
Field(InLink.TheNumber,".",1,1) : "." : Left(Field(InLink.TheNumber,".",2,1),6)