Search found 4605 matches

by kduke
Thu Jan 20, 2005 5:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wirting a basic routine to run sql
Replies: 4
Views: 1359

The easiest way is to run a shell script which runs sqlplus or whatever.
by kduke
Thu Jan 20, 2005 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PWD Environment Variable warning
Replies: 12
Views: 4405

It does not matter if dsenv is a Korn shell or a Bourne shell. PWD is dynamically set in ksh. A DataStage job is not a Korn shell. It may execute a shell but it's current directory is the project directory. So you could fake it out. I doubt if any Korn shell will let you set PWD. If you need this va...
by kduke
Thu Jan 20, 2005 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupt Indexes
Replies: 10
Views: 5124

This still should not happen on a regular basis. If people are in the Designer and have a job pulled up and walk away from their PC then tell them not to. Always leave no jobs up in Designer when you walk away from your PC. This is easy to do. If you develop good work habits then these issues go away.
by kduke
Thu Jan 20, 2005 12:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file limit
Replies: 2
Views: 912

If you are talking about size limit then it is based on several things. In UNIX it could be 2GB unless you use the 64 bit option. It could also be the ulimit. It could be the filesystem size. The OS makes this decision most of the time. Different versions of UNIX treat this differently. There are lo...
by kduke
Thu Jan 20, 2005 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PWD Environment Variable warning
Replies: 12
Views: 4405

PWD is a Korn shell concept. It is not available when a DataStage client logs in or a job runs as a phantom.
by kduke
Tue Jan 18, 2005 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error:File System is Full, Abort to Log Routine
Replies: 9
Views: 4024

I really do not like to have multiple links one for OK and another for warnings. By the way we use Ds7.1 and abort goes through the exception handler. I think the way this works it is cleaner to use aborts.
by kduke
Tue Jan 18, 2005 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error:File System is Full, Abort to Log Routine
Replies: 9
Views: 4024

Thanks Ray. That is my point. An abort is not the same as kill -9. The process dies gracefully.
by kduke
Tue Jan 18, 2005 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSjobReport error
Replies: 6
Views: 3502

You need to fix your PATH or the dsjob command should be so full path. The dsjob command is in DSEngine/bin. I fixed my version by making the dsjob parameter default to ../../DSEngine/bin/dsjob -report.
by kduke
Tue Jan 18, 2005 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Error
Replies: 2
Views: 1128

For some reason that project is messed up. I would call ASCL support.
by kduke
Tue Jan 18, 2005 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error:File System is Full, Abort to Log Routine
Replies: 9
Views: 4024

DSStopJob has been around for awhile besides what is the difference between DSStopJob and aborting a job.
by kduke
Tue Jan 18, 2005 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error:File System is Full, Abort to Log Routine
Replies: 9
Views: 4024

We do it all the time. Sequences can trap aborts easier than warnings. Aborts will go through the exception handler and warnings do not.
by kduke
Tue Jan 18, 2005 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: initializing parameter, inside a transformer stage
Replies: 5
Views: 822

That is correct.
by kduke
Tue Jan 18, 2005 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupt Indexes
Replies: 10
Views: 5124

That is why you are corrupting indexes. Teach your developers to logout of DataStage when they leave their desk.
by kduke
Tue Jan 18, 2005 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: initializing parameter, inside a transformer stage
Replies: 5
Views: 822

You can make this a user defined query and use the parameter in a where clause like select from where UPDATE_TS > to_date('#StartDate#') You can calculate this date in the job before this. You will need to store this date in a hash file or sequential file and read it back to feed it into this job. Y...
by kduke
Tue Jan 18, 2005 8:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage Error.....
Replies: 10
Views: 1425

I would make sure all the files are owned by the same group. Do a chown. Make sure your umask is set in dsenv and in the uv.rc in the start up script.