Search found 53125 matches

by ray.wurlod
Mon Nov 13, 2006 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: generating jobs reports
Replies: 60
Views: 24753

Of course you can. Re-type the code as if it were your own work, but include an acknowedgment in the routine code that it is based on ideas obtained from here and in particular from Kim Duke (www.duke-consulting.com). That way it's not third-party, and highlights the foolishness of that policy.
by ray.wurlod
Mon Nov 13, 2006 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maintaining the project
Replies: 5
Views: 1368

When you upgrade to 7.5 the projects are automatically upgraded. Are you doing an -itag installation? In that case alone the above statement is not true, but will not affect your scripts, as the two server installations are separate. Otherwise they are on separate machines, and again the project nam...
by ray.wurlod
Mon Nov 13, 2006 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Sequence Compiled Error
Replies: 4
Views: 1625

Was this when you were compiling the job sequence, or a server job? Part of compiling a job sequence occurs on the client, and error codes in the 81xxx range relate the the DataStage RPC mechanism. Does this error occur reliably, or did it occur only once? If the former, check that you have write pe...
by ray.wurlod
Mon Nov 13, 2006 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write failed for record
Replies: 9
Views: 2575

I don't believe "from OLE DB to Seq.file" is pertinent; the problem is populating a hashed file. Therefore your job contains either a Hashed File stage or a UV stage with an input link. How large is your hashed file? (How much free space you have is irrelevant; a hashed file can not exceed 2GB witho...
by ray.wurlod
Mon Nov 13, 2006 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retaining a permanent value
Replies: 5
Views: 1760

My logic had assumed 1 for Pass and 0 for Fail. You sum them first (in an Aggregator), then rely on the rule that 0 is False and any non-zero value is True. With your logic you may need one or three Not() functions, depending on what you want to do with the result afterwards. In the syntax error, is...
by ray.wurlod
Sun Nov 12, 2006 9:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with PX job
Replies: 12
Views: 4200

There is a glitch in the DB2 Enterprise stage when the remote instance is on a different platform (mainframe or AS/400). That's probably the glitch to which your advisors referred. It should be OK to another UNIX machine.
by ray.wurlod
Sun Nov 12, 2006 9:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getColDesc failed
Replies: 7
Views: 2929

Search is your friend. With over 100 posts you should know that by now.
by ray.wurlod
Sun Nov 12, 2006 9:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid UsreID/Password when login DataStage Client
Replies: 9
Views: 5831

Invalid user id/password can also be diagnosed if the server licence has expired but the client licence has not. Just one more thing that you might like to check.
by ray.wurlod
Sun Nov 12, 2006 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retaining a permanent value
Replies: 5
Views: 1760

Treat them as Boolean values (1 or 0). You can then combine them with summing in an Aggregator stage then pass them through a final Transformer applying Not(Not(InLink.colname)) to each to produce a final value. If you want a literal "Pass" or "Fail" for each column apply an Oconv() function with "S...
by ray.wurlod
Sun Nov 12, 2006 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: license question
Replies: 10
Views: 3145

As far as I can ascertain, client licensing (total connections) is enforced in a very similar way to how it is done now. Server side licensing I'm not sure about. How about asking on IBM DeveloperWorks, which seems to be gaining some momentum now?
by ray.wurlod
Sun Nov 12, 2006 4:34 pm
Forum: General
Topic: function equivalent to decode and add_months in data stage
Replies: 4
Views: 8808

We are aware of what you want to do. We suggested search because, curiously, you are not the first to have this requirement. I'd be happy to do it for your for a fee, but the answer can be had for free with just a small amount of initiative. Indeed, I have just checked, and the function has been pos...
by ray.wurlod
Sun Nov 12, 2006 1:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Absence/presence of stages in the pallette
Replies: 5
Views: 1356

Right click in the Palette background area and choose Customize. This opens a window in which you can customize your palette (for the currently-open job type) to your heart's content.
by ray.wurlod
Sun Nov 12, 2006 1:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: license question
Replies: 10
Views: 3145

Version 8.0 licensing is totally different, now confirming to IBM licensing methods. No more auth codes. You get ALL the IBM Information Server components on a single DVD and use a GUI-based (Windows or X-Windows) installer. There is also a command-line installer. The installer reads an XML file tha...
by ray.wurlod
Sun Nov 12, 2006 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage schedule error
Replies: 2
Views: 2615

The Administrator client offers the ability to specify a user ID under which scheduled jobs will be run, and to test that user can schedule jobs, when the server platform is Windows.
by ray.wurlod
Sun Nov 12, 2006 1:00 pm
Forum: General
Topic: function equivalent to decode and add_months in data stage
Replies: 4
Views: 8808

In the Modify stage (parallel jobs) there are lookup_string_from_int16() and lookup_int16_from_string() functions, plus equivalents for int32 and ustring data types. There is no equivalent in server jobs; most would choose to pre-load a small hashed file or to initialize a stage variable with a sear...