Search found 53125 matches

by ray.wurlod
Tue Aug 19, 2008 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Union
Replies: 4
Views: 1099

Best, of course, if the two tables are in the same database, is to perform the UNION in the SQL you use to extract rows from that database.
by ray.wurlod
Tue Aug 19, 2008 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored procedure properties
Replies: 6
Views: 1978

OK you just have to systematic now. Trace every place that these parameters are being used ("connect identifier" is deliberately vague, as a security measure) to find out which one is wrong by the time the client (= DataStage job) attempts to connect to the Oracle client software or beyond.
by ray.wurlod
Tue Aug 19, 2008 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Union
Replies: 4
Views: 1099

Funnel stage is really UNION ALL. If what you want is UNION use a Funnel stage followed by a Remove Duplicates stage (which implies a sort in there somewhere).
by ray.wurlod
Mon Aug 18, 2008 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Set lock mode to wait in DB2
Replies: 2
Views: 1061

Setting lock mode to WAIT is exactly the same thing, in principle, as building the dependencies into your design.
by ray.wurlod
Mon Aug 18, 2008 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored procedure properties
Replies: 6
Views: 1978

Check that your Source parameter is being passed correctly (look in the "job starting" event in the job log).
by ray.wurlod
Mon Aug 18, 2008 11:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "mmap failed: Not enough space"
Replies: 14
Views: 7879

There's probably not enough space available at the time on whatever directory you have specified for scratch disk. Or, in the case of a Lookup stage, not enough space to load the reference data into memory.
Please post the entire (detailed) error message so we can get a better idea.
by ray.wurlod
Mon Aug 18, 2008 11:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while inserting data into DB2
Replies: 2
Views: 2884

This message is generated by DB2. Consult the Errors reference manual for DB2, or your DBA. Perhaps the executing user lacks appropriate privileges on the table, perhaps the tablespace is full. Decoding error code 7 will reveal all!
by ray.wurlod
Mon Aug 18, 2008 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe VSAM (Source) To Datastage To VSAM(Target)
Replies: 3
Views: 2572

COBOL programs to dump and receive text files and FTP to move them to and from your DataStage server.
by ray.wurlod
Mon Aug 18, 2008 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to Mainframe DB2 from PX
Replies: 4
Views: 1411

The DB2/API stage can communicate via DB2 Connect software to any DB2 on any platform.
by ray.wurlod
Mon Aug 18, 2008 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe IMS DB access from Parallel jobs
Replies: 1
Views: 942

DataStage Enterprise MVS edition has support for IMS structures.

I'm not aware of any easy way to do this with DataStage Enterprise edition.
by ray.wurlod
Mon Aug 18, 2008 5:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First & Last Day of Last Month
Replies: 5
Views: 19070

... or just apply a MONTH.FIRST Transform to it.
by ray.wurlod
Mon Aug 18, 2008 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trigger file
Replies: 2
Views: 1218

Welcome. :D

Use ExecSH as an after-job subroutine to create the trigger file (for example using echo > #TriggerFile# as the command). There is a check box "only execute after-job subroutine if job successful" - check that.
by ray.wurlod
Mon Aug 18, 2008 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First & Last Day of Last Month
Replies: 5
Views: 19070

The MONTH.FIRST Transform will give you the first day of the month as an internal date.

Subtract one from this to get the last day of the previous month.
by ray.wurlod
Mon Aug 18, 2008 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

Technical limits for the product are largely undocumented. You just have to bump into them and then be advised by support that the limit exists.
by ray.wurlod
Mon Aug 18, 2008 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to populate rows count present in database to file
Replies: 3
Views: 1014

This has been discussed before, as a Search would have revealed. Essentially you need to determine whether that condition obtains and react accordingly - perhaps a different job which handles to zero rows in database table scenario.