Search found 53125 matches
- Mon Feb 21, 2005 11:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Performance
- Replies: 8
- Views: 2870
It's conceptually easy to design - you have to keep track of how far you have successfully processed. You also have to design so as to be able to process beginning from a given point. Quite a few techniques exist. It's easiest if your overall design includes staging areas after extraction and before...
- Mon Feb 21, 2005 11:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HASH FILE MANAGEMENT
- Replies: 11
- Views: 3288
For hashed files, you probably need to add physical storage overhead, since this affects the number of rows that you can actually store in a group and effective transfer rate (since entire groups are transferred). Storage overheads for hashed files are: (a) three pointers (each 32-bits or 64-bits) (...
- Mon Feb 21, 2005 7:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Importing jobs
- Replies: 9
- Views: 2797
- Mon Feb 21, 2005 3:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can SSELECT command be used in the "Hashed File" S
- Replies: 19
- Views: 4800
You can do this with a Hashed File stage. The sort phrase is augmented with the FMT field qualifier. You don't need EVAL if using a Hashed File stage.
Code: Select all
BY @ID FMT "10R"- Mon Feb 21, 2005 3:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: check special characters
- Replies: 4
- Views: 2163
- Mon Feb 21, 2005 3:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS-Director : Error getting job status.
- Replies: 3
- Views: 1085
- Mon Feb 21, 2005 2:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pandora's Box - Using DS NLS
- Replies: 8
- Views: 1660
- Mon Feb 21, 2005 2:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Peoplesoft EPM and Datastage Connectivity
- Replies: 3
- Views: 1570
- Mon Feb 21, 2005 2:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Configuration help and ideas
- Replies: 4
- Views: 1551
There's no such thing as "DataStage groups" - I suspect you're referring to DataStage roles. You attach DataStage roles to operating system groups in the Administrator client. Definitely do-able. Create one operating system group for each project, and another (say dstage) for all DataStage users. Ma...
- Mon Feb 21, 2005 2:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reject rows
- Replies: 11
- Views: 3446
- Mon Feb 21, 2005 2:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to extract data from XML file
- Replies: 6
- Views: 2792
Hey anybody is there??????????? If you want rapid service, buy priority 7x24 support (and learn the true cost of "urgent"). That no-one had replied in 40 minutes should not be a cause for concern; this is an all volunteer site, contributors log in and post when they can. I'm guessing as to where yo...
- Mon Feb 21, 2005 2:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Incorrect incrementing of sequences
- Replies: 5
- Views: 1113
- Sat Feb 19, 2005 10:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Why cannot a running job be stopped
- Replies: 4
- Views: 954
The job probably isn't really running. What the Director status view shows you is the most recently recorded status of the job, which is read from the job's RT_STATUSnnn table. If the job was killed without the opportunity to update RT_STATUSnnn you will still be reading a status of "running". That'...
- Sat Feb 19, 2005 10:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error in viewing hash data
- Replies: 8
- Views: 1847
- Fri Feb 18, 2005 3:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Capturing Event Detail Message
- Replies: 16
- Views: 5387
There is a function DSGetLogEntry for capturing the detail of a logged event. This requires the Event ID (a sequential number) of the event in question. You can determine the Event ID, for example by calling the function DSGetNewestLogId (which can filter on "warning" type). You can find out more in...