Datastage 7.5x2 Installation on windows server 2003 R2

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
routhu
Participant
Posts: 6
Joined: Mon Sep 13, 2010 3:33 pm

Datastage 7.5x2 Installation on windows server 2003 R2

Post 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.
Madhu Routhu
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

You'd have to be a wee bit more specific regarding what the nature of your problem running a PX job is.
-craig

"You can never have too many knives" -- Logan Nine Fingers
routhu
Participant
Posts: 6
Joined: Mon Sep 13, 2010 3:33 pm

Post 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?
Madhu Routhu
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post 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.
-craig

"You can never have too many knives" -- Logan Nine Fingers
routhu
Participant
Posts: 6
Joined: Mon Sep 13, 2010 3:33 pm

Post 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.

:?
Madhu Routhu
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Than that's not the problem. Why not post your actual failure message, see what people can tell from that?
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Do you have C++ compiler correctly installed? Can you compile parallel jobs?
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
routhu
Participant
Posts: 6
Joined: Mon Sep 13, 2010 3:33 pm

Post 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
Madhu Routhu
Post Reply