Search found 53125 matches

by ray.wurlod
Wed Jun 13, 2007 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Notification Activity
Replies: 3
Views: 1343

And what will the parameter file do with the email notification once it receives it?
by ray.wurlod
Wed Jun 13, 2007 2:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file
Replies: 3
Views: 1402

jprasannakumar wrote:im loading a hash file

No you're not, you're loading a hashed file.

My guess is that you've mishandled the metadata for the hashed file. Hashed files must have a primary key, and fields are accessed by position, rather than by name.
by ray.wurlod
Wed Jun 13, 2007 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing partly sorted data into the Aggregator
Replies: 6
Views: 1413

The memory table isn't sorted at all, whether or not the incoming data are sorted. That is, no sorting is applied. Indeed, what's built in memory is a hash table (not the same thing as a hashed file).
by ray.wurlod
Tue Jun 12, 2007 10:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage
Replies: 4
Views: 1001

No more answers till this is in the server forum.
by ray.wurlod
Tue Jun 12, 2007 10:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer compilation error
Replies: 5
Views: 2033

The MKS Toolkit C++ compiler is not supported. You need to install the correct compiler before installing DataStage server. Search the forum for details.

The file that could not be found ('D:/PROGRA~1/MKSTOO~1/etc/cxx.ccg') is part of MKS Toolkit.
by ray.wurlod
Tue Jun 12, 2007 10:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Date Conversion Problem
Replies: 8
Views: 2220

First please make clear whether this is a server job question (as marked) or a parallel job question (as per the forum in which you have posted). The answer will be markedly different based on job type. If it's in a job sequence, let us know that too.
by ray.wurlod
Tue Jun 12, 2007 10:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set/Get Stage variables?
Replies: 15
Views: 8164

Can you show us how you're trying to use DSSetVar? And where?
by ray.wurlod
Tue Jun 12, 2007 10:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To speed up the aggregator
Replies: 15
Views: 5784

The correct spelling of the second person personal pronoun is "you" not "u".
:x

You can use any method you like to sort the data. A Sort stage is one way. If the source is a database table, you could include an ORDER BY clause in the extraction SQL.
by ray.wurlod
Tue Jun 12, 2007 7:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Write permission error
Replies: 4
Views: 1394

It's not about UNIX permissions, it's about table privileges within Teradata. The first developer, creating the table, becomes its owner and has all privileges. The second developer has none, because neither the first developer nor the DBA granted any. Usually, when you create a table via an ETL too...
by ray.wurlod
Tue Jun 12, 2007 7:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exporting jobs using command line
Replies: 6
Views: 1740

umamahes wrote:I can write a routine to create a list of jobs in a category.

Apparently there is. Care to share it?
by ray.wurlod
Tue Jun 12, 2007 7:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parsing value in Column
Replies: 5
Views: 1175

svContainsSep <-- Index(InLink.TheColumn, "--", 1) If svContainsSep Then Field(InLink.TheColumn, "-", 1, 1) Else InLink.TheColumn If svContainsSep Then Field(InLink.TheColumn, "-", 3, 99) Else 0 It's not totally clear from your examples what your business rules ar...
by ray.wurlod
Tue Jun 12, 2007 7:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing partly sorted data into the Aggregator
Replies: 6
Views: 1413

Not the case, Arnd. The server Aggregator stage builds a dynamic table in memory, with one row for each combination of grouping keys. The initial size and increment of this table is tuneable using the final option on DS.TOOLS menu. With unsorted data, the entire input stream must be loaded into this...
by ray.wurlod
Tue Jun 12, 2007 7:28 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: ProfileStage connection problem
Replies: 3
Views: 2627

Yes, you need to define within ProfileStage where the Analysis Server is (or even multiple Analysis Servers). When you open ProfileStage's Connection Manager you identify not only the PSDB but also the Analysis Server(s) as well as any associated data sources and details. The first time you access a...
by ray.wurlod
Tue Jun 12, 2007 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Partition error on View
Replies: 7
Views: 2077

That's why I asked you to check whether the view was partitioned. It is not necessarily the case that a view on partitioned table(s) is itself partitioned. Here it is not. Present your findings to the DBA to confirm. Meanwhile, remove the view name from the Partition Table field. Possibly replace it...