Search found 53125 matches
- 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
- 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...
- 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...
- 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...
- 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...
- 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. ...
- 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
- 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...
- 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
- 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
- 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
- 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
- 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
- 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...
- 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
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 {} \;