Before-job subroutine Error

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Looks like the dbisqlc program includes screen drivers. DataStage processes run in the background, and do not have terminal capabilities. This may explain why you got that error message. You need to find some form of the command (or a different command) for doing what you want to do.

Another possibility is that the screen routines referred to could not be found via the shared library search path used by your DataStage processes. Check the second event in the job log, where it shows settings of environment variables, and verify the setting of LD_LIBRARY_PATH, LIBPATH or SHLIB_PATH (the variable name varies with UNIX platform). If it's wrong, you need to set up the dsenv shell script with the appropriate environment variable settings for accessing Sybase IQ.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
daniel0623
Charter Member
Charter Member
Posts: 34
Joined: Tue May 31, 2005 8:17 pm
Location: ShangHai,China

Post by daniel0623 »

ray.wurlod wrote:Looks like the dbisqlc program includes screen drivers. DataStage processes run in the background, and do not have terminal capabilities. This may explain why you got that error message. You need to ...
Thanks,ray. Error occued because developer forgot to delete debug sentence which will print some information to screen.
Post Reply