Search found 53125 matches

by ray.wurlod
Tue Feb 15, 2005 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception raised in GCI subroutine: Access violation
Replies: 5
Views: 6506

The line beginning DIAG tells you that the ODBC driver could not connect to SQL Server because SQL Server reported that it was too busy doing other things. This could be other users, or it may be an abandoned connection from one of your DataStage jobs that has not (yet) been closed properly. In the ...
by ray.wurlod
Tue Feb 15, 2005 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using hash files instead of UV tables for multirow
Replies: 13
Views: 16020

Didn't Scott Adams (author of Dilbert) once work there too? :lol:
by ray.wurlod
Tue Feb 15, 2005 7:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Repository
Replies: 11
Views: 4053

This is one of the things that MetaStage does.

MetaStage is destined to BE the repository in a future release so you may as well get started getting used to it.

I didn't tell you that. :wink:
by ray.wurlod
Tue Feb 15, 2005 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation
Replies: 3
Views: 1055

Isn't this just 10 raised to the power Decimal?

Code: Select all

10 ** Decimal
by ray.wurlod
Tue Feb 15, 2005 7:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile cache - how much memory is used
Replies: 7
Views: 2434

Those are well described in the "manual" dsdskche.pdf. System caching allows one hashed file to be shared between multiple jobs. I haven't attempted it but it may even allow sharing between jobs in multiple projects!
by ray.wurlod
Tue Feb 15, 2005 7:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Routines
Replies: 8
Views: 4653

Two points. 1. You can not invoke Transforms in Routines. The best you can do is to copy/paste the Transform definition expression into your code. 2. All of the supplied routines have their DEFFUN declarations in a header file. You can include this within your Routine as follows, ahead of any execut...
by ray.wurlod
Tue Feb 15, 2005 7:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: incompatability of ORAOCI (OCI 7) stage with Oracle Rls 9.2
Replies: 4
Views: 1561

End of file on communication channel can also occur when the DBA does a forced logoff of all Oracle users/connections.
Check with your DBA as to whether there was any maintenance done at the time, and/or whether any connections were forcibly dropped from the database server
by ray.wurlod
Tue Feb 15, 2005 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset the Status/ Return Code of A routine
Replies: 2
Views: 629

You've described it well, now all you have to do is code it.

Code: Select all

If Ans = 1 Then Ans = 0
by ray.wurlod
Tue Feb 15, 2005 4:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Routines
Replies: 8
Views: 4653

"Array not dimensioned" usually results from a DEFFUN declaration being omitted. DEFFUN alters the compiler that the name followed by a left parenthesis is a reference to a function. Without DEFFUN the compiler interprets a name followed by a left parenthesis as a reference to a dimensioned array el...
by ray.wurlod
Tue Feb 15, 2005 3:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception raised in GCI subroutine: Access violation
Replies: 5
Views: 6506

First guess is that the upgrade has overwritten your uvodbc.config file.
by ray.wurlod
Tue Feb 15, 2005 3:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column generator
Replies: 3
Views: 1775

Welcome aboard! :D One simple example for needing an extra column is to add a (constant) identifier of the data source where you have more than one source. For example, you might identify all data from store A with 'A' and all data from store B with 'B'. These might be useful in downstream processin...
by ray.wurlod
Mon Feb 14, 2005 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric check on input sequential file
Replies: 7
Views: 1978

NUM() recognizes ANYTHING that is numeric, including 6.023E23. If you want to check for unsigned integer, prefer MATCHES "1N0N" (one numeric character followed by zero or more numeric characters). If you want to check for signed or unsigned integer, extend the pattern to include the sign c...
by ray.wurlod
Mon Feb 14, 2005 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Controller Error
Replies: 6
Views: 3007

It might just be that the poster has English as a second - or eighth - language. And, as we all know, English is a mongrel to learn. I can envisage that "checked off" is a transliteration of something thought in another language. If only KV had provided whereabouts in the profile, we'd have a better...
by ray.wurlod
Mon Feb 14, 2005 3:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Enable Selection tab in Hash Stage for Remote Hash File
Replies: 10
Views: 4069

If I posted all of those then anyone could command the same level of fees that I do. :P

And I worked hard to assemble these! :!:
by ray.wurlod
Sun Feb 13, 2005 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Enable Selection tab in Hash Stage for Remote Hash File
Replies: 10
Views: 4069

I neglected to mention my personal standard #47; any job that creates a hashed file executes a SETFILE command to create the VOC pointer. And therefore can use the Account option and have the Selection tab enabled.
Sorry about that.