Page 1 of 1

Datastage 7.5x2 Installation on windows server 2003 R2

Posted: Tue Sep 14, 2010 9:39 am
by routhu
Hi All,

I installed Datastage 7.5x2 on windows server 2003 R2

I am able to install it and run a server job successsfully.

the problem here is could able to run a parallel job.

I installed microsoft.net framework along with it.

Can any one help me out with this issue?

thanks in advance.

Posted: Tue Sep 14, 2010 10:18 am
by chulett
You'd have to be a wee bit more specific regarding what the nature of your problem running a PX job is.

Posted: Tue Sep 14, 2010 11:44 am
by routhu
chulett wrote:You'd have to be a wee bit more specific regarding what the nature of your problem running a PX job is.

hi chulett,

I think i figured out the reason.

the .NEt framework v1.1 is required for running a datastage parallel jobs on windows .


I have .NET framework 2.0 installed . does it support ds?

Posted: Tue Sep 14, 2010 2:45 pm
by chulett
Typically, the later versions include the earlier versions, but you can go back and install 1.1 without hurting your 2.0 installation.

Posted: Tue Sep 14, 2010 3:31 pm
by routhu
chulett wrote:Typically, the later versions include the earlier versions, but you can go back and install 1.1 without hurting your 2.0 installation. ...
I have both versions of .NET framework installed(1.1 & 2.0) but still the parallel jobs are failing.

:?

Posted: Tue Sep 14, 2010 3:48 pm
by chulett
Than that's not the problem. Why not post your actual failure message, see what people can tell from that?

Posted: Tue Sep 14, 2010 4:30 pm
by ray.wurlod
Do you have C++ compiler correctly installed? Can you compile parallel jobs?

Posted: Wed Sep 15, 2010 7:32 am
by routhu
chulett wrote:Than that's not the problem. Why not post your actual failure message, see what people can tell from that? ...

criag,


this is the structure of my sample parallel job:

Seq File--> transformer-->dataset

when i try to compile the job,the following error message pop ups:


Output from transformer compilation follows:

Cannot open file compile.tmp (sample.Transformer_2)

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