Search found 53125 matches

by ray.wurlod
Mon Nov 17, 2008 7:04 am
Forum: IBM QualityStage
Topic: Match Stage in Quality Stage
Replies: 5
Views: 2442

Are you logged in as qsadmin when starting qsrtmngr?
by ray.wurlod
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

U did not respond. (U is the name of one of our posters. I understand that it is a fairly common Burmese name.) The second person personal pronoun in the nominative or accusative (objective) form in English is spelled "you".
by ray.wurlod
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

You can find this error code in the DataStage BASIC manual, in the section that describes the STATUS() function. Having done so, please post the result of your researches.
by ray.wurlod
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

IBM offers a training class. It is not routinely scheduled, so you will have to ask your local IBM Learning Services people about it.
by ray.wurlod
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

Some sites use the DataStage export file (the DSX file) as the "source code" for the purposes of version control tools.

When you get to version 8.1 of Information Server there is a useful deployment tool available with - among other things - a command line interface.
by ray.wurlod
Mon Nov 17, 2008 5:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Excel Files
Replies: 2
Views: 1103

Not possible. The ODBC driver for Excel requires absolutely that the first line is column names. This is not a DataStage issue; it is a rule in the ODBC driver.
by ray.wurlod
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

Change the Hashed File stage to use Account (not Directory) and refer to the VOC entry that you created with SETFILE.
by ray.wurlod
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.
by ray.wurlod
Mon Nov 17, 2008 5:21 am
Forum: General
Topic: Handeln with ExpDate derivation in datastage
Replies: 14
Views: 7455

Can you try setting a job parameter (perhaps called jpHighDate, of type Date) to 2999-12-12 and using a reference to that job parameter in the derivation of expiration date?

Have you set the expiration date for the expiring Type 2 change record ? This is usually derived as CurrentDate().
by ray.wurlod
Mon Nov 17, 2008 5:16 am
Forum: IBM QualityStage
Topic: Match Stage in Quality Stage
Replies: 5
Views: 2442

Transactional (also called "real time") mode requires that the QualityStage Real Time manager (QSRT manager) be running. This in turn requires that you have purchased the real-time interface (RTI) components.
by ray.wurlod
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 ...
by ray.wurlod
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

Why bother? You can do this from within Excel itself. Do it manually while recording a macro, which you can subsequently turn into a script executed by DataStage if that's the way you really want to go.
by ray.wurlod
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

It would appear that this may be the case. Try it and let us know.
by ray.wurlod
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...
by ray.wurlod
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...