Search found 4605 matches
- Fri Sep 03, 2004 9:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job authentication
- Replies: 2
- Views: 961
That user cannot do it but you could run the job as a different user. This user needs to have access to this drive. That is not the way I would do it though. Writing to shared drives are always having issues. Write to a local drive and share this with the users which need access to it. I would not s...
- Thu Sep 02, 2004 3:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Isolating DataStage Projects
- Replies: 3
- Views: 1052
- Thu Sep 02, 2004 5:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequencer run
- Replies: 13
- Views: 3794
- Wed Sep 01, 2004 5:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Execute TCL command from command line
- Replies: 2
- Views: 838
- Wed Sep 01, 2004 5:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Execute TCL command from command line
- Replies: 2
- Views: 838
Add either a uv or uvsh in front of a quoted TCL command. You need $DSHOME/bin in your path or $DSHOME/bin/uvsh.
Code: Select all
uvsh "CREATE.FILE MyHash DYNAMIC"
- Tue Aug 31, 2004 8:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing a function to query table and return a value
- Replies: 6
- Views: 1973
- Tue Aug 31, 2004 1:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing a function to query table and return a value
- Replies: 6
- Views: 1973
- Tue Aug 31, 2004 1:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing a function to query table and return a value
- Replies: 6
- Views: 1973
- Tue Aug 31, 2004 9:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting/Creating Job Statistics
- Replies: 3
- Views: 926
Oh by the way a separate process is available in DwNav which will download the same information into an Access database to merge with the data in Reporting Assistant. This runs on version 5 and above. You can download DwNav from my web site as well. It is not available on ADN. DwNav includes row his...
- Tue Aug 31, 2004 8:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting/Creating Job Statistics
- Replies: 3
- Views: 926
You need EtlStats.zip. It is posted on my web site or ADN. It is version 7 of DataStage. If you have an older version then it is real simple. It runs dsjob -report project job XML. I am not sure this command will work with older versions of Ds. Anyway it will push the results into Oracle. All the cr...
- Tue Aug 31, 2004 7:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File Usage Analysis
- Replies: 13
- Views: 2828
- Tue Aug 31, 2004 6:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File Usage Analysis
- Replies: 13
- Views: 2828
I get it. At the UNIX level you can look at the access time. I am not sure that is adequate. If you know all the jobs which read or write to this hash file then Ray did a post which shows the last time these jobs ran. As long as jobs are not compiled then you can also get the last run times from Job...
- Tue Aug 31, 2004 5:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File Usage Analysis
- Replies: 13
- Views: 2828
Ray posted a query to find all jobs on this topic http://www.dsxchange.com/viewtopic.php?t=87959 . You can also use MetaStage or Reporting Assistant. Do a search. If you cannot find the other topics then we can help.
- Mon Aug 30, 2004 12:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pass values between jobs
- Replies: 1
- Views: 714
Hash file is the best solution. You can stored as many values as you like. The overhead is close to nothing. Maintenence is also simple. You can retrieve it by a key of your choice. You can have multiple record types in the same hash file. There are prewritten routines in the Utility part of the SDK...
- Sat Aug 28, 2004 9:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ETL date range between join
- Replies: 3
- Views: 1383
Not bad but how do you build the multivalue hash file within a job without writing the whole thing in BASIC. Ken has a trick to load it comma delimited. You need the dates sorted descending for the locate to be fast. The next problem is still have not joined these 2 together. I am not sure what you ...