Search found 4605 matches
- Thu Sep 09, 2004 5:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data Type Conversion - Please help
- Replies: 5
- Views: 1387
- Thu Sep 09, 2004 5:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: create uv account
- Replies: 4
- Views: 1518
If you are in the directory where you want to setup an account then just type uv. The $DSHOME/bin should be a part of your PATH variable. This will prompt you do you want to create an account. An account consists of 4 files VOC, D_VOC, VOCLIB and D_VOCLIB. At the TCL prompt type CLEAN.ACCOUNT. This ...
- Wed Sep 08, 2004 6:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Renaming a file with a date field value from the header.
- Replies: 8
- Views: 2053
- Wed Sep 08, 2004 6:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting Job Statistics
- Replies: 6
- Views: 4027
- Wed Sep 08, 2004 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UMASK
- Replies: 3
- Views: 949
- Wed Sep 08, 2004 3:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UMASK
- Replies: 3
- Views: 949
UMASK
I noticed that when we ran jobs from the scheduler that the umask was 022. We checked and umask 002 was set in the ds.rc file. If you ran the job with the at command then it was set to 002. Only when you ran the job in crontab was it 022. My fix was to create a UV.LOGIN in the VOC of the UV account....
- Wed Sep 08, 2004 2:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP Stage: Error while trying open connection
- Replies: 1
- Views: 959
- Wed Sep 08, 2004 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance for Fact Jobs
- Replies: 9
- Views: 2819
- Wed Sep 08, 2004 8:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: can i use CA Unicentre to schedule jobs in datastage
- Replies: 1
- Views: 445
- Wed Sep 08, 2004 6:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Renaming a file with a date field value from the header.
- Replies: 8
- Views: 2053
Ray Almost all UNIX systems the set command by itself works like env. It will display all the shell variables and their values. The set command the way I use it will parse a shell variable ignoring multiple spaces and load $1, $2 and so on. I think this will work on AIX. I am used to use it. I prefe...
- Wed Sep 08, 2004 5:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data Type Conversion - Please help
- Replies: 5
- Views: 1387
DataStage does lots of data type conversion automatically. Leave the metadata on the source and the targets alone. Just import them from the database of your choice. If you route data from one column to the target normally it will do whatever conversion is necessary behind the scenes to get the data...
- Wed Sep 08, 2004 5:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Documentation Help
- Replies: 8
- Views: 1689
The dsjob.exe command I think is on the CD that you install the DataStage client from. I am not sure if you can get it without installing a DataStage Windows server. If you do not have a dsjob then all it does is create a list of all the jobs. You can do this on your UNIX server. The dsjob command c...
- Wed Sep 08, 2004 5:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Renaming a file with a date field value from the header.
- Replies: 8
- Views: 2053
Ray I have used this technique for years. I do not remember if it works on AIX. If not then use a cut command. The way I used this set command will parse a shell variable value into $1, $2, $3 and so on. If you know a better way then explain it. This is just a quick answer to give them an idea. Ther...
- Tue Sep 07, 2004 4:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Renaming a file with a date field value from the header.
- Replies: 8
- Views: 2053
You can do this in the shell script. What line is the date on? With tail and head you can extract that line. You can parse the line with the set command to get the second or third word if that is the date.
Code: Select all
Line=4
DATELINE=`head -$Line $FILENAME | tail -1`
set - $DATELINE
MYDATE=$3
- Tue Sep 07, 2004 11:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Documentation Help
- Replies: 8
- Views: 1689
It should create the folder using KgdMakeDir routine. Sometimes it does not work. Manually create a KimD directory below your project. Below that create a Jobs directory and a Routines directory. If KgdMakeDir is not working then you may need to create 20040907 directory. ProjectDir/KimD/Jobs/200409...