Search found 50 matches

by arnabdey
Mon Jun 09, 2008 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running parallel jobs on Windows 2003 Server
Replies: 6
Views: 2008

Hi Criag Thanks for your suggestion. But we are having Windows 2003 server and have got DataStage Server 7.5.3 for Windows. This version is new for me, as I have earlier configured with 7.5x2 and then 8. Do you mean to say this version is not correct for Windows? I had a suspicion whether Pentium3 i...
by arnabdey
Mon Jun 09, 2008 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running parallel jobs on Windows 2003 Server
Replies: 6
Views: 2008

Error while running parallel jobs on Windows 2003 Server

Hi I am getting a strange problem. While trying to run parallel jobs on Windows 2003 server (using Pentium 3) we got the following error [b]"This jobtype is not currently runnable on this platform"[/b]. We have installed datastage server version 7.5.3, and we are able to run server jobs su...
by arnabdey
Wed May 21, 2008 4:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ compiler path to be set for windows installation
Replies: 6
Views: 6217

C++ compiler path to be set for windows installation

Hi

I have installed .NET Framework 3.5 on Windows 2003. Prior to this I installed DataStage Server. What is the value I should assign to variables like APT Compiler Path, APT Linker Path, APT Compiler Option, etc. Is there any other setting I need to do to get the C++ compiler working?

Thanks
Arnab
by arnabdey
Mon Apr 16, 2007 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SMP to MPP Systems
Replies: 3
Views: 1605

Hi

There should not be any change in your job design. It's all upto the configuration file specified by the APT_CONFIG_FILE parameter.
by arnabdey
Mon Apr 16, 2007 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting a file from DataStage server routine
Replies: 7
Views: 3980

Hi DSguru

Hi DSguru But say I use Windows 2000 or 2003 as my server, will the system function return 1. [quote="DSguru2B"]For a flat file you can use the following. [b]File[/b] is the input argument that will be the fully qualified name of the file to be removed. [code] FUNCTION RemoveFile(File) IF ...
by arnabdey
Mon Apr 16, 2007 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting a file from DataStage server routine
Replies: 7
Views: 3980

Hi us1aslam1us

I actually have a server routine with many other things. The requirement is to delete a mere flat file at the end. So I was looking for a Basic command. [quote="us1aslam1us"]Are we talking about hashed file or flat file as commands will differ from one environment to other. Also why don't ...
by arnabdey
Mon Apr 16, 2007 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting a file from DataStage server routine
Replies: 7
Views: 3980

Deleting a file from DataStage server routine

Can anyone please tell how to delete a file from DataStage server routine. This routine needs to be able to run on UNIX as well as WINDOWS environment.
by arnabdey
Fri Jan 12, 2007 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help immediately
Replies: 7
Views: 2973

Hi

Hi

If you are reading the data from two tables, you can directly do the join at the source table itself by writing appropriate query

select ..,..,.. from tab1,tab2;
by arnabdey
Thu Jan 11, 2007 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add one day to a Timestamp in PX
Replies: 4
Views: 3976

Hi Ray

I had tried this in a job and then posted. It's input format is timestamp only, in the form yyyy-mm-dd hh:mm:ss. Now this format can be set at project level as well as job level.

Thanx
by arnabdey
Thu Jan 11, 2007 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reset if required - change in the Dsx
Replies: 4
Views: 1693

Yes, that will be 0 or 1
by arnabdey
Thu Jan 11, 2007 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to connect to host - UV( internal error 39202)
Replies: 4
Views: 4692

Please check the IP address of the DataStage Server and whether the server is running or not. Also check whether the port number is the default one or not.
by arnabdey
Thu Jan 11, 2007 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reset if required - change in the Dsx
Replies: 4
Views: 1693

Look for the Execution Mode provided in the .dsx file. It is 0 for Run and 1 for reset and run.

Also there is a check like the following
If Not(b$CPRestarted) Then GoTo L$V0S3$PREPARED
for the simple run option, which needs to be removed for reset and run.
by arnabdey
Thu Jan 11, 2007 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Value from routine in routine activity
Replies: 9
Views: 2614

Can you show me the code for the routine?

See you check the following

1. You should do
Ans=1 not ans=1

2. Check the trigger condition
by arnabdey
Thu Jan 11, 2007 3:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Value from routine in routine activity
Replies: 9
Views: 2614

By the way it is not ans..... It is Ans.
by arnabdey
Thu Jan 11, 2007 3:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Value from routine in routine activity
Replies: 9
Views: 2614

Hi

When you develop the routine you have a Type drop-down menu in General Tab. There you need to specify as Transform Function. So when you go to the Code page, at the botton you get Return (Ans). So at the end of your routine, if the Ans is set, that will be returned.

Also check the triggerring.