Search found 53125 matches

by ray.wurlod
Tue Sep 13, 2005 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpected termination by Unix signal 9(SIGKILL)
Replies: 9
Views: 13514

They need to be educated out of this practice using minimum necessary force.
by ray.wurlod
Tue Sep 13, 2005 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MEssage Text,Message ID from Log
Replies: 2
Views: 754

Most message IDs can be found in a table called SYS.MESSAGE. Note that this has six-character keys (for example '081002' rather than '81002').

The others have to be looked up in manuals. They exist in various header files, but there's no convenient API for decoding them.
by ray.wurlod
Tue Sep 13, 2005 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Linebreaks in the log
Replies: 3
Views: 910

Do you want the summary without line breaks, or do you want the detail? To get the detail of any particular event, you need DSGetLogEvent(). To use this you will need the event number. The usual way to get the event number is to use DSGetNewestLogId(). Probably easiest is to get the absolutely last ...
by ray.wurlod
Tue Sep 13, 2005 1:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ETL Testing
Replies: 2
Views: 1405

Welcome aboard! :D First, why not search the forum? There's a Search option in the menu at the top of the page. Then qualify your question: are you interested, for example, in unit testing, end-to-end testing, integration testing, regression testing, performance testing, testing against specificatio...
by ray.wurlod
Tue Sep 13, 2005 1:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creation of user of DataStage.
Replies: 7
Views: 2186

In short, no.

DataStage roles are associated with operating system groups, not with operating system user IDs - but there is no practical limit to the number of groups on the operating system nor to the number of groups to which a user can belong.
by ray.wurlod
Tue Sep 13, 2005 1:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing Sequential file Settings based on Server
Replies: 7
Views: 1735

No.

All you can do is to export from Windows with defaulted properties (just in case), then do a search and replace on the DSX/XML file before importing into UNIX.
by ray.wurlod
Tue Sep 13, 2005 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Reference lookup counts
Replies: 8
Views: 2486

Not easy. You get separate output row for each row coming in from the reference input link.

If all you want is the count, specify user-defined SQL that returns the count for those search key values.

Code: Select all

COUNT(*) FROM table WHERE key1 = ? AND key2 = ?;
by ray.wurlod
Tue Sep 13, 2005 1:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs Not Visible In Dev Server
Replies: 10
Views: 2427

What kinda UNIX is XP? Xewlett-Packard? :lol:
by ray.wurlod
Tue Sep 13, 2005 1:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Linebreaks in the log
Replies: 3
Views: 910

You need to find out what character is being used as a line terminator - it's probably one of Char(10), @FM, @VM or @TM. Simply convert these to space.
by ray.wurlod
Tue Sep 13, 2005 1:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Activity In Sequencer
Replies: 3
Views: 1059

If you have a support contract, you will know how to obtain support. Your support provider may not be the vendor; it may be a reseller, in which case the vendor will insist that you work through your actual support provider. It follows that, if we were to give you contact details for a support provi...
by ray.wurlod
Tue Sep 13, 2005 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpected termination by Unix signal 9(SIGKILL)
Replies: 9
Views: 13514

Someone killed the process with kill -9
by ray.wurlod
Tue Sep 13, 2005 1:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to String Conversion
Replies: 5
Views: 2280

You're not viewing with a hex editor, or you're not showing us the hex representation (which should be eight bytes long).

As to your question, you did not read my prior response very well:
string_from_decimal (in a Modify stage)
by ray.wurlod
Mon Sep 12, 2005 8:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find a huge job log
Replies: 14
Views: 4639

Every job log is a separate table. You can't easily do it with SQL. Create yourself a Routine to do it. Loop through all the job names and find the corresponding job number from DS_JOBS, then count the records in RT_LOGnnn where nnn is the job number. Generate your report as you go.
by ray.wurlod
Mon Sep 12, 2005 8:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dead End
Replies: 12
Views: 2297

So?

UniVerse (DataStage Engine) is a database, and hashed files are how that particular database implements its tables. Row-level locks are still taken.

If you populate it with a UV stage, the lock is promoted to table-level once a configurable threshold (MAXRLOCK) is reached.
by ray.wurlod
Mon Sep 12, 2005 7:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calculate Row Counts
Replies: 4
Views: 3256

You will best be able to perform this with an after-job subroutine (so that you don't interfere with the run-time performance of the job) using DSGetLinkInfo function.

After-job subroutines are written in DataStage BASIC.