Page 1 of 1
ds_seq open() error
Posted: Fri Dec 09, 2005 3:38 am
by sengs
Hi,
I am getting an error when i run a job to populate a sequential file.
The error is
ds_seq open()_error in 'open()' permission denied.
Help me to overcome this.
Thanks,
sengs
Posted: Fri Dec 09, 2005 3:47 am
by ArndW
"permission denied" is a UNIX error message, the user you are running your DataStage job as does not have sufficient privileges to open the sequential for (probably for writing).
If you do a unix "ls -al {seqfilename}" you will see what the access rights to that file are. Access rights are changed using the chmod command; but most likely the umask settings for the user that created the file are set incorrectly for what you want to do.
Posted: Fri Dec 09, 2005 4:56 am
by sengs
Thanks Arnd....
I think your point is correct.I will check out in unix for the permissions.
Thanks...