Search found 53125 matches

by ray.wurlod
Mon Sep 01, 2008 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Use Userdefine Environment Variables into the Dsjob c
Replies: 6
Views: 2883

What does "not working" mean in this context? What error message is generated? Why are you setting $LegacyDBUserID for each of the three parameters? That's almost certain not to be correct. Have you proven that each of these environment variables is set? For example echo $LegacyDBUserID Have you tri...
by ray.wurlod
Mon Sep 01, 2008 2:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find the Memory usage
Replies: 4
Views: 1371

That is correct. DataStage jobs run on the server. Since you posted that your server was Windows-based, I mentioned those monitoring tools only.
by ray.wurlod
Mon Sep 01, 2008 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To Extarct first string
Replies: 5
Views: 1464

Please mark thread as Resolved, using the green button at the top.
by ray.wurlod
Mon Sep 01, 2008 1:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find the Memory usage
Replies: 4
Views: 1371

Windows Task Manager (in which you can select what you want to see on the Processes tab - DataStage jobs and active stages run uvsh.exe). Windows Performance Monitor. There are "hooks" available from DataStage server jobs into the Windows performance monitor, but these are only five counters of thin...
by ray.wurlod
Mon Sep 01, 2008 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to create player error
Replies: 1
Views: 2762

Talk to your UNIX system administrator. "File table overflow" suggests that either the file table or the inode table has become full.

You can't do much while this condition is true.
by ray.wurlod
Sun Aug 31, 2008 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup on reference data and transformations.
Replies: 4
Views: 1322

You basically do the same thing in a parallel job. Set the Lookup Failed rule in your Lookup stage to Continue then, in the downstream Transformer stage, test whether the key looked up is null (assuming that it can't be null otherwise). The other tests you would build into constraint or output colum...
by ray.wurlod
Sun Aug 31, 2008 2:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simulating cross join
Replies: 3
Views: 1438

No. A hashed file accessed via a Hashed File stage can only return that row that matches its primary key value. And even with a UniVerse stage you'd have to use some pretty hairy user-defined SQL, for example WHERE CAST(? AS VARCHAR) LIKE '%' in the SELECT statement, to return every row for each inp...
by ray.wurlod
Sat Aug 30, 2008 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsexport.exe
Replies: 3
Views: 1783

IF the default answer is Y (which I'm unable to ascertain for dsexport at the moment), then you can use this trick to deliver an infinite number of "Enter" presses. Redirect stdin from NUL (which is /dev/null if you're on UNIX).

Code: Select all

dsexport options < .\NUL
by ray.wurlod
Sat Aug 30, 2008 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to see the data from DB2 Enterprise Stage ..
Replies: 3
Views: 1590

I'm tending more towards unsupported data type. What is the data type of DIM_ACC_PRICE_PLAN_WLESS_3 ?
by ray.wurlod
Sat Aug 30, 2008 4:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to see the data from DB2 Enterprise Stage ..
Replies: 3
Views: 1590

I think you need to involve your DBA on this one, to enable tracing to find out which parameter might be causing such a warning to be thrown. There may be some assistance in the errors manual for DB2, if you lookup SQL0304N (or error code -304, which is the same thing).
by ray.wurlod
Sat Aug 30, 2008 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata enterprise stage
Replies: 3
Views: 1080

Firstload? Do you mean Fastload?
by ray.wurlod
Sat Aug 30, 2008 4:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reset job from command prompt
Replies: 4
Views: 1539

Disagree. The -jobstatus option is a wait option. It's not that.
by ray.wurlod
Sat Aug 30, 2008 4:20 am
Forum: Site/Forum
Topic: Run Time Error for PX Routine
Replies: 2
Views: 4390

That's good. The moderator will probably do the needful here.
by ray.wurlod
Fri Aug 29, 2008 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage
Replies: 10
Views: 2072

Commit after complete load is achieved by setting rows/transaction to 0. Restart has to be designed - you have to keep records about how many rows were successfully sent to Oracle, or select these from the Oracle table before (as part of) the restart run. Facilitate this by keeping track of which jo...