Search found 4992 matches
- Sun Nov 20, 2005 8:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clearing Logs
- Replies: 6
- Views: 2727
Reimporting all jobs can be excessive for so simple of a problem. The log settings are a single row in each and every log file for a job. Change a couple of attributes (columns) in that row and viola! Purge settings are updated. It's a shame that release 7.5 still doesn't have a feature in DS Manage...
- Sun Nov 20, 2005 5:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: increase performance
- Replies: 7
- Views: 2222
If the data is sorted in ascending order, and you're starting with 10M rows and will only end up with 7M when done, your 30% of repeated rows are almost negligle. Just process all of the rows, writing to a hash file using the unique identifier (but not occurence number) as the key. The last row writ...
- Sun Nov 20, 2005 5:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: When saving a routine in Manager code is lost
- Replies: 4
- Views: 1137
I've seen this exact behavior when the total number of characters in a function/routine exceeded a certain amount. No error messages, nothing, just missing text. You could type in a lot of text, but upon saving and re-opening all of it was gone. I ended up breaking the routine up with some external ...
- Sat Nov 19, 2005 8:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Communication link failure
- Replies: 7
- Views: 5688
The job ran for 2 1/2 hours trying to pull out 13 million rows. Doesn't this seem to be an excessive task? This means for 2 1/2 hours you have an open cursor on 13 million source rows holding all of that data in rollback. This is bad. You need to NOT have that data held that long, I don't care what ...
- Fri Nov 18, 2005 11:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Remove header and footer(first and last line)
- Replies: 13
- Views: 5817
This is a point of style. Relying on the stage to behave poorly (IMO), meaning to silently toss data, is poor style. You should affirmatively handle all data. If you don't want a row, build the logic to purposely remove the remove. If yo do want specific rows, build the logic to purposely include on...
- Fri Nov 18, 2005 11:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to connect to DataStage for test automation
- Replies: 11
- Views: 5741
- Fri Nov 18, 2005 12:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine
- Replies: 4
- Views: 1245
- Fri Nov 18, 2005 10:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abort routine running too long
- Replies: 5
- Views: 890
Rather than counters you should use modular programing techniques. Nested subroutines and functions are essential parts of good programming practices. You could periodically call a function that checks a directory for the existence of a file. That file could be a STOP, PAUSE, ABORT, STATUS, etc set ...
- Fri Nov 18, 2005 9:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Remove header and footer(first and last line)
- Replies: 13
- Views: 5817
- Thu Nov 17, 2005 12:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Ora Oci 8 not loading to the table
- Replies: 6
- Views: 1691
- Thu Nov 17, 2005 12:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: A phantom warning
- Replies: 6
- Views: 2199
- Thu Nov 17, 2005 11:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: documentation of engine command
- Replies: 4
- Views: 1205
- Thu Nov 17, 2005 11:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Every thing Lost from Project
- Replies: 3
- Views: 1184
Not to sound cruel, but if you allowed 2 weeks of work to happen without periodically exporting and backing up your work, then it's really your fault you're in this situation. As a best practice, you should: 1. Automate nightly exports of all development projects 2. Automate nightly file system back...
- Wed Nov 16, 2005 7:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Wildcards in output sequential file...
- Replies: 12
- Views: 5663
Creating files with embedded reserved characters is usually a no-no. These would be chars such as:
Code: Select all
/\&' "!`;,>|- Wed Nov 16, 2005 7:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How does DS use /tmp?
- Replies: 10
- Views: 3883