Search found 53125 matches

by ray.wurlod
Sat Oct 27, 2007 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implied and Explicit decimal data type
Replies: 3
Views: 3151

Server jobs support implied decimal.
by ray.wurlod
Sat Oct 27, 2007 10:44 pm
Forum: Site/Forum
Topic: new Forum Event and Conferences
Replies: 5
Views: 3817

That was the original intent of the User Group Central forum. It was never used.
by ray.wurlod
Sat Oct 27, 2007 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shift spaces from right to left
Replies: 3
Views: 1058

Stage variable svTrimmedString (type VarChar(8)) derived as

Code: Select all

Trim(InLink.TheString)

Output column derivation

Code: Select all

Left("        ",8-Len(svTrimmedString)) : svTrimmedString
by ray.wurlod
Sat Oct 27, 2007 5:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal error - Bad number of subobjects
Replies: 5
Views: 2063

No, but your support provider can. And it should be free.
by ray.wurlod
Sat Oct 27, 2007 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shift spaces from right to left
Replies: 3
Views: 1058

Set up a stage variable (type VarChar(8)) to contain the trimmed string.
Construct the output string with sufficient leading spaces (1-Len(svTrimmedString)) then the trimmed string.
by ray.wurlod
Sat Oct 27, 2007 3:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal error - Bad number of subobjects
Replies: 5
Views: 2063

Is your client Windows XP sp2? If so, have you installed the xpsp2 patch for DataStage?
by ray.wurlod
Fri Oct 26, 2007 9:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Broken Connection - Job Locked
Replies: 3
Views: 2399

Use the DS.TOOLS menu or the Cleanup Resources facility in Director. If you're not the Administrator, then get the real Administrator to do it - it's an administrative task. The real administrator might also like to try manual execution of dsdlockd -p command.
by ray.wurlod
Fri Oct 26, 2007 9:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: anti pivot
Replies: 3
Views: 2590

Search for "vertical pivot".

The Pivot stage in version 8.1 (early 2008) will support both horizontal and vertical pivoting, according to the DataStage roadmap presentation at IoD 2007.
by ray.wurlod
Fri Oct 26, 2007 9:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling spaces in Packed Decimal fields
Replies: 8
Views: 3207

I don't understand how spaces are even possible in packed decimal representation!
by ray.wurlod
Fri Oct 26, 2007 9:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: final delimiter for header record.
Replies: 3
Views: 1623

Not easily. You could echo the header to the file in a before-job subroutine and then set "header row" to False in the stage, which would then need to Append to the file.
by ray.wurlod
Fri Oct 26, 2007 9:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallelism- DataStage Processing Nodes
Replies: 4
Views: 4725

You monitor your jobs, and determine what percentage of resources is required for each. Note that you assumption "one process per job" is way off - it's more like one process per stage plus one process per node plus one. Based on the percentages you can figure out how many nodes is appropriate. It w...
by ray.wurlod
Fri Oct 26, 2007 8:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Error - Array size change results in supression of it
Replies: 13
Views: 3155

I meant uvodbc.config. That's why I said uvodbc.config.
:roll:
by ray.wurlod
Fri Oct 26, 2007 8:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal error [39202]
Replies: 2
Views: 1341

Even though you can not connect using DataStage clients, you can still connect with telnet, and you may be able to connect with DataStage Administrator client. Try each of these to determine whether your disk is full.
by ray.wurlod
Fri Oct 26, 2007 8:44 pm
Forum: General
Topic: How to store Hash file in my server
Replies: 6
Views: 1712

Create the directory.

Specify this directory's pathname when nominating the directory in a Hashed File stage.

Use of a job parameter for the hashed files' directory pathname is strongly recommended.
by ray.wurlod
Fri Oct 26, 2007 2:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Overriding warning limit options at Job level from Sequencer
Replies: 7
Views: 2132

I know of no function called SetWarningLimit().
Like job parameter values, job limits can only be set before the request to run the job is submitted.