Search found 53125 matches

by ray.wurlod
Mon Apr 28, 2008 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: view data, job compile issue
Replies: 5
Views: 3695

Yes, and uv.rc is its old name - it's probably ds.rc and it's probably in a directory called something like /etc/rc2.d - that said, it's also probably a symbolic link back to the ds.rc in the sample directory. Depends how DataStage was installed.
by ray.wurlod
Mon Apr 28, 2008 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF stage
Replies: 3
Views: 1222

A COBOL file definition (FD) contains "the file shown above". Therefore it's no surprise you can't import it using the file shown above. When importing a COBOL FD you must specify the start position of the "A margin" - of the level 01 item(s). What error are you getting when trying to import a COBOL...
by ray.wurlod
Mon Apr 28, 2008 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage internal variable which reset everyday
Replies: 4
Views: 1469

Two environment variables, one to store the counter value, the other to store when it was last updated. If that was yesterday or earlier, reset the counter to 1. You can do this readily through a Routine activity or a before-job subroutine. Tip: store the date in YYYY-MM-DD format or DataStage inter...
by ray.wurlod
Mon Apr 28, 2008 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppress Warning in Job Sequence
Replies: 6
Views: 2735

Message handlers are not for job sequences: they are only for parallel jobs. You need to create explicit trigger(s) to handle the "Failure" (non-zero return value) if you are going to have the "automatically handle activities that fail" and or "log warning for activities that do not finish successfu...
by ray.wurlod
Mon Apr 28, 2008 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column split into multiple rows
Replies: 7
Views: 1997

Split the data using a Column Import stage then use a Pivot stage to generate your desired rows.
by ray.wurlod
Mon Apr 28, 2008 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Change Data Capture
Replies: 1
Views: 984

CDC comes at additional price. You can find out about it from your vendor or by searching the IBM website.
by ray.wurlod
Mon Apr 28, 2008 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LOG file & datastage job viewing in aix
Replies: 12
Views: 18421

DataStage jobs are not stored in any readily retrievable form either. They are stored as object and configuration records in a database. At runtime these data are read and used to execute your ETL process.
by ray.wurlod
Mon Apr 28, 2008 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Charachter handling in Dataset
Replies: 10
Views: 2476

Is this the em-dash or en-dash character? Or is it some other form of character? Arnd's solution is a good one if the right answer is to convert to hyphen. But what if it isn't? What if the users actually need Char(150) in the result? The fact that View Data can not handle the character should be im...
by ray.wurlod
Mon Apr 28, 2008 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing Mainframe DB2 Procedure multiple times
Replies: 5
Views: 1338

Before you even get to that you need to establish whether you can even call the mainframe DB2 stored procedure even once from DataStage running on UNIX.

If you can do it once, the rest is easy and has a number of solutions.
by ray.wurlod
Mon Apr 28, 2008 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort
Replies: 2
Views: 1119

Memory for all tsort operators can be specified using an environment variable APT_TSORT_STRESS_BLOCKSIZE
by ray.wurlod
Mon Apr 28, 2008 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Logs in Director getting cleared during DS migration
Replies: 3
Views: 1035

The log gets cleared because import (when overwriting) actually clears the old job and writes the new. If you have a slow enough connection you can see this happening in the import progress display.

Version Control does not clear, but simply overwrites.
by ray.wurlod
Mon Apr 28, 2008 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Excel File
Replies: 16
Views: 5876

Does the Sheet1 in question have column headings COL1 and COL2 ?
by ray.wurlod
Mon Apr 28, 2008 4:15 pm
Forum: General
Topic: Datastage migration from v7.5 to v.8
Replies: 1
Views: 1951

Fourth time this question has been asked in the last two weeks.

Please Search before posting. It saves time for all of us.
by ray.wurlod
Mon Apr 28, 2008 2:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: diff b/w datastage 7.5 and 8.0
Replies: 1
Views: 782

A good place to start would be the Search option at the top of this page. The question has been answered quite recently.
by ray.wurlod
Mon Apr 28, 2008 2:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppress Warning in Job Sequence
Replies: 6
Views: 2735

Posting what you did (the precise steps) and what it was about your operation that leads you to assert your failure.

We will then be in a better position to suggest how you should add (should have added) a message handler.