Search found 53125 matches
- Mon Nov 17, 2008 7:04 am
- Forum: IBM QualityStage
- Topic: Match Stage in Quality Stage
- Replies: 5
- Views: 2442
- Mon Nov 17, 2008 5:37 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How can u implement the SCD's in Parallel jobs in datastage?
- Replies: 8
- Views: 4742
- Mon Nov 17, 2008 5:34 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to open DS Designer
- Replies: 2
- Views: 1167
- Mon Nov 17, 2008 5:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: XML input and Output stages in PX
- Replies: 8
- Views: 5658
- Mon Nov 17, 2008 5:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: where is a DS job stored in the unix server
- Replies: 9
- Views: 3408
- Mon Nov 17, 2008 5:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Excel Files
- Replies: 2
- Views: 1103
- Mon Nov 17, 2008 5:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashed File Directory path and Selection Criteria
- Replies: 1
- Views: 862
- Mon Nov 17, 2008 5:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Replace Linefeed Characters coming from the source with null
- Replies: 1
- Views: 915
Code: Select all
Convert(svLF, "", InLink.TheString)You do not want to convert to NULL, you want to convert to zero-length string.
Initialize stage variable svLF to Char(10) and do not supply a per-row derivation expression.
- Mon Nov 17, 2008 5:21 am
- Forum: General
- Topic: Handeln with ExpDate derivation in datastage
- Replies: 14
- Views: 7455
- Mon Nov 17, 2008 5:16 am
- Forum: IBM QualityStage
- Topic: Match Stage in Quality Stage
- Replies: 5
- Views: 2442
- Mon Nov 17, 2008 2:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: orchadmin command error
- Replies: 7
- Views: 1970
It's set the same way that any other environment variable is set. For DataStage processes the command to set the environment variable should occur in the dsenv script. Examine the SHLIB_PATH variable's value for any regular user and/or consult your UNIX system administrator. It is almost unheard of ...
- Mon Nov 17, 2008 2:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Extraction the data from the excel files in DataStage server
- Replies: 2
- Views: 905
- Mon Nov 17, 2008 2:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TMPDIR variable usage
- Replies: 4
- Views: 2160
- Mon Nov 17, 2008 2:15 am
- Forum: General
- Topic: DSJOB syntax for all jobs in a project
- Replies: 4
- Views: 9038
The output from dsjob -ljobs kamal will be a list of jobs in the project. In a BAT file create a loop that iterates through this list, executing the command dsjob -logsum kamal $jobname for each jobname in the list. Redirect output appropriately to capture the output wherever you require it. I am go...
- Mon Nov 17, 2008 2:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Director Logging
- Replies: 10
- Views: 2883
You can automate the process by deleting those entries from the job's status table that pertain to the particular invocation ID. That would require, of course, a routine that determines the job's job number (to establish the name of the status table), and the invocation ID in question. Learn about t...