Search found 53125 matches

by ray.wurlod
Thu Jul 25, 2013 4:32 pm
Forum:
Topic: Error creating shared table definition
Replies: 4
Views: 3242

Depending on your version, Common Metadata Administrator or Common Metadata Importer.
by ray.wurlod
Thu Jul 25, 2013 2:25 am
Forum: General
Topic: How to remove alphanumeric characters using transformer?
Replies: 4
Views: 1436

Then use the first of the solutions that I offered.
by ray.wurlod
Thu Jul 25, 2013 12:25 am
Forum: General
Topic: How to remove alphanumeric characters using transformer?
Replies: 4
Views: 1436

Let's be clear about what you mean by "alphanumeric". In the industry this term is commonly understood to include alphabetic characters (letters) and numeric characters (digits). I suspect that's not what you mean in this case. A generic solution to preserve alphanumeric characters (as con...
by ray.wurlod
Wed Jul 24, 2013 10:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage internal/implicit conversion of string to number
Replies: 7
Views: 9174

Well, no, prepending a non-numeric to each string will force a string comparison to occur, as per your example.
But I think the Compare() function is better self-documenting.
by ray.wurlod
Wed Jul 24, 2013 8:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implementing date logic
Replies: 7
Views: 1650

In parallel Transformer stage, use MonthDayFromDate() to determine the day number for your range check. Use DateFromDaysSince() and that value to calculate the date of the first day of the current month or the last day of the previous month.
by ray.wurlod
Wed Jul 24, 2013 8:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implementing date logic
Replies: 7
Views: 1650

Transforms are available in BASIC Transformer stage.
by ray.wurlod
Wed Jul 24, 2013 8:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Use of ICONV/OCONV Functions in the Parallel Jobs.
Replies: 7
Views: 7698

You need to use BASIC Transformer stage if you want to use Iconv() or Oconv() functions.

They are simply not available in the parallel Transformer stage, and never will be.
by ray.wurlod
Wed Jul 24, 2013 8:19 pm
Forum: General
Topic: Clean Orphan and defunct processes
Replies: 4
Views: 2804

From version 9.1 DataStage no longer uses MKS. It uses native Windows system calls.
by ray.wurlod
Wed Jul 24, 2013 4:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage internal/implicit conversion of string to number
Replies: 7
Views: 9174

There is no global solution. DataStage server jobs inherently do not have data types. Context determines how comparisons are done (numeric or string, right- or left-justified). If both operands are numeric, a numeric comparison is performed. There IS a string comparison function (Compare( string1,st...
by ray.wurlod
Wed Jul 24, 2013 4:33 pm
Forum: General
Topic: Error calling subroutine: DSR_EXECJOB (Action=5)
Replies: 9
Views: 7618

There is a limit of 2GiB on the size of the RT_LOGnnn hashed files. Any attempt to exceed that will corrupt the hashed file (generating a backward link (BLINK) error). If you believe that you need more than 2GiB of log events, you can use RESIZE to change that particular RT_LOGnnn to 64-bit addressi...
by ray.wurlod
Wed Jul 24, 2013 6:09 am
Forum:
Topic: Error creating shared table definition
Replies: 4
Views: 3242

What error are you getting?

Or are we supposed to guess?
by ray.wurlod
Tue Jul 23, 2013 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterizing file name in Unstructured Data
Replies: 3
Views: 4317

Check your documentation to verify whether or not File Pattern is supported, and consider the implications if it is. Every single one of the worksheets would necessarily have to have the same organization. Do yours fit this requirement? File Name should be able to be a job parameter (if not, "t...
by ray.wurlod
Tue Jul 23, 2013 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi value used in hash file
Replies: 12
Views: 4728

All UV tables are hashed files.

Not all hashed files are UV tables. However every hashed file with a consistent record structure can be read as if it were a UV table.

VOC and DS_JOBOBJECTS are examples of hashed files that do not have consistent record structure.