Search found 53125 matches

by ray.wurlod
Thu Sep 08, 2005 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to build Time dimension table
Replies: 11
Views: 5529

You can use a Transformer stage as a row generator. Create a stage variable initialized to the internal form of the starting date (the initialization expression can use Iconv() and the starting date can be a job parameter). Increment the stage variable by 1. Output link constraint is that you are le...
by ray.wurlod
Thu Sep 08, 2005 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unlock Jobs by modifying VOC file..?
Replies: 3
Views: 1115

Changing the VOC does not unlock anything.

If you use DS.TOOLS to unlock, the requisite entries are moved to your VOC file automatically.
by ray.wurlod
Thu Sep 08, 2005 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to copy contents in Data Browser
Replies: 2
Views: 974

Seems to be. :cry:
by ray.wurlod
Thu Sep 08, 2005 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Iconv
Replies: 2
Views: 880

If it's in YYYYMMDD format, then you need either [4,2,2] (not [2,2,2] which specifies a two-digit year) or nothing after the DYMD part of your Iconv() specification. Both of the following will work for YYYYMMDD format: Iconv(TheDate, "DYMD[4,2,2]") Iconv(TheDate, "DYMD") You then need to use Oconv t...
by ray.wurlod
Thu Sep 08, 2005 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reject
Replies: 3
Views: 868

It might be interesting to ask how they got in there in the first place.

The easiest thing to do is to filter them out when extracting - add another WHERE condition in the SQL so that "blank rows of data" (whatever that means) are not selected.
by ray.wurlod
Thu Sep 08, 2005 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing a message from a transform into job log
Replies: 6
Views: 2084

In BASIC, where there are no data types, there is no need to declare variables. Variables come into existence when first used. It follows from this that, where a variable name is used as an rvalue (for example on the right hand side of an assignment statement), it may be in an "unassigned" state - t...
by ray.wurlod
Thu Sep 08, 2005 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: link shared private file cache enabled, overriding no cache
Replies: 5
Views: 1146

What is the setting of "Use Project Defaults" in the job properties Performance page?
by ray.wurlod
Thu Sep 08, 2005 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error:- ds_udtGetNextPacket Error calling DSHELPER
Replies: 5
Views: 2492

What happens if you convert the value marks into some kind of delimiter - maybe comma or pipe? You can do this with a virtual attribute descriptor in the file dictionary with expression CONVERT(@VM,"|",fieldname). Return this as a single-valued VarChar field.
by ray.wurlod
Thu Sep 08, 2005 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TIMESTAMP
Replies: 3
Views: 994

Please post the exact error message.
by ray.wurlod
Thu Sep 08, 2005 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simple division in Transformer stage results in zero
Replies: 6
Views: 4366

Div() performs integer division. It is documented as doing so. Wolfgang's solution using AsFloat is about as elegant as you're going to get (you may need to adjust the outer function according to your requirements, for example AsDecimal).
by ray.wurlod
Thu Sep 08, 2005 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 0 (zero) padding for number datatype field
Replies: 2
Views: 2141

Does adding zero to each number remove the leading zeroes?
by ray.wurlod
Thu Sep 08, 2005 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Mointoring on Solaris
Replies: 5
Views: 1466

Does the second job perform more computation than the first (derivations and the like)?
by ray.wurlod
Thu Sep 08, 2005 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator warning as viewed in director log
Replies: 5
Views: 1710

My nick was never ray - on any site. :D
by ray.wurlod
Thu Sep 08, 2005 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create New Stage in DataStage.
Replies: 2
Views: 1652

It's definitely possible. There is a manual about it - Plug-In Stage Writer's Guide - available for the asking from Ascential/IBM. But you need to be a very competent C programmer to create the stage type and a competent C++ programmer to create a GUI for it.
by ray.wurlod
Thu Sep 08, 2005 1:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Table
Replies: 1
Views: 815

The limit is at least 2GB so it's not that.

Please post the entire error message, which will show you the query and the column about which it was complaining.