Search found 53125 matches
- Fri Aug 12, 2005 12:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Updat after Inserting
- Replies: 6
- Views: 1300
- Fri Aug 12, 2005 12:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Note: Sequencer 'Sequencer_8' was entered, but never exited
- Replies: 8
- Views: 12190
- Fri Aug 12, 2005 12:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: I-DESCRIPTOR
- Replies: 4
- Views: 1016
None of that will work until you are granted Write permission to the file dictionary of the hashed file. Contact your administrator. BTW, "USING ENTER.DICT" is redundant, since this REVISE template is invoked automatically when the keyword DICT precedes the file name. What are you trying to accompli...
- Fri Aug 12, 2005 12:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: jobsequencer
- Replies: 2
- Views: 1055
A Batch - created in Director - generates simple "one job after another" job control code. It has a name beginning "Batch::" but is otherwise identical to a job sequence that performs the same one job after another task. A job sequence - created in Designer - generates more complex job control code....
- Fri Aug 12, 2005 12:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Alternate to IF-statement
- Replies: 7
- Views: 1777
- Fri Aug 12, 2005 12:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to lookup and assign a value by round-robin?
- Replies: 4
- Views: 1638
- Fri Aug 12, 2005 12:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Best Practices for ETL without intermediate files
- Replies: 2
- Views: 965
Best practice is to keep the intermediate files as staging areas. That way you don't need your source database to be available once you've finished phase 1, and you don't need your target database to be available until you're ready to begin phase 4. Phase 2, which you omitted, is any job presupposed...
- Fri Aug 12, 2005 12:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To run all the jobs in a project from command prompt
- Replies: 5
- Views: 1324
- Fri Aug 12, 2005 12:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid date
- Replies: 1
- Views: 816
- Thu Aug 11, 2005 11:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: PX Routines
- Replies: 4
- Views: 1538
I agree 100% with Vincent on this one. Remember the adage about performance; measurement should have minimal impact on the object being measured. DataStage preserves the link row counts, so there's no good reason to be interrupting its real processing to enquire while the job is running. Do it after...
- Thu Aug 11, 2005 11:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: EE On Linux
- Replies: 3
- Views: 1087
- Thu Aug 11, 2005 11:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: oracle stage
- Replies: 6
- Views: 1150
DataStage is quite happy using Oracle OCI stage to feed reference inputs. I conclude, therefore, that at least one property in yours does not have a correct value. Most likely this is one or more of the connectivity properties. Please verify that these are all correct, in particular that the connect...
- Thu Aug 11, 2005 11:32 pm
- Forum: Data Integration
- Topic: etl/data mapping
- Replies: 3
- Views: 5544
Lots of grey areas and overlaps - one of the dangers of applying labels. Validation is ensuring that values are valid; this might include data type and range checking, might include "exists on file" checking too. Cleaning is applying algorithms to data to ensure that they comply with business rules,...
- Thu Aug 11, 2005 1:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To run all the jobs in a project from command prompt
- Replies: 5
- Views: 1324
Of course there is. Just create a shell script. Since you have MKS Toolkit (which installs with DS 7.5) you can use UNIX shell script. Something like
Not sure why you'd want to, though...
Code: Select all
for jobname in `dsjob -ljobs $projectname`
do
dsjob -run $projectname $jobname
doneNot sure why you'd want to, though...
- Thu Aug 11, 2005 12:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to lookup and assign a value by round-robin?
- Replies: 4
- Views: 1638
It you create a delimited list of the ao_code values in a stage variable, it's very easy. Declare two stage variables svAoCodes and svAoIndex. Initialize the svAoCodes stage variable to a delimited list of ao_code values; use @FM as the delimiter as the easiest mechanism. ao_code1 : @FM : ao_code2 :...