Page 1 of 1

Complitaion Error while using Transformer stage

Posted: Fri Aug 24, 2007 9:00 am
by attili
Hello DS Gurus,

I am gettig the follwing error while compiling the job with Transformer stage.

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


##I TOSH 000002 09:54:36(001) <main_program> orchgeneral: loaded
##I TOSH 000002 09:54:36(002) <main_program> orchsort: loaded
##I TOSH 000002 09:54:36(003) <main_program> orchstats: loaded
##E TFCP 000209 09:54:37(000) <transform> Unrecognized argument: -W/EHa
##E TCOS 000029 09:54:37(001) <main_program> Creation of step finished with status = FAILED (temp1.Transformer_6)

*** Internal Generated Transformer Code follows:
0001: //
0002: // Generated file to implement the V0S6_temp1_Transformer_6 transform operator.
0003: //
0004:
0005: // define our input/output link names
0006: inputname 0 DSLink5;
0007: outputname 0 DSLink8;
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: DSLink8
0023: writerecord 0;
0024: RowRejected0 = 0;
0025: }
0026:
0027: finish {
0028: }
0029:
*** End of Internal Generated Transformer Code

ENV SET AS:
APT_COMPILEOPT--->-W/TP -W/EHa -DAPT_USE_ANSI_IOSTREAMS -c
APT_COMPILER------>C:\Program Files\Microsoft Visual Studio 8\VC\bin\
APT_LINKER---------->C:\Program Files\Microsoft Visual Studio 8\VC\bin\
APT_LINKOPT------>-W/TP -W/dll -W/base:0x50000000

Thanks in Advance
Attili

Re: Complitaion Error while using Transformer stage

Posted: Fri Aug 24, 2007 9:28 am
by mujeebur
APT_COMPILEOPT--->-W/TP -W/EHa -DAPT_USE_ANSI_IOSTREAMS -c

Its looks like the above is incorrect.

Remove -W/EHa and try.

Re: Complitaion Error while using Transformer stage

Posted: Fri Aug 24, 2007 12:12 pm
by attili
Thanks alot for the response.
Tried doing it , but it did'nt worked out.