Search found 53125 matches

by ray.wurlod
Thu Jan 05, 2006 10:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash files and lookups
Replies: 17
Views: 8131

2.If we update the the source file of lookup (eg oracle table,or asequncial file )how it will visible at the lookup dynamically? DataStage does not update your lookup table automatically. If you are using a hashed file you have pre-populated this with an image from the target table. As the job runs...
by ray.wurlod
Thu Jan 05, 2006 10:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SearchableN
Replies: 6
Views: 1645

<arcane stuff>That character is actually an Icelandic "thorn" character. It's used in some other languages, such as Old English and Old Norse.</arcane stuff> This character is how a field mark (@FM) is represented in some data viewers including, it seems, your DataStage data browser. Multi-line desc...
by ray.wurlod
Thu Jan 05, 2006 10:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reports Files write to EXCEL FILE OUTPUT
Replies: 2
Views: 1103

You can access Excel via an ODBC driver for Excel. However, such a driver does not ship with DataStage; you will need to source one from elsewhere.

Otherwise you can generate a text file in any format that Excel can open, such as a CSV file.
by ray.wurlod
Thu Jan 05, 2006 10:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Job Warnings Removal
Replies: 2
Views: 1018

You can use message handlers to either suppress or demote warning messages to informational.

These are set up within the DataStage environment. The easiest way is to right mouse click on the warning itself, then choose to create a message handler from the pop-up menu.
by ray.wurlod
Thu Jan 05, 2006 8:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is it possible to have two Instances of 7.5.1 on one box
Replies: 17
Views: 3955

Not if you had (bought) two licences.
by ray.wurlod
Thu Jan 05, 2006 8:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access error
Replies: 5
Views: 1625

Search the forum for UNLOCK
by ray.wurlod
Thu Jan 05, 2006 5:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with using sed, awk, nawk or tr
Replies: 22
Views: 5026

It's do-able with awk, but not in a single line - you'd need an awk script to loop through the arbitrary (or even fixed) number of sets of coordinates. So you may as well go with any kind of script.
by ray.wurlod
Thu Jan 05, 2006 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Record length in sequential file
Replies: 8
Views: 1836

DataStage does not impose any limit on record length in sequential files.

However, the underlying operating system may do so.
by ray.wurlod
Thu Jan 05, 2006 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incremental Aggregation loading
Replies: 4
Views: 943

"Hire a competent consultant" is the fastest solution! :D "Get some training" is the next best, and better for longer term maintainability.
by ray.wurlod
Thu Jan 05, 2006 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash files and lookups
Replies: 17
Views: 8131

Virtual Data Sets only exist in parallel jobs. They do not exist in server jobs. The original post marked the job as a server job.
by ray.wurlod
Thu Jan 05, 2006 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SearchableN
Replies: 6
Views: 1645

It's not an error message! It is technical metadata that indicates that the column is not indexed. It's in the description column so should not have any impact whatsoever on your job design. That there are mark characters in the description should be OK. I do not know why this error is appearing. Th...
by ray.wurlod
Thu Jan 05, 2006 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access error
Replies: 5
Views: 1625

The pid does exist - it's just that you're looking for the wrong thing. Each connected client establishes a dsapi_server as its agent process, and that may fork a dsapi_slave process. The problem with your job design, however, is more likely to be locks in the Repository database than processes. If ...
by ray.wurlod
Thu Jan 05, 2006 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator warning :implicit conversion from dfloat to int32
Replies: 3
Views: 1543

You'll always get the warning (since the Aggregator stage uses dfloat internally and you can't affect that), but you can create a message handler to demote it to an informational message. Or you can declare the output column to be a dfloat, and modify it back to integer somewhere downstream, as Kuma...
by ray.wurlod
Wed Jan 04, 2006 11:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash files and lookups
Replies: 17
Views: 8131

1. in real time senario lookupss are very large in size(GBs or TBs). I such a case how Datastage can manage the storage in main memory. No. The maximum size of a cached hashed file is 999MB. If you were to use DataStage Enterprise Edition, then you could use a virtual Data Set (or Lookup File Set) ...