Posts

Showing posts with the label Code

Hide Password Entry in UNIX script:

We can use 'stty' to hide the password entry in UNIX command prompt, which is like entering password when you login to the UNIX. stty: 'stty' sets options for your terminal Ex : stty erase \^h --- set the backspace as erase key stty sane stty

How to use ISTOOL for EXPORT IMPORT in DataStage

Location of command: UNIX: /opt/IBM/InformationServer/Clients/istools/cli Windows: IBM\InformationServer\Clients\istools\cli

How to install Linux / UNIX *.tar.gz tarball files

tar.gz also known as tarball, an archive format for electronic data and software. Most Linux tarball contains a source code for software. If you are new to Linux I recommend using apt-get, rpm and yum command to install all binary packages. Tarballs are a group of files in one file. Tarball files have the extension .tar.gz, .tgz or .tar.bz2. Most open source software use tarballs to distribute programs/source codes.

InfoSphere DataStage List of Error Codes

API error codes in numerical order Code Error Token Description 0 DSJE_NOERROR No  InfoSphere DataStage  API error has occurred . -1 DSJE_BADHANDLE Invalid  JobHandle . -2 DSJE_BADSTATE Job is not in the right state (compiled, not running). -3 DSJE_BADPARAM ParamName  is not a parameter name in the job. -4 DSJE_BADVALUE Invalid  MaxNumber  value. -5 DSJE_BADTYPE Information or event type was unrecognized. -6 DSJE_WRONGJOB Job for this  JobHandle  was not started from a call to  DSRunJob  by the current process. -7 DSJE_BADSTAGE StageName  does not refer to a known stage in the job. -8 DSJE_NOTINSTAGE Internal engine error. -9 DSJE_BADLINK LinkName  does not refer to a known link for the stage in question. -10 DSJE_JOBLOCKED The job is locked by another process. -11 DSJE_JOBDELETED The job has been deleted. -12 DSJE_BADNAME Invalid project name. -13 DSJE_BADTIME Invalid  StartTime  or  EndTime ...