Search found 253 matches

by Eric
Tue Nov 08, 2005 6:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage USS
Replies: 1
Views: 1505

Re: DataStage USS

nicolas2143 wrote:Does any stage exist in DS USS, which allows to realize this operation?
DS USS uses the same stages as the Parallel canvas but enables you to shift the workload onto the mainframe.
by Eric
Mon Nov 07, 2005 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparision of Datastage 7.5.1A EE
Replies: 8
Views: 2475

srekant wrote: 1)Is it possible to run parallel jobs on win2003
ArndW wrote:Yes, you can run Px on 2003.
But not using DS 7.5.1.A ;)
by Eric
Tue Nov 01, 2005 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Execution Error
Replies: 8
Views: 7685

I disagree. If the dll was missing then the job would not compile and this message looks like a runtime error. The last message is "The specified module could not be found" which normally means that the function within the dll cannot be loaded. This implies that either the dll was not buil...
by Eric
Mon Oct 31, 2005 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Object File (.o) for calling external routines- Is it ELF?
Replies: 1
Views: 976

External routines don't use the object file ( *.obj) on a windows system.

On windows systems you to compile either a *.lib (library file) or a *.dll (dynamic library file)
by Eric
Mon Oct 31, 2005 10:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Execution Error
Replies: 8
Views: 7685

Is this a library or dynamic routine?
How did you compile the routine? (commands?)
Have you set the retrun datatypes correctly in the PxRoutine definition in the DataStage designer?
Have you done this before on Unix?
by Eric
Fri Oct 28, 2005 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while viewing data
Replies: 19
Views: 7188

Does this job work at runtime?
by Eric
Thu Oct 27, 2005 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating custom routine on Windows Version
Replies: 3
Views: 1575

unresolved external symbol "char *"
What arguments and return types have you configured within the parallel routine definition? - Do these match with the return types definied within the DLL?
by Eric
Tue Oct 25, 2005 4:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Long compile times under USS
Replies: 7
Views: 3638

You can compile the transformer directly on the Z/os from the command line. (DataStage can generate you a script) You can then see how long that part of the compile takes and what difference tweeks on the mainframe make.

(check the options on the remote tab for generating deployment scripts)
by Eric
Mon Oct 24, 2005 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Type Conversion Error in Transformer
Replies: 7
Views: 3186

Eric, The compiler is available coz when i compiled the c Code from Command Line This does not mean that DataStage can find the compiler. Did you have only Studio .NET installed Before you installed DataStage? You other post has problems with Unknown compiler and linking Options (i.e. -Wc++) - Why ...
by Eric
Mon Oct 24, 2005 3:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Type Conversion Error in Transformer
Replies: 7
Views: 3186

maffan76 wrote:

Code: Select all

##I TBLD 000000 15:58:50(006) <main_program> Error when checking composite operator: Output from subprocess: Compiler "cl" not found.
The problem is that no compiler is avaliable to DataStage.
by Eric
Fri Oct 21, 2005 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tranformer compilation error
Replies: 19
Views: 14525

Do you have visual studio 6 also installed?
D:\Ascential\DataStage\PXEngine\include\apt_util\basicstring.h(89) : error C2039: 'ostream' : is not a member of 'operator``global namespace'''
That error sounds like the .NET compiler is not being used???
by Eric
Fri Oct 21, 2005 5:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to compile an enternal C/C++ Routine and use in DS PX
Replies: 11
Views: 5445

Why would a C routine on Windows be any different from the same C routine on UNIX? The routine code may be the same, but to create a windows DLL you will require a different function decleration and sometimes different include definitions. This is due to the way the windows platform uses a DLL at r...
by Eric
Wed Oct 19, 2005 5:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Library file not Found
Replies: 2
Views: 913

Have you moved this job to a different platform? (recompile job)

Does the job contain PX routines? (move routine 'c' code - recompile routine then recompile job)
by Eric
Wed Oct 19, 2005 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to compile an enternal C/C++ Routine and use in DS PX
Replies: 11
Views: 5445

Do you want to build static or dynamic libraries?

For static libraries you need to compile a *.lib file
for dynamic libraries you need to build a *.dll file

How you generate these depend on your choice of using command line 'nmake' or the Visual Studio .net application.
by Eric
Wed Oct 19, 2005 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tranformer compilation error
Replies: 19
Views: 14525

maffan76from subprocess: Compiler "cl" not found.
Did you have a compiler installed before you installed DataStage?
The error would imply that datastage cannot find a compiler.