Search found 15603 matches

by ArndW
Mon Jun 15, 2009 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import DS function in C++ Routine
Replies: 12
Views: 4239

I just checked - the c++ function doesn't use any API calls, and the other object is a buildop which uses a whole different set of calls.
by ArndW
Mon Jun 15, 2009 2:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What ports does DataStage really use?
Replies: 12
Views: 9120

Here with 8.0.1 and AIX the list is:

2809, 9043, 9080, 9100, 9403, 13400, 13401,31531, 31533, 31538
by ArndW
Sun Jun 14, 2009 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can't unpack a packed decimal value
Replies: 3
Views: 2130

A 5 Byte COMP-3 would be a S9(9). For the example you gave, 09 06 01 13 "G" what number do you expect to get?

I am wondering about the trailing sign, the "G" in ASCII is binary 01000111 and "0111" isn't used as a sign nibble.
by ArndW
Sat Jun 13, 2009 12:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import DS function in C++ Routine
Replies: 12
Views: 4239

Once I get back to work I can get the list of include files and functions that you need
by ArndW
Fri Jun 12, 2009 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import DS function in C++ Routine
Replies: 12
Views: 4239

And I just implemented a c++ function in V8 today and it worked just as it has in the past.
by ArndW
Fri Jun 12, 2009 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while importing SP in datastage
Replies: 7
Views: 1779

Your error message refers to a conversion so I would go through the stored procedure and the definitions looking for an explicit or implicit conversion.
by ArndW
Fri Jun 12, 2009 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: signed numeric data
Replies: 13
Views: 4104

priyadarshikunal - I don't understand what you mean. VarChar fields in sequential file are always read as VarChar...

venky - what exactly is your error or problem?
by ArndW
Fri Jun 12, 2009 1:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while importing SP in datastage
Replies: 7
Views: 1779

Where does the "datetime" data type get used? I suspect you declared that somewhere.
by ArndW
Fri Jun 12, 2009 1:35 am
Forum: General
Topic: Errors while stopping jobs using scripts
Replies: 5
Views: 2327

What kind of jobs are you talking about - sequences might give different types of errors than server or PX jobs.
by ArndW
Thu Jun 11, 2009 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while importing SP in datastage
Replies: 7
Views: 1779

Fix the format or do an explicit conversion into the correct format. Why not define the DataStage type as VarChar(100) temporarily and see if you are getting correct values, once that works you can do an explicit conversion from string to datetime. What is your datetime string format?
by ArndW
Thu Jun 11, 2009 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Unable to allocate communication resources
Replies: 16
Views: 34120

Are you doing wave processing (intentionally)? What stage is setting up end-of-waves? Are you sure that you've seen all the erorr messages? If, for instance, a disk fills up you will also get the "Unable to allocate communication resources." message, but that is not the cause of the proble...
by ArndW
Thu Jun 11, 2009 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 8 Phantom 31143
Replies: 4
Views: 1769

What happened to this thread?
by ArndW
Thu Jun 11, 2009 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while importing SP in datastage
Replies: 7
Views: 1779

Your routine is returning a VarChar(100) string and DataStage is trying to write that to a date time column and giving the error that it cannot convert it. This is probably due to an invalid date format.
by ArndW
Thu Jun 11, 2009 6:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom error never seen before
Replies: 9
Views: 5193

From the TCL, issue the command "MAP" after the error occurs and see if you can find DS.GETPID and DS.SETCOL (they will be found towards the end of the list). If the aren't there, restart DataStage and then issue the command again - if they still aren't there then you have a problem which ...
by ArndW
Thu Jun 11, 2009 1:38 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Real time data processing using DataStage
Replies: 4
Views: 5626

I've done a couple of implementations that people called "real-time", but I much prefer to use "near real-time" or just to specify that the application needs to be synchronous. At present I am on an implementation using MQSeries for data transfer and there are host systems involv...