Regarding Datastage Installation

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
naveen_1985in
Participant
Posts: 18
Joined: Wed Dec 09, 2009 2:16 am

Regarding Datastage Installation

Post by naveen_1985in »

Hi All,

In the morning today I have installed DS8.5 in my desktop(Windows).I created a job as RowGen---> Transformer---->Peek.
To Check whether parallel jobs are working fine.
The following error were encountered during the compilation of the job.
{ Name of the Job:Test2}

Find the error message below:

Output from transformer compilation follows:

##I IIS-DSEE-TFCN-00001 10:39:03(000) <main_program>
IBM WebSphere DataStage Enterprise Edition 8.5.0.5746
Copyright (c) 2001, 2005-2008 IBM Corporation. All rights reserved



##I IIS-DSEE-TFCN-00006 10:39:03(001) <main_program> conductor uname: -s=Windows_NT; -r=1; -v=6; -n=NAVEEN-PC; -m=Pentium
##I IIS-DSEE-TOSH-00002 10:39:03(002) <main_program> orchgeneral: loaded
##I IIS-DSEE-TOSH-00002 10:39:03(003) <main_program> orchsort: loaded
##I IIS-DSEE-TOSH-00002 10:39:03(004) <main_program> orchstats: loaded
##W IIS-DSEE-TOSH-00049 10:39:03(007) <main_program> Parameter specified but not used in flow: DSPXWorkingDir
##E IIS-DSEE-TBLD-00076 10:39:05(000) <main_program> Error when checking composite operator: Subprocess command failed with exit status 256.
##E IIS-DSEE-TFSR-00019 10:39:05(001) <main_program> Could not check all operators because of previous error(s)
##W IIS-DSEE-TFTM-00012 10:39:05(002) <transform> Error when checking composite operator: The number of reject datasets "0" is less than the number of input datasets "1".
##I IIS-DSEE-TBLD-00079 10:39:05(003) <transform> Error when checking composite operator: cxx -O -IC:/IBM/InformationServer/Server/PXEngine/include -W/TP -W/EHa -DAPT_USE_ANSI_IOSTREAMS -c -W/Zc:wchar_t- C:/IBM/InformationServer/Server/Projects/dstage1/RT_BP3.O/V0S3_Test2_Transformer_3.C -o C:/IBM/InformationServer/Server/Projects/dstage1/RT_BP3.O/V0S3_Test2_Transformer_3.tmp.o.
##I IIS-DSEE-TBLD-00000 10:39:05(004) <main_program> Error when checking composite operator: Output from subprocess: Compiler "cl" not found.

##E IIS-DSEE-TCOS-00029 10:39:05(005) <main_program> Creation of a step finished with status = FAILED. (Test2.Transformer_3)

*** Internal Generated Transformer Code follows:
0001: //
0002: // Generated file to implement the V0S3_Test2_Transformer_3 transform operator.
0003: //
0004:
0005: // define our input/output link names
0006: inputname 0 DSLink2;
0007: outputname 0 DSLink5;
0008:
0009: initialize {
0010: // define our control variables
0011: int8 RowRejected0;
0012: int8 NullSetVar0;
0013:
0014: }
0015:
0016: mainloop {
0017:
0018: // initialise the rejected row variable
0019: RowRejected0 = 1;
0020:
0021: // evaluate columns (no constraints) for link: DSLink5
0022: writerecord 0;
0023: RowRejected0 = 0;
0024: }
0025:
0026: finish {
0027: }
0028:
*** End of Internal Generated Transformer Code

Does anyone had the same problem ??????

Questions:
1.Do we need to change any compiler setting in 8.5 after the installation of datastage8.5 ?
stuartjvnorton
Participant
Posts: 527
Joined: Thu Apr 19, 2007 1:25 am
Location: Melbourne

Post by stuartjvnorton »

You need to update the appropriate APT variables to be able to find the compiler and linker, and to also find the headers and libraries.

Look in the Planning Installation and Configuration guide for details.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

And, if you believe you have a supported C++ compiler installed, have you set the four compiler-related environment variables correctly?
  • APT_COMPILER

    APT_COMPILEOPT

    APT_LINKER

    APT_LINKEROPT
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply