Search found 53125 matches

by ray.wurlod
Fri Jan 07, 2005 8:53 pm
Forum: Enhancement Wish List
Topic: Progress of Job Sequence
Replies: 7
Views: 3127

Progress of Job Sequence

With server jobs, you can "display performance statistics" in the job design and watch what's happening - provided you don't mind the impact on throughput that your interference causes! Some form of visual indication in a Job Sequence of progress would be really nice to have. For example, highlighti...
by ray.wurlod
Fri Jan 07, 2005 7:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string search
Replies: 5
Views: 1892

Something like this ought to do it. FUNCTION FindCode(SearchString, CodesList) * Initialize return variable. Ans = "" * Convert CodesList to dynamic array for efficient search. CodesArray = Convert("*", @FM, CodesList) * Search until either SearchString is found o...
by ray.wurlod
Fri Jan 07, 2005 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 6.0 String to Decimal
Replies: 12
Views: 5155

Matthieu, are you talking about parallel jobs? It's my understanding that - unless you're using the "BASIC Transformer" stage - implicit data type conversions do not occur; this is a behaviour found in server jobs only.
by ray.wurlod
Fri Jan 07, 2005 7:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: string search
Replies: 5
Views: 1892

What does the routine need to return? Only the first match, or all matches, on the first two characters? How are you specifying the search string (for example "CD")? Is it an argument to the routine? How are you specifying the codes string? Is it an argument to the routine? The solution will probabl...
by ray.wurlod
Fri Jan 07, 2005 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 6.0 String to Decimal
Replies: 12
Views: 5155

What did you expect to get? Examine your expression from the inside outwards. You have "1234.567" in a VarChar(8) as source. The first thing you do is to remove the ".". You would now have "1234567". The next thing you try to do is divide "1234567" (a character string) by 1000 (an integer). Is this ...
by ray.wurlod
Fri Jan 07, 2005 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TeraData Fastload Connection error
Replies: 5
Views: 1832

Where is fastload.exe?

Is that folder mentioned in the search path environment variable (PATH)?
by ray.wurlod
Fri Jan 07, 2005 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing to database tables using routines
Replies: 14
Views: 3479

Follow the link in the third post on this thread. 8)
by ray.wurlod
Fri Jan 07, 2005 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Errors
Replies: 3
Views: 1265

DataStage logs a warning whenever there is unexpected output, on the basis that, if there is unexpected output, you ought to be alerted to take a look at it. Obviously a PRINT statement will generate output that DataStage does not expect. The algorithm is not rocket science. If the output file from ...
by ray.wurlod
Fri Jan 07, 2005 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup file sets
Replies: 1
Views: 1036

Welcome aboard! :D Refer to Chapter 20 of the Parallel Job Developer's Guide for full information on using the Lookup stage. You're on the right track, you identify the lookup keys (and whether case sensitivity is required and whether you want to allow multiple return rows) in the Input link propert...
by ray.wurlod
Fri Jan 07, 2005 3:25 pm
Forum: IBM QualityStage
Topic: IS THE COMPARISON POSSIBLE
Replies: 4
Views: 3052

PilotBaha beat me to it. Yes, it's a simple as creating a redefinition of the input file, so that there's another name that refers to the first nine characters of CARDHID. You can then perform any kind of match between this and the nine character column in File B. PS You can still learn COBOL, but i...
by ray.wurlod
Fri Jan 07, 2005 3:17 pm
Forum: Site/Forum
Topic: How would you like to see the DSXchange cover its costs?
Replies: 13
Views: 12843

I would be very wary of anything (such as funding from Ascential) that would constrain the independence of DSX. Sure, sell them advertising space, but never control over content. Sponsored links, like those at Google, might raise some funds too, maybe from headhunters and the like. The donations box...
by ray.wurlod
Thu Jan 06, 2005 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing to database tables using routines
Replies: 14
Views: 3479

The vendor is MainSoft (formerly known as Data Direct - I do not have current pricing information, but can inform you that it's per CPU in your machine, and expect tens of thousands of US dollars. Search the Forum for examples of code using BCI functions - there are quite a few that have been posted...
by ray.wurlod
Thu Jan 06, 2005 7:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Start Loop End Loop
Replies: 21
Views: 9706

"Job not in a runnable state" means that the job needs to be compiled or reset - either it has never been compiled, or it's most recent run was stopped or aborted.
Did you compile your job sequence?
by ray.wurlod
Thu Jan 06, 2005 7:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Activating NLS
Replies: 3
Views: 1629

If the DataStage metadata specifies CHAR and your SQL specifies CAST(column AS CHAR) then you will not get a metadata mismatch. The metadata are compared against the result set on a SELECT, not on the base tables.
by ray.wurlod
Thu Jan 06, 2005 7:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pulling the most recent file out of a directory
Replies: 10
Views: 5074

You may have extra line terminators in ScreenOutput. These will have been translated into field marks (@FM). Try:

Code: Select all

Filename = Trim(Convert(@FM,"",ScreenOutput))