Search found 53125 matches

by ray.wurlod
Mon Oct 11, 2004 9:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LKP Stages In Jobs
Replies: 5
Views: 1988

Welcome aboard! :D You really have not given us enough information to help. Please post the exact error message(s) from the log, or from the compilation phase if this is where it is occurring. It may even be that none of your Lookup stages is responsible; without seeing the actual error message(s) w...
by ray.wurlod
Mon Oct 11, 2004 9:03 pm
Forum: Enhancement Wish List
Topic: Locked jobs annoy me during import/export
Replies: 1
Views: 1673

We do unattended exports at a known time of day (21:00-21:10 approx). All of the developers know that, if they've left anything locked at this time, it doesn't get "backed up". Tough. The log file can tell them about it in the morning.
by ray.wurlod
Mon Oct 11, 2004 9:01 pm
Forum: Enhancement Wish List
Topic: DataStage Restricted Mode
Replies: 11
Views: 5583

Because uvcs processes bypass UV.LOGIN afaik. Plus, you don't really want to have to get into the UV environment only to be kicked out; far better to prevent getting in at all. You could, of course, simply stop or pause the RPC daemon; it would have a similar effect, but prevent your using the Admin...
by ray.wurlod
Mon Oct 11, 2004 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert 21 digits to 13 digits uniquely
Replies: 18
Views: 4004

The original post did specify 13 digits - I also thought of this kind of encoding, but felt constrained by that original requirement. Experience teaches that you should avoid the letters I and O if you do go for this solution.
by ray.wurlod
Mon Oct 11, 2004 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: copy project from one box to another
Replies: 1
Views: 959

Of course you can copy them. But will they work? Probably not. What will be missing are "system table" entries on the second machine. The easiest way to get these in place is to do it properly; create the projects on the second machine using Administrator client. Then export from machine 1 and impor...
by ray.wurlod
Mon Oct 11, 2004 3:10 pm
Forum: Enhancement Wish List
Topic: DataStage Restricted Mode
Replies: 11
Views: 5583

That admitted, I think what 1stpoint is seeking is something like Prime INFORMATION's MAXUSERS command, where an administrator can limit the maximum number of logins to a particular number, including zero. This was never implemented in UniVerse (for reasons never satisfactorily explained). Some UniV...
by ray.wurlod
Mon Oct 11, 2004 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert 21 digits to 13 digits uniquely
Replies: 18
Views: 4004

The maximum precision that DataStage can handle is configured using the EXACTNUMERIC tuneable. Its default value is 15; you can take it as high as 57. The largest four-byte signed integer is 2,147,483,647 (ten digits); this has nothing to do with DataStage and everything to do with the largest integ...
by ray.wurlod
Sun Oct 10, 2004 8:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert 21 digits to 13 digits uniquely
Replies: 18
Views: 4004

Generate a value into the 13 digit field.

Ignore the incoming 21-digit field, or store it in a non-key column in the target table if that's allowed for.

Require your customer to justify this illogical decision.
by ray.wurlod
Sun Oct 10, 2004 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert 21 digits to 13 digits uniquely
Replies: 18
Views: 4004

Let me rephrase your question. There is a field that can contain potentially 10^21 different values; you want to store these in a field that can contain a maximum of 10^13 distinct values. Unless there is other information about the original values that you have not revealed, then the answer is no.
by ray.wurlod
Sat Oct 09, 2004 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create a copy of a VERSION Control project
Replies: 2
Views: 1054

Welcome aboard! :D You could have used the Administrator client to create the new project, then exported the old and imported into the new using the Manager client (Export/Import DataStage components). To connect the VC client to a changed project, the trick is to enter an invalid password, which op...
by ray.wurlod
Fri Oct 08, 2004 10:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unicode Conversion Error
Replies: 2
Views: 652

Usually that error stems from having an incorrectly specified Unicode map when running DataStage with NLS enabled.

Another possibility is that the SQL Server data type is NVARCHAR or NCHAR and you're feeding it a character that it can't map using Microsoft's idea of a Unicode map.
by ray.wurlod
Fri Oct 08, 2004 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: manuals required to know about more Unix commands of DS
Replies: 2
Views: 1032

The commands themselves are in $DSHOME/bin.

There is very little documentation available.

For those that correspond with UniVerse utilities of the same name, some documentation is available from IBM's website
by ray.wurlod
Fri Oct 08, 2004 10:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Client Edition
Replies: 3
Views: 997

What you've asked for is not possible. The DataStage clients are true clients; everything you do is actually recorded and stored on the DataStage server to which the client tool is connected.
by ray.wurlod
Fri Oct 08, 2004 10:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Lang
Replies: 8
Views: 2827

NLS_LANG is an environment variable.
by ray.wurlod
Thu Oct 07, 2004 9:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 7529

I'm with Ken. Alternatively, re-educate your customer. Surrogate keys (assuming that's what you're doing) are SOLELY about uniqueness; it doesn't matter if there are gaps. At the very least have them justify their requirement. Be prepared to tell them that the requirement is nonsensical. Or stupid, ...