Search found 53125 matches

by ray.wurlod
Wed Feb 27, 2008 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage job auditing
Replies: 4
Views: 1565

Any way that works. I would do it in a job control routine, because that's what I'm familiar and comfortable with. But it could be done completely graphically - though you would need a job sequence.

You could also investigate EtlStats from Kim Duke's website
by ray.wurlod
Wed Feb 27, 2008 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dev Environment
Replies: 4
Views: 1088

No. But you will need DB2 client software installed (and configured) co-resident with DataStage.

I do not intend to type out the Installation and Configuration Guide here.
by ray.wurlod
Wed Feb 27, 2008 4:51 pm
Forum: General
Topic: Problem with execute command activity in sequence job.
Replies: 9
Views: 4750

WHO advised and, more importantly, for what reason? After-job subroutines are a very useful part of the product. I put an annotation on the canvas to alert future developers to the use of before/after subroutines, so that they (the developers) are not caught unawares when the subroutine does whateve...
by ray.wurlod
Wed Feb 27, 2008 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to extract VSAM files on Mainframe
Replies: 1
Views: 870

Two choices. One is to purchase Enterprise MVS edition which will write COBOL programs you can run on the mainframe to extract the data (and can then FTP the text file to your DataStage server). The other is to have a person write the same COBOL extract program and create a text file. You can then s...
by ray.wurlod
Wed Feb 27, 2008 4:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: Could not load drsoci.dll
Replies: 10
Views: 5414

Why are you asking Chulett if U can reply? U hasn't posted here for some months.
:roll:
by ray.wurlod
Wed Feb 27, 2008 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find Port number for DataStage server in UNIX
Replies: 5
Views: 8039

Exactly the same.
The file is %WINNT_ROOT%\System32\drivers\etc\services
(but you probably don't have a grep command; just inspect the file).
by ray.wurlod
Wed Feb 27, 2008 4:43 pm
Forum: General
Topic: Sparse lookup producing ORA-01480 error
Replies: 1
Views: 968

Try specifying a size for the VarChar, even if it's obscenely large. The "trailing null" about which Oracle is complaining is the string-terminator character 0x00, which is how strings are terminated in C languages. An unbounded VarChar may well be missing this character, and Oracle just doesn't lik...
by ray.wurlod
Wed Feb 27, 2008 4:41 pm
Forum: General
Topic: rfc12345_00001.trc files
Replies: 2
Views: 1012

Are they being created (owned) by DataStage processes? DataStage inherently does not use any RFC mechanism; however in certain circumstances - such as extracting from SAP R/3 - then RFC may be the mechanism involved. Take a look in one or two of them and see what you can discern.
by ray.wurlod
Wed Feb 27, 2008 4:39 pm
Forum: Enhancement Wish List
Topic: Merge a server Pivot and Hashed stages...
Replies: 1
Views: 1470

You can always include a sorting clause on the Selection tab when reading from a Hashed File stage. Syntax is that of the RetrieVe query language. BY field (for ascending order) BY.DSND field (for descending order) You need one clause for each sorted field. For example: BY REGION BY COUNTY BY.DSND S...
by ray.wurlod
Wed Feb 27, 2008 4:37 pm
Forum: Site/Forum
Topic: Power
Replies: 8
Views: 4490

It's still highly variable, but always in posting.php
by ray.wurlod
Wed Feb 27, 2008 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in evironment variables
Replies: 2
Views: 1023

PWD is an operating system environment variable.

Search the forum for more information - you are not the first to post this issue.
by ray.wurlod
Wed Feb 27, 2008 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Status:Aborted-Showing only warning
Replies: 5
Views: 1326

How many entries (total) are in the log for the most recent run? If the number is not too large, please print them to file and post here. Then we will see whether any of them might have caused the status to be aborted.
by ray.wurlod
Wed Feb 27, 2008 6:10 am
Forum: General
Topic: Problem with execute command activity in sequence job.
Replies: 9
Views: 4750

What is it that makes such restrictions "best" practices? Who said?
by ray.wurlod
Wed Feb 27, 2008 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: integers
Replies: 2
Views: 1287

You do NOT want to remove the "-" character.

All of those values are perfectly valid (signed) integers.

Removing the "-" characters would be a loss of information.

If you must, use an Abs() function.
by ray.wurlod
Wed Feb 27, 2008 6:06 am
Forum: General
Topic: split the names
Replies: 6
Views: 1267

Yes, but that stage would have to be a Modify or Transformer stage. If the latter, then you may as well take the outputs from it directly.