Search found 53125 matches

by ray.wurlod
Tue Mar 01, 2005 11:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need QUARTER to load the TIME dimension table
Replies: 19
Views: 4853

You could take a look at the QUARTER.TAG Transform, but this is not quite what you want. It expects a slightly different (again!) input date format, and returns yyyyQn.

You could, however, use this and the expression earlier as the definition for a new Transform that does exactly what you want.
by ray.wurlod
Tue Mar 01, 2005 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit in Sequential file
Replies: 7
Views: 1691

There are a lot of clever tricks built in to the Sequential File stage, including read-ahead and write-ahead buffers. This means that there will be some time before you will see any rows actually appear. It seems to be 1000 rows before any rows are sync'ed. These buffers can not be accessed or confi...
by ray.wurlod
Tue Mar 01, 2005 10:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing no matching columns from lookup to a file
Replies: 2
Views: 653

My lookup doesnt have any matching condition. In that case, in a server job, you don't have a lookup. It's as simple as that. On the other hand, what you are possibly asking is that, for some rows, your lookup does not succeed. In this case you want to capture those rows, and direct them to another...
by ray.wurlod
Tue Mar 01, 2005 9:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need QUARTER to load the TIME dimension table
Replies: 19
Views: 4853

For some reason (ISP?) my posts are taking a long time to appear today.
by ray.wurlod
Tue Mar 01, 2005 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Material Configuration for a Server
Replies: 6
Views: 1921

Umm... it's just a word in my vocabulary. Possibly from long exposure to Latin - the root verb is parcere (to spare, as in to be sparing with).
by ray.wurlod
Tue Mar 01, 2005 9:16 pm
Forum: IBM QualityStage
Topic: Regarding Installation
Replies: 2
Views: 1958

QualityStage server is needed on the machine where you execute your jobs. It runs a process called qsserv . QualityStage designer is a Windows-based tool where you design your jobs. QualityStage DataStage Plug-In is the package that contains stage types that allow you to invoke QualityStage componen...
by ray.wurlod
Tue Mar 01, 2005 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to connect JobMonApp on port
Replies: 11
Views: 12102

I can't find the file yousucks.h on my installation, and find it almost inconceivable that an error message would be reported on a header file, or even that a header file would contain more than 10000 lines. :lol:
by ray.wurlod
Tue Mar 01, 2005 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Material Configuration for a Server
Replies: 6
Views: 1921

Unfortunately, I've had to have some vigorous discussions with clients who wanted to go with the cheapest they could obtain.

It's a bad approach; you spend that much on the software, and want to be parsimonious with the hardware?
by ray.wurlod
Tue Mar 01, 2005 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need QUARTER to load the TIME dimension table
Replies: 19
Views: 4853

Derivation expressions in the Transformer stage are just that; expressions. You specified that your derivation expression was OutLink.Quarter = OCONV(ICONV(InLink.InDate,"D4/MDY"),"DQ") In fact, you only need the right-hand side. OCONV(ICONV(InLink.InDate,...
by ray.wurlod
Tue Mar 01, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Command line Basic to compile Basic Programs...
Replies: 5
Views: 1715

You're probably at the wrong command line. And it's not an interpreter - it's compiled BASIC. The command line where you need to be is that of dssh . Before you invoke this shell, make sure you are attached to your DataStage project directory. If ever you see the question "This directory is not an a...
by ray.wurlod
Tue Mar 01, 2005 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS Access Hyperlink type
Replies: 1
Views: 593

VarChar - or a variant thereof - is about the only data type supported by DataStage for passing a hyperlink (as a string).
by ray.wurlod
Tue Mar 01, 2005 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transform DATE OCONV() Question
Replies: 14
Views: 7857

I prefer Oconv(@DATE, "DYMD[4,2,2]" : @VM : "MCN") as I said very recently.

Arguably one should be able to use "" as the separator character, for example Oconv(@DATE, "D''YMD[4,2,2]"), but this does not work.
by ray.wurlod
Tue Mar 01, 2005 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Format
Replies: 3
Views: 904

I prefer

Code: Select all

Oconv(@DATE, "DYMD[4,2,2]" : @VM : "MCN")
The first piece is the date conversion, while an "MCN" conversion keeps only the numeric characters.
Read the on-line help about "MC" conversions in Oconv.
by ray.wurlod
Tue Mar 01, 2005 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Error
Replies: 10
Views: 2105

In a Transformer stage initialize a stage variable - let's call it svTotal - to 0. The derivation for the stage variable (which is executed as each row is processed through the Transformer stage) is of the form If InLink.Column[26,1] = 'c' Then svTotal + 1 Else svTotal This increments only if the va...
by ray.wurlod
Tue Mar 01, 2005 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preserve Partitioning
Replies: 2
Views: 1194

"Clear" means "reset", that is reset to job/project defaults.