error while compiling transformer stage

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
rajesh.ravi
Participant
Posts: 8
Joined: Thu Dec 20, 2007 1:04 am

error while compiling transformer stage

Post by rajesh.ravi »

Output from transformer compilation follows:

##I TFCN 000001 17:27:06(000) <main_program>
Ascential DataStage(tm) Enterprise Edition 7.5
Copyright (c) 2004, 1997-2004 Ascential Software Corporation.
All Rights Reserved


##I TOSH 000002 17:27:06(001) <main_program> orchgeneral: loaded
##I TOSH 000002 17:27:06(002) <main_program> orchsort: loaded
##I TOSH 000002 17:27:06(003) <main_program> orchstats: loaded
##E TBLD 000000 17:27:09(000) <main_program> Error when checking composite operator: Subprocess command failed with exit status 256
##E TFSR 000019 17:27:09(001) <main_program> Could not check all operators because of previous error(s)
##W TFCP 000000 17:27:09(002) <transform> Error when checking composite operator: The number of reject datasets "0"is less than the number of input datasets "1".
##W TBLD 000000 17:27:09(003) <main_program> Error when checking composite operator: Output from subprocess: cxx: file 'D:/PROGRA~1/MKSTOO~1/etc/cxx.ccg': The system cannot find the file specified.

##I TFCP 000008 17:27:09(004) <transform> Error when checking composite operator: cxx -O -ID:/Ascential/DataStage/PXEngine/include -W/TP -W/EHa -DAPT_USE_ANSI_IOSTREAMS -c D:/Ascential/DataStage/Projects/RAMULU/RT_BP2.O/V0S4_test2_Transformer_4.C -o D:/Ascential/DataStage/Projects/RAMULU/RT_BP2.O/V0S4_test2_Transformer_4.tmp.o
##E TCOS 000029 17:27:09(005) <main_program> Creation of step finished with status = FAILED (test2.Transformer_4)

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


Please help me for this issue
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

The system, as it tells you, can not find 'D:/PROGRA~1/MKSTOO~1/etc/cxx.ccg'.

What values have you set for APT_COMPILER and APT_LINKER environment variables?
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