Search found 53125 matches
- 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...
- Fri Jan 07, 2005 7:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: string search
- Replies: 5
- Views: 1892
- 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
- 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...
- 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 ...
- Fri Jan 07, 2005 3:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TeraData Fastload Connection error
- Replies: 5
- Views: 1832
- 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
- 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 ...
- 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...
- 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...
- 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...
- 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...
- Thu Jan 06, 2005 7:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Start Loop End Loop
- Replies: 21
- Views: 9706
- Thu Jan 06, 2005 7:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Activating NLS
- Replies: 3
- Views: 1629
- 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))