Search found 53125 matches

by ray.wurlod
Wed Apr 11, 2007 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF issue
Replies: 5
Views: 1747

How are you specifying null handling? Have you nominated a default value for these decimal fields? Are there any warnings about nulls being logged?
by ray.wurlod
Wed Apr 11, 2007 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Version 8.2 Comapatibility with Datastage version 7.1r2
Replies: 1
Views: 1606

Not seen it, but didn't have much experience with 7.1r2. It might be interesting to farm this back to IBM support, and watch the DS support point the finger at DB2 and vice versa. I suspect you're right, that there's a version compatibility issue. What does your DataStage manual say about the DB2 st...
by ray.wurlod
Wed Apr 11, 2007 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can We Recover deleted job
Replies: 10
Views: 7660

From your Administrator client Command window:

Code: Select all

LIST.DICT DS_AUDIT
to learn the column names.

Code: Select all

SELECT CLASS, INSTANCE, PREVDTD, PREVDELETOR FROM DS_AUDIT WHERE PREVDTD > '';
to identify what was deleted when and by whom. Constrain on CLASS = '2' to limit the report to jobs.
by ray.wurlod
Wed Apr 11, 2007 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version 8 on Fedora
Replies: 4
Views: 1473

We have had nothing but grief trying to use any Linux other than Red Hat AS3.0.
by ray.wurlod
Wed Apr 11, 2007 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Named pipe - error in 'write()' - No child processes
Replies: 1
Views: 922

If you are going to write to named pipes it is your responsibility to make sure that there is some other co-ordinated process reading from those names pipes, so that the pipes do not fill. These are the "child processes" referred to in the error messages.
by ray.wurlod
Wed Apr 11, 2007 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential processing of Files
Replies: 43
Views: 11929

Yes.

You can put the second link into a second job.

Execute the two jobs consecutively from a job sequence.
by ray.wurlod
Wed Apr 11, 2007 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sql Server Upgrade
Replies: 4
Views: 1253

There's nothing else to do. Assuming that the table and column names remain the same, the connectivity remains the same, and the SQL syntax remains the same, there's nothing inside the jobs for you to check. The only possible area to check might be the ODBC connectivity files (.odbc.ini and uvodbc.c...
by ray.wurlod
Wed Apr 11, 2007 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling C program from DataStage Job
Replies: 16
Views: 6469

The before/after subroutine is executed from the job properties itself, not from a stage. If you want to execute your command from every row processed, then you could use an External Source, External Target stage or an External Filter stage, depending upon whether you need input, output or input and...
by ray.wurlod
Wed Apr 11, 2007 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: px installation on pc
Replies: 6
Views: 1734

For version 8.0 recommended physical memory (RAM) for IBM Information Server is at least 8GB. You can probably run the Application Server on this machine as well with some performance penalty. And 2GB is the recommended memory for the client.
by ray.wurlod
Wed Apr 11, 2007 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records going in air
Replies: 11
Views: 3483

That's your problem entirely, of course. Make time to garner some time management skills. Many of us read every post here, up to 200 per day. We allocate the time to do so.
by ray.wurlod
Wed Apr 11, 2007 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate Conversion
Replies: 2
Views: 1563

It is a simplification to assume a one-to-one relationship between stages and operators. Some stage types generate a composite operator - for example a Lookup stage (other than for sparse lookup) or a Data Set stage (when overwriting). A Copy stage that makes one identical copy of its input will be ...
by ray.wurlod
Wed Apr 11, 2007 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convertions
Replies: 21
Views: 17931

Not all conversions are automatic as in server jobs. Your mindset is still on server jobs - you even marked this as a server jobs. The error message codes indicate that it isn't. You need explicitly to address each of the issues, with data type conversion functions and appropriate data types. There ...
by ray.wurlod
Wed Apr 11, 2007 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Palette is empty
Replies: 5
Views: 3069

Have you tried re-indexing the DS_STAGETYPES table in the Repository? Otherwise, can you achieve any progress with customizing the Palette, as Craig suggested? If not, you probably have the mismatched versions issue. You CAN have two client versions installed, but they must be installed in different...
by ray.wurlod
Wed Apr 11, 2007 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: prerequisite while Changing 32-bit To 64-bit Hashed File?
Replies: 4
Views: 1045

Reset 64BIT_FILES to zero and restart DataStage. As Craig said, to set this to 1 is a Bad Idea. Prefer to issue your own CREATE.FILE or mkdbfile commands to create 64-bit hashed files, but only when necessary. You can get the syntax from the Hashed File Calculator (on your DataStage CD). 64-bit hash...