Search found 53125 matches

by ray.wurlod
Mon Apr 09, 2007 2:22 pm
Forum: General
Topic: Parameterizing output of Job
Replies: 9
Views: 2872

jreddy wrote:Ray, how would be set the value returned from Oracle job/table to the userStatus variable
In a job that selects the value from Oracle use an interlude to DSSetUserStatus() function as the derivation in a Transformer stage. Search the forum for sample code.
by ray.wurlod
Mon Apr 09, 2007 2:20 pm
Forum: IBM QualityStage
Topic: Unduplicate Match
Replies: 7
Views: 2902

The message suggest that your job design has, or should have, a Switch stage upstream of the Match stage. Without knowing your design, I find it difficult to be more precise than that. What does your support provider have to offer?
by ray.wurlod
Mon Apr 09, 2007 2:18 pm
Forum: IBM QualityStage
Topic: error Standardize
Replies: 7
Views: 2543

This error usually occurs when there is at least one row in your data file that contains more columns than are specified in the file dictionary for that file. That is the first thing that you must check. The easy way is to determine the number of lines in the file ( wc -l ) and divide by the line le...
by ray.wurlod
Mon Apr 09, 2007 2:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer Issue
Replies: 3
Views: 1007

Sequencers only have unconditional triggers.

If you are having this problem in a job sequence, chances are that you require the DataStage patch for Windows XP sp2, which can be had for asking from your support provider.
by ray.wurlod
Mon Apr 09, 2007 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling C program from DataStage Job
Replies: 16
Views: 6469

Create a parallel routine, which is an interlude in the Repository explaining where the C function is to be found and the argument types it requires. If the C program includes a main() function, you will need to call it as if it is a command, for example from an Execute Command activity in a job seq...
by ray.wurlod
Mon Apr 09, 2007 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need infromation regarding some Fatal errors
Replies: 9
Views: 7725

What have you listed here? It looks like the outout from DSGetLogSummary(). We really need detail of log events to be able to diagnose the problems more thoroughly. You may also need to disable combination, at least in the ODBC/DRS stage, to isolate the stage in which the errors are occurring.
by ray.wurlod
Mon Apr 09, 2007 2:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read From Dataset is slow
Replies: 6
Views: 1472

It's what electrical engineers know as "back emf" (which I learned in my BE degree in the 1960s).
by ray.wurlod
Sun Apr 08, 2007 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Operatiing system
Replies: 3
Views: 1106

You can also get a version of DataStage that runs on "UNIX Support Services" (USS), which is a partition of a mainframe pretending to be running AIX.
by ray.wurlod
Sun Apr 08, 2007 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key generator
Replies: 7
Views: 3940

You don't need anything intermediate. You can select the value directly into the reference link into a Lookup stage. Make sure that partitioning is Entire. Then add this (constant) value to the zero-based sequence generated in the Surrogate Key Generator or Column Generator stage, where it should ha...
by ray.wurlod
Sun Apr 08, 2007 4:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOPeratorController,0:APT_Decimal
Replies: 4
Views: 1911

"All zeroes" is not a legitimate decimal number. Read about it in the manual. There is a setting (environment variable?) that allows DataStage to tolerate it.
by ray.wurlod
Sat Apr 07, 2007 4:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet Performance
Replies: 2
Views: 1170

"node1" and "node2" are each named twice in the configuration file. That's almost certainly an "issue". In the job log, what is reported as the configuration file used? Are you using the same configuration file when reading the Data Set that you used when writing the Data Set? Are there any repartit...
by ray.wurlod
Sat Apr 07, 2007 4:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: schema
Replies: 14
Views: 3631

Your data do not match your metadata, or the phpBB software has removed your spaces. I assume that you mean your data look like RAY ...... FITZGERALD HIGGINS .. MICHAEL .. ORLOW .... JANICE ... H What have you specified as: record delimiter field delimiter record length? Try record length = fixed
by ray.wurlod
Sat Apr 07, 2007 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameters are quoted by DS when passed in when scheduled
Replies: 10
Views: 2930

Have you tried revisiting Set Defaults in the Director's Job menu and clicking on "Set to Default" or "All to Default"?
by ray.wurlod
Sat Apr 07, 2007 4:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migraton ISSUE
Replies: 10
Views: 2308

I can't check at the moment. My experience is that $PROJDEF works in 7.5.1A for string parameters, but I wonder is this also the case for encrypted parameters?
by ray.wurlod
Sat Apr 07, 2007 4:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capture Universe SQL executed on the client
Replies: 6
Views: 1649

The helper subroutines (DSR_xxxx) are just that - subroutines. They are not functions. Arg2, in this particular case, is an input/output argument. A1 = 5 A2 = 2 A3 = "RateFileCreate" Call DSR_AUDIT(A1, A2, A3) Ans = A2 The problem with using undocumented subroutines is that you don...