Search found 53125 matches

by ray.wurlod
Wed Sep 13, 2006 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can we capture the runtime details?
Replies: 3
Views: 1200

Be patient. DataStage is capturing these details automatically. Once the job completes use a routine, the dsjob command or even another DataStage job to extract the information either from the job log or using the DataStage API.
by ray.wurlod
Wed Sep 13, 2006 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Use datasets?
Replies: 7
Views: 2728

Does the file exist? How was is created? For this to work, it must - must - have been created with a Data Set stage; it is a common mistake to believe that one can create a Data Set with a Sequential File stage.
by ray.wurlod
Wed Sep 13, 2006 1:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure during execution of operator logic
Replies: 1
Views: 3769

Check with your UNIX administrator to determine whether the file unit table is becoming full.
by ray.wurlod
Wed Sep 13, 2006 1:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture the warnings
Replies: 4
Views: 1361

Depending on what stage type you are using, and how you are sending the rows to the table (upsert vs write), there may be an additional column called sqlcode on the reject link.

However, capture of all warnings is probably easiest done by post-processing the job log.
by ray.wurlod
Wed Sep 13, 2006 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 7.5 problem
Replies: 10
Views: 2115

Xpert, you really are confused. The original poster did specify Windows, but it's 7.5x2 (not 7.5.2) that supports parallel job compilation and execution on Windows. And please don't use SMS-style abbreviations here; English is not everyone's first language, so good English is difficult enough. dstag...
by ray.wurlod
Wed Sep 13, 2006 12:55 am
Forum: General
Topic: UV Account
Replies: 1
Views: 2106

Welcome aboard. :D This is highly unusual. What symptoms lead you to this conclusion? Possibly the best solution is to restore from a recent system backup, but don't do that unless DataStage is shut down. However, don't rush in - your diagnosis may not be correct. Answer the question and we may be a...
by ray.wurlod
Wed Sep 13, 2006 12:50 am
Forum: Enhancement Wish List
Topic: Show the true value for environment variable
Replies: 5
Views: 2651

There you go! I don't use $PROJDEF or $ENV in development until the very very end. But I do switch it before testing, so there's one more thing with which to annoy the testers: "but that's how it will be in production!".
by ray.wurlod
Tue Sep 12, 2006 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer between Dataset and Multiload
Replies: 2
Views: 634

No advantage whatsoever. A Copy stage would be much less impact as a placeholder, and also give you the ability to suck out a few rows (for audit/sampling) to a second output link. Indeed, if it's a straight through copy, the Copy stage is likely to be "optimized out" when the job is compiled.
by ray.wurlod
Tue Sep 12, 2006 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access Rights
Replies: 6
Views: 1544

Not bad - use Code tags to get a grid. The DataStage roles do not confer any rights at all. There is no Administrator role; the DataStage administrator is the user dsadm or the superuser on UNIX, or a member of the Administrators group on Windows. The other three roles are gates. For example, if you...
by ray.wurlod
Tue Sep 12, 2006 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Log getting filled
Replies: 9
Views: 4395

Get your DBA to purge or enlarge the log.
by ray.wurlod
Tue Sep 12, 2006 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merging two files with different metadata
Replies: 14
Views: 8019

Learn not to rush, grasshopper. :D
by ray.wurlod
Tue Sep 12, 2006 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compilation error
Replies: 2
Views: 947

Look at the comments in the generated source code (RT_BP2245/JOB.1923857383.DT.1413534682.TRANS1) to find which link is referred to by Pin%%V0S5P2.
by ray.wurlod
Tue Sep 12, 2006 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter Pass
Replies: 3
Views: 983

There is no circumstance under which the routine result ($ReturnCode) will be overridden by the master sequence, unless you explicitly code for that to happen in the expression that delivers the value to the controlled job's parameter.
by ray.wurlod
Tue Sep 12, 2006 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert into Dynamic RDBMS stage
Replies: 2
Views: 1042

It would be much easier to solve if you could find some mechanism for deriving this rogue column somewhere in the main stream. There is no way to accomplish that you ask, except for a second job that updates the target via the Dynamic RDBMS stage.
by ray.wurlod
Tue Sep 12, 2006 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with accessing sequential file in a shared container
Replies: 6
Views: 2505

A Hashed File is simply another mechanism for implementing a database table. So imagine that you're inserting new rows into a database table. Create the hashed file with a UV stage but edit the DDL so that you get auto-generated key values. CREATE TABLE ErrorTable ( SurrKey INTEGER NOT NULL DEFA...