Search found 53125 matches

by ray.wurlod
Tue Mar 06, 2007 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Duplicates
Replies: 4
Views: 1501

The most commonly used method, as far as I am aware, is to use a "fork join" - split the data stream into two and, on one of them, count each group. Downstream of that join the count back on to the original rows. You can use the count to determine the duplicates - the rows having the count greater t...
by ray.wurlod
Tue Mar 06, 2007 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 64BIT Hashed Files
Replies: 27
Views: 8641

The first two bytes of the magic number can be anything (hexadecimal), particularly if an -itag installation was done. The default up to current versions is, indeed, "acef".
by ray.wurlod
Tue Mar 06, 2007 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: encryption of client login credentials
Replies: 9
Views: 1949

Has anyone thought to switch on Server Side Tracing to see what there is to see?
:idea:
by ray.wurlod
Tue Mar 06, 2007 2:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to locate a job in the repository
Replies: 17
Views: 4343

There is a Search facility in Director. You can also disable the view of categories and sort by job name in Director status view.
by ray.wurlod
Tue Mar 06, 2007 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wrong julian date
Replies: 3
Views: 1029

Iconv("03307", "D2JY") should convert to internal format. Then use Oconv() to achieve any desired external format. For example:

Code: Select all

Oconv(Iconv("03307", "D2JY"), "D-YMD[4,2,2]")
by ray.wurlod
Tue Mar 06, 2007 1:23 pm
Forum: Enhancement Wish List
Topic: up the 99 project limit... and more
Replies: 27
Views: 11104

The problem is not solved, it is only delayed until you want to install your 1000th CPU.
by ray.wurlod
Tue Mar 06, 2007 1:21 pm
Forum: DSXchange Testimonials
Topic: Keep up the good work friends!
Replies: 8
Views: 18948

Any career in IT should be predicated upon good communication skills, which includes written communication. We frown, here, upon usage such as "u", "plz" and "waz" when there are correct equivalents such as "you", "please" and "was".
by ray.wurlod
Mon Mar 05, 2007 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting errors opening projects
Replies: 1
Views: 978

It was a +2 error code (not -2), and it came from the include file for operating system errors (ERRD.H from memory). Never encountered -9 from STATUS() before; it's not in the UniVerse manuals, so maybe it's something Glenn H sneaked into DataStage BASIC. Further research (maybe on DeveloperWorks) i...
by ray.wurlod
Mon Mar 05, 2007 6:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with execute_command activity
Replies: 32
Views: 10005

Check the log of the job sequence to see whether the Execute Command activity actually executed. What kind of trigger do you have on the Job activity?
by ray.wurlod
Mon Mar 05, 2007 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage v752s01 Import error (importing from command line)
Replies: 3
Views: 2856

If my memory serves, the mandatory argument (the DSX name) should be last on the command line. Try moving the /V switch to a position earlier in the command.
by ray.wurlod
Mon Mar 05, 2007 6:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning log capture
Replies: 14
Views: 3629

Algorithm design: Find current status ( DSGetJobInfo(hJob, DSJ.JOBSTATUS) ). If "Finished OK" ( DSJS.RUNOK ) then do the remainder. Find start of current run ( DSGetJobInfo(hJob,DSJ.JOBSTARTTIMESTAMP) ). Find newest "job finished" message prior to that timestamp ( EventNo = DSGetNewestLogId(hJob,......
by ray.wurlod
Mon Mar 05, 2007 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Decimal Function
Replies: 3
Views: 990

It's a server job, so there are no data types. All you have to do is to count the decimal placeholder characters. Or InLink.TheField Matches "1N0N" would do it. Or Index(InLink.TheField, ".", 1) also. I thought of five other possibilities in about one second, but will leave off for now. Essentially ...
by ray.wurlod
Mon Mar 05, 2007 6:26 pm
Forum:
Topic: Metastage scalability
Replies: 8
Views: 3421

No, if the question is "will MetaStage 7.5.2 work with the version 8.0 repository?", which I believe it was.
by ray.wurlod
Mon Mar 05, 2007 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot see jobs in Datastage Director using a Operator user
Replies: 13
Views: 5439

Anyway, there's nothing to stop you complying with their request to create an Operator role.

That it can't do anything is not your fault once you've explained the ramifications.
by ray.wurlod
Mon Mar 05, 2007 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot see jobs in Datastage Director using a Operator user
Replies: 13
Views: 5439

I can't see why the base name alone wouldn't work from a job sequence or from dsjob, but also have not tested it. Released jobs... shudder!!