Search found 53125 matches

by ray.wurlod
Mon Jan 14, 2008 6:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML and Massage queue
Replies: 7
Views: 2226

Come along to the next Information on Demand conference. In the Certification Lounge (for certified people) they have massages available. Or at least they have had for the past three conferences, and it was both busy and populate, so I guess they'll keep it going. Ice creams are also available in th...
by ray.wurlod
Mon Jan 14, 2008 6:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Stage Subroutine
Replies: 14
Views: 3591

With the intermediate Sequential File stage that shouldn't have worked in 5.1 either, unless (for whatever reason) DataStage allocated the same process to execute T2 as it had used to execute T1. No way to check, alas, no longer have a 5.1 installation available.
by ray.wurlod
Mon Jan 14, 2008 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to View Data from Informix CLI Stage
Replies: 12
Views: 6463

That's correct. Get your dba to create a table/database with logging, rather than without logging. It shouldn't matter, but DataStage interprets the informational message returned by Informix as an alert, and does not permit processing to proceed. (There may be an environment variable you can set to...
by ray.wurlod
Mon Jan 14, 2008 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Stage Subroutine
Replies: 14
Views: 3591

I understood that everything was in T2, which would discount that argument. If my assumption is wrong, then I'm with Ken - COMMON is unique to one process - with an intermediate passive stage or with inter-process row buffering you force the active stages to run in separate processes, so the COMMON ...
by ray.wurlod
Mon Jan 14, 2008 1:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML and Massage queue
Replies: 7
Views: 2226

Toss a coin. Either is OK (at least once you change "massage" to "message"!). Your design will need some stage to read the records (perhaps an MQ Series stage, perhaps a Sequential File stage) followed by XML Input stage. The XML Input stage, despite its name, does not read anything. It receives XML...
by ray.wurlod
Mon Jan 14, 2008 1:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: running stae
Replies: 3
Views: 1169

Job status while running will always be "Running". You don't need to look at anything.

Sure you could do it (for example by calling a routine from the Transformer stage). But it would suffice to create a stage variable initialized to the DS Constant DSJS.RUNNING.
by ray.wurlod
Mon Jan 14, 2008 1:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: I am getting an error while saving/compiling the jobs
Replies: 4
Views: 1052

Also have your admin check the credentials assigned to each user in Information Server.
by ray.wurlod
Mon Jan 14, 2008 1:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OverView Of SQLLDR ??
Replies: 14
Views: 2654

Craig asks that question because, if you've been able to use the OCI stage (for example), it means that ORACLE_HOME and, possibly, other Oracle-related environment variables are apparently set up OK in the dsenv script (which also means that sqlldr should be able to be found, since it is usually in ...
by ray.wurlod
Mon Jan 14, 2008 1:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding $APT_NO_JOBMON
Replies: 12
Views: 5267

Don't forget/neglect phase 2 - allocation of blame and re-education.

This environment variable could not have gotten into the User-defined folder by itself.
by ray.wurlod
Mon Jan 14, 2008 1:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BigInt Problem
Replies: 6
Views: 1540

The largest permissible BigInt (int64) value is 9,223,372,036,854,775,807 (2^63-1) in a twos-complement machine. This has 19 digits. Therefore nineteen "9" characters is not a legal BigInt. You need to re-think your logic. Does this "rounding" happen only in View Data, or are you writing the result ...
by ray.wurlod
Mon Jan 14, 2008 1:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Stage Subroutine
Replies: 14
Views: 3591

If Status is empty then the row count will not be incremented, according to your logic. Add a debugging statement in the after-stage subroutine to report the values of the three COMMON variables immediately on entry.
by ray.wurlod
Mon Jan 14, 2008 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To find the total number of days
Replies: 8
Views: 1501

In that case - except for when the Pope fiddled with the calendar - you could use a simple mapping from month number (and year number in the case of February) to number of days in the month. Iconv(TheDate, "DM") -----> svMonth Iconv(TheDate, "DY") -----> svYear &q...
by ray.wurlod
Mon Jan 14, 2008 1:12 pm
Forum: General
Topic: Cannot Import Metadata into new project
Replies: 11
Views: 4541

Do you have a user called xmeta (probably as owner of the database instance) as well as a database instance called XMETA? I can't see why that user would have the Job folder locked, unless it were in the middle of doing some other task, but such a lock should only be held transiently. Have you invol...
by ray.wurlod
Mon Jan 14, 2008 12:17 am
Forum: General
Topic: Run-time error '13' Type mismatch
Replies: 12
Views: 5201

Can you open any of the other DataStage clients? At which point in the logging-in sequence does this error occur? Do you have NLS enabled and, if so, what is the client-server mapping (as set in the Administrator client)?
by ray.wurlod
Mon Jan 14, 2008 12:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Real time DS flow
Replies: 7
Views: 2759

DataStage does support real time. Sequential files with buffered writes don't. You could submit an enhancement request to allow for non-buffered writes or flush interval to be configurable - that technology exists even in DataStage BASIC.