Search found 53125 matches

by ray.wurlod
Wed Mar 28, 2012 9:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how config odbc connect greenplum on datastage?
Replies: 10
Views: 6043

I wonder whether the Greenplum ODBC driver is compatible with the Data Direct ODBC driver manager?
by ray.wurlod
Wed Mar 28, 2012 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process id (12345) appears to have hung
Replies: 12
Views: 4558

TMPDIR environment variable. This is available via DataStage Administrator client.
by ray.wurlod
Wed Mar 28, 2012 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Understanding SCORE
Replies: 3
Views: 2328

... which suggests that a node pool may be involved. Or that the Data Set was written previously using a different configuration file (with three nodes) and this job is running using a single node configuration file.
by ray.wurlod
Wed Mar 28, 2012 9:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data separated by space
Replies: 2
Views: 1238

Too complex. Field(Convert(svTab, " ", InLink.TheString), " ", 1, 1) would do it.
by ray.wurlod
Wed Mar 28, 2012 9:04 pm
Forum: General
Topic: Passing values from job parameter
Replies: 3
Views: 1060

I'm not really sure what you're asking. The traditional way to pass multiple values via a single parameter is to use a String parameter and pass a delimited string of those values. The better way may be to use multiple parameters.
by ray.wurlod
Wed Mar 28, 2012 9:00 pm
Forum: General
Topic: Escaping # in Execute Command definition
Replies: 4
Views: 2466

Possibly you could use grep -v ^\# as the first part of the pipeline, to eliminate lines beginning with "#".
by ray.wurlod
Wed Mar 28, 2012 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data separated by space
Replies: 2
Views: 1238

Field() function.

Convert tab to space.
by ray.wurlod
Wed Mar 28, 2012 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Range lookup error
Replies: 1
Views: 630

Your compiler is not set up properly, probably environment variables. There are other current threads on this issue.

Range lookups compile to transform operators, which is why the compiler is required.
by ray.wurlod
Wed Mar 28, 2012 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating a single Record
Replies: 3
Views: 1016

Divide SellingSource using Field() function and use each field in its own lookup against DID_DLR_ORG_DATA.
by ray.wurlod
Wed Mar 28, 2012 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preserve Partition
Replies: 2
Views: 1159

All possibilities are discussed in the manuals. Not all stage types support all values.
by ray.wurlod
Wed Mar 28, 2012 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage and its type
Replies: 3
Views: 875

Each stage type has its own chapter in the Parallel Job Developer's Guide. In version 8.5 and later an obvious difference is that the Transformer stage supports Loop and the BASIC Transformer stage doesn't. Another difference is the number of tabs in the stage properties dialog; in version 8.7 there...
by ray.wurlod
Wed Mar 28, 2012 3:34 pm
Forum: General
Topic: Join Key for DS_AUDIT
Replies: 3
Views: 1594

There's only a join availabe to DS_JOBS when CLASS = '2'. In that case there is a join between DS_JOBS.NAME and DS_AUDIT.INSTANCE (In later versions class '2' includes things other than jobs, but that does not invalidate the above statement.) That said, it appears that in version 8.7 that audit info...
by ray.wurlod
Wed Mar 28, 2012 3:26 pm
Forum: General
Topic: Project File system Location
Replies: 8
Views: 1932

Maybe and possibly.

It depends whether or not that I/O is related to DataStage projects or to something else on those file systems.
by ray.wurlod
Wed Mar 28, 2012 3:25 pm
Forum: General
Topic: How to find first occurance of numeric value in a string
Replies: 13
Views: 4858

You can read about DataStage BASIC match patterns in, curiously, the DataStage BASIC manual.
:shock:
by ray.wurlod
Wed Mar 28, 2012 3:17 pm
Forum: General
Topic: DStageWrapper81
Replies: 5
Views: 1955

OK, you ran out of table space. That would certainly do it. I prefer to over-allocate table space initially, and set it for automatic growth.

That does not mean that you can miss monitoring table space. It's something you should do with ALL table spaces. DBA 101.