Search found 15603 matches

by ArndW
Wed Oct 04, 2006 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Stored procedure stage
Replies: 9
Views: 3970

Add it and find out :) Actually, I think you have found your cause; the installation guide PDF should list this if you want to check.
by ArndW
Wed Oct 04, 2006 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Stored procedure stage
Replies: 9
Views: 3970

I thought this was an oracle library, not part of the DS set. If you do an ls-al on that file what is the size (and what version of DS do you have on what platform) and are the access rights set correctly with R and X rights?
by ArndW
Wed Oct 04, 2006 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Stored procedure stage
Replies: 9
Views: 3970

Check the 1st line of your job in the director, this displays the actual runtime ENV settings. Are they in there?
by ArndW
Wed Oct 04, 2006 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Stored procedure stage
Replies: 9
Views: 3970

Find the library "dsstpora.so" on your system and make sure that directory is in the library path of the job. If not, add it to the entry in your dsenv file.
by ArndW
Wed Oct 04, 2006 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to generate a piece number each 3 lines
Replies: 3
Views: 746

In a transform stage put a derivation in

Code: Select all

MOD(@INROWNUM,3)+1
by ArndW
Wed Oct 04, 2006 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer is slow for creating parallel jobs (7.5.2)
Replies: 12
Views: 3684

I had this issue about a year ago and posted it here. Let me search....

here it is
by ArndW
Wed Oct 04, 2006 3:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How Find Out the last Space or Hyphen in a String
Replies: 9
Views: 3097

Use RTRIM and check whether the last character is space or '-'


Could you please explain that? RTRIM doesn't exist in Server, but even if you used TRIMB I don't see how that can be used in this example.
by ArndW
Wed Oct 04, 2006 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Current Time from Column Generator
Replies: 3
Views: 3262

Using the generation attributes will let you either cycle through a list of values or increment from a starting epoch, but won't give you the current date/time. You should use the transform stage for that derivation.
by ArndW
Tue Oct 03, 2006 11:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting EBCDIC Binary data type to ASCII
Replies: 6
Views: 1429

In that case it is probably unsigned COMP-3, but I'm just guessing. If you could post the HEX values plus the correct numeric representation I could tell you, though.
by ArndW
Tue Oct 03, 2006 11:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: populating valid date
Replies: 3
Views: 1220

The ICONV(In.DateStringColumn,"D4/YMD") function will return a number if it can be converted to internal format or will return the original string if it cannot.
by ArndW
Tue Oct 03, 2006 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Metadata
Replies: 6
Views: 2293

sdfasih, Here is some sample metadata for a file on my system: VarChar(128). Do you see that the question, at least as I understand it, is somewhat vague? What are you trying to achieve? Most files that you will use will have different metadata - in this case we are talking about the definitions on ...
by ArndW
Tue Oct 03, 2006 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BLANK VALUES
Replies: 7
Views: 2073

Look at your error message. The data type is DOUBLE precision numeric. If you write an empty string value to this type of field DS has no choice but to set it to NULL. Strings are a different matter entirely.
by ArndW
Tue Oct 03, 2006 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting EBCDIC Binary data type to ASCII
Replies: 6
Views: 1429

You can use the SDK functions that convert binary COBOL datatypes to do this. Do you know what sort of binary data you have?
by ArndW
Tue Oct 03, 2006 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convertion From Sq File to Lookup Fileset ?
Replies: 5
Views: 1417

At byte offset 50 in the first line of data your metadata expected a character representation of a date (assuming that is the definition of "Start_Date"). But at that location the source file has the characters "StPr" and this is what is causing the job to abort. Try doing a "view data" in the desig...
by ArndW
Tue Oct 03, 2006 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Subroutine to be executed inside the job control routine
Replies: 2
Views: 894

Define "Batch"? If you mean a DataStage sequence you can call routines directly. Is this a BASIC routine or a C++ PX one?