Search found 15603 matches

by ArndW
Mon Nov 28, 2005 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: varying count of delimiter
Replies: 9
Views: 2250

I am still a bit unclear about what you are doing. I cannot see a way to use ICONV() in your case, the string function that I would use is FIELD() or, if the data is fixed width, just use the In.String[pos,len] syntax. Since you haven't shown what you are trying to get as output I don't know how we ...
by ArndW
Mon Nov 28, 2005 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of Named pipes in sequential file
Replies: 23
Views: 5264

shyju, The only difference that DataStage sees between a pipe and normal sequential file is that you specify the checkbox for "named pipe" in the stage and you have the option of changing the buffer size and timeout values. The job itself sees no difference at all. You need to have 2 processes conne...
by ArndW
Mon Nov 28, 2005 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: varying count of delimiter
Replies: 9
Views: 2250

I am not sure what you are trying to do, your source and target formats are the same....
by ArndW
Mon Nov 28, 2005 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unknown Error
Replies: 2
Views: 1186

Sounds very much like the UNIX permissions for dsdb2.so on your machine don't give your userid read access.
by ArndW
Mon Nov 28, 2005 5:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is DS filesystem /dbms
Replies: 3
Views: 1006

DataStage objects are stored in UniVerse, as you have correctly written. The file (i.e. Table) structure of the DataStage data is not officially documented by Ascential so that they continue to have the ability to change the structure of the system. The complete documentation for the underlying syst...
by ArndW
Mon Nov 28, 2005 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_BadAlloc: Heap allocation failed.
Replies: 8
Views: 4650

Rajeev,

the lookups will use up temporary disk space. If you use a temporary 1-node configuration file does the problem go away?
by ArndW
Mon Nov 28, 2005 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_BadAlloc: Heap allocation failed.
Replies: 8
Views: 4650

Have you checked disk space during execution of the job? If the error occurs after a bit of time then this might be the cause, if it happens right at the outset then you might have access issues.
by ArndW
Sat Nov 26, 2005 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log for Multiple instance
Replies: 14
Views: 3662

Kumar_s,

they are written, not over-written. If you don't auto-purge log files to only their last run, your multi-instance logs will all be visible. It is just that all of those entries are actually stored in the main job's log.
by ArndW
Sat Nov 26, 2005 3:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log for Multiple instance
Replies: 14
Views: 3662

Hello Kumar_s, normally all instances of a multi-instance job have their own log files visible from the Director. They are all stored in only one log file, so if you have auto purge settings set so that only the last run of a job is kept then it will, unfortunately, remove entries for prior multiins...
by ArndW
Fri Nov 25, 2005 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: c routine for substrings
Replies: 6
Views: 1524

Jasper, the function INDEX is exactly identical to INSTR, the first parameter is the string to check, the second is the substring to search for. The optional 3rd parameter is the occurence number. It returns the position in the string where the substring is found. It functions the same way in Server...
by ArndW
Fri Nov 25, 2005 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Paralle routine:Can 2 routines be used in single transformer
Replies: 4
Views: 1089

It looks like you are declaring the same function twice with different numbers of parameters.

0006: extern int32 stripinvalidchars(string inpstr,string termstring);
0007: extern string stripinvalidchars(string inpstr,string termstring,string replace);
by ArndW
Fri Nov 25, 2005 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: c routine for substrings
Replies: 6
Views: 1524

Jasper,

once you solve your problem, compare performance with the simple INDEX() function and perhaps you might be convinced that the solution is more efficient. Please remember to post your results here, I for one am very curious.
by ArndW
Fri Nov 25, 2005 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Paralle routine:Can 2 routines be used in single transformer
Replies: 4
Views: 1089

thebird,

could you tell us what the compiler error is?
by ArndW
Fri Nov 25, 2005 5:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can win jobs run on unix
Replies: 7
Views: 1147

Thanks - I missed that one.
by ArndW
Fri Nov 25, 2005 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can win jobs run on unix
Replies: 7
Views: 1147

Andal, you are talking 2 different types of issue. Firstly, DataStage can connect to the databases directly using various methods; this is the easy part. Secondly, connecting to PeopleSoft or JD Edwards systems and getting structured data. Since these systems have their own structures just reading t...