Search found 53125 matches

by ray.wurlod
Thu Apr 30, 2009 12:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to check the number format
Replies: 2
Views: 1174

Index(InLink.TheString, ".", 1) will return 0 if there is no "." and a positive number if there is.
(InLink.TheString Matches "1N0N" : @VM : "1N0N'.'0N") will test for unsigned numeric formats.
by ray.wurlod
Wed Apr 29, 2009 10:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while using external source in windows..
Replies: 5
Views: 2043

It uses your currently logged drive. This is typically the one on which DataStage engine is installed.
by ray.wurlod
Wed Apr 29, 2009 9:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff b/w unique and stable sort
Replies: 9
Views: 3931

That's only if unique AND stable sort are selected.
by ray.wurlod
Wed Apr 29, 2009 8:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting text to First Letter Capitalisation
Replies: 19
Views: 16850

That's not the same as "MCT" conversion, which would convert "paddy o'brien" to "Paddy O'Brien". The suggested "solutions" would yield "Paddy o'brien".
by ray.wurlod
Wed Apr 29, 2009 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: system cached hash files for realtime EDW solution
Replies: 1
Views: 1195

They are not supported in parallel jobs because the hashing algorithms are buried deep within the DataStage server engine, which is not necessarily accessible from every node on which a parallel job may be executing. System cached won't make any difference if only one job is accessing the hashed fil...
by ray.wurlod
Wed Apr 29, 2009 5:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while using external source in windows..
Replies: 5
Views: 2043

MKS Toolkit expects UNIX pathnames. UNIX pathnames don't have drive letters. Also forward slash must be used as the pathname delimiter.

Code: Select all

cat "/Documents and Settings/Administrator/sam.xml" | tr -d '\n\'
by ray.wurlod
Wed Apr 29, 2009 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff b/w unique and stable sort
Replies: 9
Views: 3931

The Remove Duplicates stage allows you to specify whether to keep the first or last record in each group. A unique sort does not.
by ray.wurlod
Wed Apr 29, 2009 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting text to First Letter Capitalisation
Replies: 19
Views: 16850

I don't know of one. You can, of course, write your own. If you do, why not publish it here so others can follow where you lead?
by ray.wurlod
Wed Apr 29, 2009 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: enabling runtime load limit in administrator
Replies: 1
Views: 947

This option is NEVER enabled for parallel jobs.

The only ways you can limit rows are to design it in to your job, or to compile in trace mode.
by ray.wurlod
Wed Apr 29, 2009 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fileset Utilities
Replies: 3
Views: 1507

Orphaned data files out there on your resource disk. (From memory the data files' names include the name of the control file. This is certainly true for Data Sets.)
by ray.wurlod
Wed Apr 29, 2009 5:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error compiling transformer in PX Job
Replies: 9
Views: 2902

The Transformer stage properties page has a Build tab where you can provide replacement compiler options to override those given for the job.
by ray.wurlod
Wed Apr 29, 2009 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error during web services Installation
Replies: 2
Views: 1088

Moderator: please move to SOA Editions forum
by ray.wurlod
Wed Apr 29, 2009 5:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error during web services Installation
Replies: 2
Views: 1088

Check that your DataStage license is valid and not expired.
by ray.wurlod
Wed Apr 29, 2009 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job design-question
Replies: 31
Views: 4631

That's why the webinar "Files in DataStage Job Sequences" was produced.

Go to http://www.dsxchange.net/webinar_training.html for more information.
by ray.wurlod
Wed Apr 29, 2009 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job unstop problem ---v8.1 serverjob
Replies: 1
Views: 821

Welcome aboard. Open the job in Monitor (Director client, select job, choose New Monitor from Tools menu) and determine whether the stages have finished. Does the job have an after-job subroutine? Can you access Cleanup Resources from Job menu in Director? If so, can you find the process(es) associa...