Search found 53125 matches

by ray.wurlod
Thu Jan 04, 2007 12:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding DSTRANSFORMERS
Replies: 7
Views: 1633

Re: regarding DSTRANSFORMERS

Saama wrote:iam defining column properties as MONTH.TO QUARTER('HIREDATE')


The quotes around the input column name are incorrect.
by ray.wurlod
Thu Jan 04, 2007 12:10 am
Forum:
Topic: Performance tuning
Replies: 1
Views: 1164

You misunderstood it totally.

It has nothing whatsoever to do with metadata.

Yet you posted the question on the Metadata forum.

Posting the question on the correct forum is more likely to yield a substantive answer.
by ray.wurlod
Wed Jan 03, 2007 5:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding utility hashlookup
Replies: 8
Views: 1820

It's a transform function and therefore can not be invoked as a before/after subroutine.
by ray.wurlod
Wed Jan 03, 2007 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding utility hashlookup
Replies: 8
Views: 1820

vijaykumar wrote:i need to make use of utilityhashlookup


You don't. It's the wrong answer to your requirement.

Source code is provided in the repository; examine it if you want to understand what it does and how it works.
by ray.wurlod
Wed Jan 03, 2007 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: converting varchar to timestamp in Oracle-ORA-01850 error
Replies: 9
Views: 6196

Make the length 19 and supply an all-zeros time part. Your date picture indicates that you are supplying date and time components.

Code: Select all

InLink.VarCharDate : " 00:00:00"
by ray.wurlod
Wed Jan 03, 2007 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding utility hashlookup
Replies: 8
Views: 1820

In the Transformer stage that you have not yet included in your design. However, it would be far more efficient to use a second Hashed File stage in the job design, and use the Transformer stage to perform the lookup against it. In this way, you do not incur the overhead of the routine, and possibly...
by ray.wurlod
Wed Jan 03, 2007 5:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Processing
Replies: 11
Views: 2250

You build these tables according to the specifications of your customer. What information do they want recorded? Once you have those answers, you can figure out how to capture these from DataStage and elsewhere, and create tasks for recording them into the tables.
by ray.wurlod
Wed Jan 03, 2007 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Properties in Administrater taking very long time
Replies: 8
Views: 1944

Maybe, maybe not. The network is a strange beast; it can be busy in some sectors and not in others, depending upon the topology. But domain controllers, it seems to me, are always busy.
by ray.wurlod
Wed Jan 03, 2007 5:06 pm
Forum: General
Topic: dynamic file name
Replies: 6
Views: 2527

Safer to assert that a job parameter can not legally be changed in a running job. Some folks out there are doing it illegally, and will need to re-think their strategy before upgrading to version 8.0, when their "hack" may cease to work.
by ray.wurlod
Wed Jan 03, 2007 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key
Replies: 12
Views: 3635

All of these questions can be answered by searching the forum. You don't seem to want to use the user status area; if you do please search for DSSetUserStatus(). 3. If you've stored it in a file, read it from that file (maybe using a cat command in an Execute Command activity and trimming off the li...
by ray.wurlod
Wed Jan 03, 2007 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No nodes with disk in "export"
Replies: 2
Views: 1539

It's informing you that you have not created a node pool called export in your configuration file so the export operator (which expects to find a node pool called export ) is using the default node pool - the one called "" - instead. This is a change from your design, so has to be reported. You migh...
by ray.wurlod
Wed Jan 03, 2007 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to a Sequential file
Replies: 12
Views: 2856

How many identities do you have here?!! It is still not clear whether the source file contains all three records on one line or on three lines. If they are all one one line, you can simply treat the whole line as a single VarChar field, insert line terminator characters in the correct location, and ...
by ray.wurlod
Wed Jan 03, 2007 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HowTo extract data from binary file?
Replies: 15
Views: 4933

The "" character is how your data viewer represents a non-printable character, for example tab or esc. As for the "date filled by ''", look again at the hex dump to see what these characters actually are. If they're all 00 this suggests that NULL is represented by ten ASCII NUL characters...
by ray.wurlod
Wed Jan 03, 2007 4:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input beffer overrun
Replies: 2
Views: 2564

How big is the field? How big is a signed packed decimal(9,3)? The difference is probably your input buffer overrun.
by ray.wurlod
Wed Jan 03, 2007 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why do we need fixed width columns ?
Replies: 9
Views: 2007

Substring is much faster than delimited field extraction. Therefore most bulk loaders recommend that you prefer fixed width format to delimited format.