Search found 53125 matches

by ray.wurlod
Mon Oct 25, 2004 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file cache sharing
Replies: 5
Views: 5158

What values have you set in uvconfig for the following?
    DCWRITEDAEMON
    DCBLOCKSIZE
    DCMODULUS
    DCMAXPCT
    DCFLUSHPCT
    DCCATALOGPCT


Have you locked any hashed files into the shared disk cache using CREATE.FILE or SET.MODE commands?
by ray.wurlod
Mon Oct 25, 2004 4:19 pm
Forum:
Topic: Saving Table Definitions in DataStage for MetaStage
Replies: 6
Views: 5464

To summarise what Tom said, you must establish the linkage yourself, by any of the three methods:
    Load table definition from Repository
    Save table definition to Repository
    Drag table definition (onto link) from Repository
by ray.wurlod
Mon Oct 25, 2004 4:16 pm
Forum:
Topic: where can i get metastage student guide
Replies: 2
Views: 1959

The student guide can only be obtained by enrolling on and attending the MetaStage training classes offered by Ascential.
by ray.wurlod
Sun Oct 24, 2004 8:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcopen() - Error
Replies: 5
Views: 2019

What is the value of your UVTEMP configuration parameter?

You can use the command CONFIG DATA (from the Administrator client's command window) to find out.
by ray.wurlod
Sun Oct 24, 2004 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Manually edit table definitions
Replies: 8
Views: 1824

There is a field in a table definition record (table definition records are in the DS_METADATA table) containing "CMetaColumn/n" where n is the number of column definitions in the table definition. This introduces the collection of column definitions. Let us assume that this is found in field number...
by ray.wurlod
Sat Oct 23, 2004 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem OshExecuter
Replies: 3
Views: 1434

Check the permissions on the project directory and on any directory associated with a processing node. If the executing user does not have write permission, and script files can not be created and you might get this message. It's not really the message I'd expect in that case, however. I think an "i...
by ray.wurlod
Fri Oct 22, 2004 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Linking key columns
Replies: 2
Views: 652

Pre-load a hashed file with the natural (business) key as the hashed file key and the corresponding surrogate key value as the non-key column.

Use this hashed file to perform your "reverse lookup".
by ray.wurlod
Fri Oct 22, 2004 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remove blank lines from end of file
Replies: 9
Views: 3064

Expanding slightly on what Kim said. You can set the "missing columns" rules in the Sequential File stage (Columns grid - scroll right to find them) to have DataStage ignore the fact that there are missing columns, pad with null, etc. Then you constrain the output so that these rows are not output, ...
by ray.wurlod
Fri Oct 22, 2004 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need write new records in a CFF, (Complex Flat File, Cobol F
Replies: 1
Views: 945

Take a look in the supplied Routines, in the SDK branch. There are some associated with translating data types. They are written for reading, rather than writing, these data types and converting to "regular" numeric formats. It will be straightforward to create the inverses of these functions. It is...
by ray.wurlod
Fri Oct 22, 2004 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simultaneous reading of a dataset
Replies: 2
Views: 1514

Maybe, maybe not. For a start, both jobs would have to run on exactly the same set of processing nodes. It may also be necessary to specify those in the same order (for example use the same configuration file for each job), so that the partitioning algorithm works the same way. I don't imagine you w...
by ray.wurlod
Fri Oct 22, 2004 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error on SQLAllocHander... setting up env. using DB2
Replies: 1
Views: 1668

From past experience I know that the DB2 API is quite similar to the ODBC API. The SQLAllocEnv function (which SQLAllocHandle probably calls when needing an environment handle) does little more than set up a small amount of memory for managing the environment in which connection information will be ...
by ray.wurlod
Fri Oct 22, 2004 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning message: unbalanced input from partition
Replies: 6
Views: 10250

Thanks for posting the solution. It's one of those simple things that we just assume have been done correctly, and don't bother to ask. The support folks are more professional, and always remember to ask! 8)
by ray.wurlod
Fri Oct 22, 2004 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORAOCI Bulk load upsert?
Replies: 1
Views: 1120

Take a look at the stage properties (Write Method of Load property) and/or the script file that is produced.
Details are in the Parallel Job Developer's Guide in Chapter 12.
by ray.wurlod
Fri Oct 22, 2004 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem OshExecuter
Replies: 3
Views: 1434

Mat,

Have you ever searched this forum for "missing script file"?

Regards,
Ray
by ray.wurlod
Fri Oct 22, 2004 1:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Defining array size
Replies: 1
Views: 2153

There is an upper limit to the complexity of nested If..Then..Else statements. The limit is not documented, but IS hard-wired. You can't change it. There is an also an upper limit to the overall length of an expression. This used to be documented, but I can't find it now. From memory it is about 8KB...