Search found 4605 matches
- Thu Jun 30, 2005 3:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problems using multiple DSAttachJob commands - job hangs
- Replies: 3
- Views: 1666
- Thu Jun 30, 2005 8:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Replace function
- Replies: 12
- Views: 3171
- Wed Jun 29, 2005 6:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing values to Job Parameters
- Replies: 9
- Views: 1938
The second option is basically the same as the first except you need to run a job to extract parameter values from a table into a hash file before you run any jobs. In each of these you need to get a list of parameter names from the job and then set them if they are in your sequential file or hash f...
- Wed Jun 29, 2005 3:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing values to Job Parameters
- Replies: 9
- Views: 1938
You need to pipe to
cut -d"=" -f2
cut -d"=" -f2
Code: Select all
PARAM_VALUE=`grep "^$PARAM =" param.ini | cut -d"=" -f2`
- Wed Jun 29, 2005 1:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing values to Job Parameters
- Replies: 9
- Views: 1938
Most people use a sequential file because it is easy to edit. They use syntax like: PARAM_NAME = VALUE They process this with a batch job using openseq. I have seen Oracle and Access also used as sources. These were dumped into hash files using a job. Hash file key was the parameter name. So it was ...
- Wed Jun 29, 2005 12:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: order a job for each filename inside a directory
- Replies: 8
- Views: 2164
- Wed Jun 29, 2005 9:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Updatating a sequential file
- Replies: 5
- Views: 1528
- Wed Jun 29, 2005 9:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Total no.of jobs in a Project
- Replies: 6
- Views: 1719
- Tue Jun 28, 2005 2:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Admin commands
- Replies: 3
- Views: 3688
- Tue Jun 28, 2005 2:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS_log file
- Replies: 10
- Views: 4212
TO learn what these fields are you need to run the SQL and compare it to the Director. If you cannot figure out the rest of the columns then you do not understand Director. You are going to have to do some of the work here to educate yourself. We will help on complex things or unusual things like wa...
- Tue Jun 28, 2005 8:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: type 1 and type 2 dimensions
- Replies: 11
- Views: 4076
- Mon Jun 27, 2005 10:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: type 1 and type 2 dimensions
- Replies: 11
- Views: 4076
- Mon Jun 27, 2005 8:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: type 1 and type 2 dimensions
- Replies: 11
- Views: 4076
- Mon Jun 27, 2005 4:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Attaining job required parameters from a Unix shell script
- Replies: 5
- Views: 1582
- Mon Jun 27, 2005 4:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Server Job Script Automation
- Replies: 4
- Views: 947
We had a similar problem. We wrote a job to copy one table. We exported it. We also imported all the tables. Ray posted code along time ago to read DS_METADATA. I used this code to change the DSX to a different table. I hear that ProfileStage can do this. I have never seen it work though. It is a pr...