Search found 53125 matches

by ray.wurlod
Tue Oct 19, 2004 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to count rows extracted from MS Sql table
Replies: 1
Views: 706

This is a duplicate post.
by ray.wurlod
Tue Oct 19, 2004 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to count rows extracted from MS Sql table
Replies: 10
Views: 3485

DataStage keeps a count of the rows sent to the file, which you can subsequently interrogate using DSGetLinkInfo() or DSGetLogEntry() functions. Or you can use DSExecute to invoke the UNIX command wc -l filename If you prefer to use a job sequence, you can use a Routine Activity for the former and a...
by ray.wurlod
Tue Oct 19, 2004 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 4|S|V|
Replies: 3
Views: 732

This means that you've specified a small data type (for example TinyInt or SmallInt or perhaps even Integer), or too small a precision for a Decimal or Numeric data type, and that a value too large to be read into such a data type has been encountered in the data being processed. The "solution" is t...
by ray.wurlod
Tue Oct 19, 2004 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: download table definations from mainframe
Replies: 1
Views: 542

Have "them" dump the table definitions as COBOL file definition (FD) files or, if from DB2, as DCLGen files. In DataStage Manager, use Import > Table Definitions > COBOL File Definitions or Import > Table Definitions > DCL File Definitions For importing COBOL FDs you must correctly specify the colum...
by ray.wurlod
Tue Oct 19, 2004 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Backup Hash files
Replies: 9
Views: 2294

The usual precautions about backing up databases apply. Make sure that they're not in use before starting the backup. You can detect which dynamic hashed files are in use via the command analyze.shm -d (the executable is in the bin directory in the DataStage Engine directory). smat (shared memory an...
by ray.wurlod
Tue Oct 19, 2004 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 64 bit HASH files
Replies: 3
Views: 1224

The only 64-bit things that get created are the internal pointers within the hashed file. Therefore, it is possible to create them even on a 32-bit operating system. They break when they hit 2GB, not because of anything in DataStage, but because the operating system can't handle files of that size. ...
by ray.wurlod
Tue Oct 19, 2004 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Stage: Insert on 2 links; Transaction Size
Replies: 6
Views: 1049

That behaviour depends on the transaction grouping properties of the ODBC stage, set on the Transaction tab on the Inputs link.
by ray.wurlod
Tue Oct 19, 2004 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number data type in Oracle
Replies: 2
Views: 2085

How are you determining that it's an exponential representation? This could simply be an artifact of the data browser. Or does it still occur when you send the data to a text file? Performing some arithmetic on it (adding zero is good) will guarantee that it's a number, but it should be a number int...
by ray.wurlod
Tue Oct 19, 2004 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage
Replies: 5
Views: 2185

Probably not. As a general rule, transformations are performed in the Transformer stage (or in the BASIC Transformer stage).

Please describe exactly what you are trying to accomplish and where, and the exact error message generated and when (during compilation or at run time).
by ray.wurlod
Tue Oct 19, 2004 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I set Datastage deadlock daemon for DS PX.
Replies: 3
Views: 2654

No. The PX engine does not set the kind of lock managed by the DataStage deadlock daemon.
As far as a utility for cleaning up defunct PX processes is concerned I do not know, someone else will need to answer that. I am not aware of one.
by ray.wurlod
Tue Oct 19, 2004 1:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using lookups without specifying lookup keys
Replies: 5
Views: 1998

You could even constraint on the row number being equal to 1. Do this on the Selection tab.
by ray.wurlod
Tue Oct 19, 2004 1:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DECIMAL TO DECIMAL CONVERSION REDUCTION IN SIZE
Replies: 3
Views: 2076

Try performing simple arithmetic (adding zero is good) in a Transformer stage. DataStage should look after the metadata transition across the Transformer stage.
Beware, however, that any source number with more than eighteen significant digits will fail to load into the target.
by ray.wurlod
Tue Oct 19, 2004 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem in integer type sequential file stage
Replies: 2
Views: 1359

Set the Display width in the columns grid to the actual width of the column. (You ought to have done this during the import of Sequential File metadata.)
Make sure, too, that the file format is marked as fixed-width rather than delimited.
by ray.wurlod
Mon Oct 18, 2004 8:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Classical Education
Replies: 0
Views: 393

Classical Education

My current sig has attracted a flood of private messages. Never thought there'd be so much interest in the Latin. Ah, well, here's the "full Wurlod". IVI is the first person perfect (past tense, completed action) of EO (I go); therefore IVI means "I have gone". ILLUC means "there", so ILLUC IVI mean...
by ray.wurlod
Mon Oct 18, 2004 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Needs housekeeping on &PH&
Replies: 3
Views: 1460

You should periodically purge old entries from the &PH& folder.

The easiest way is a shell script run maybe once per week from cron. Use a command something like

Code: Select all

find \&PH\& -ctime 7 -exec rm {} \;