Search found 15603 matches

by ArndW
Tue Mar 18, 2008 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multipe Sql Commands
Replies: 8
Views: 2586

nkreddy3 - that is correct.
by ArndW
Tue Mar 18, 2008 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with converting EBCDIC to ASCII
Replies: 10
Views: 9897

If you don't have NLS enabled this EBCDIC to ASCII conversion should work. Can you narrow it down to one character in EBCDIC and show the numeric value in EBCDIC and then the value after it is converted to ASCII?
by ArndW
Tue Mar 18, 2008 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating a dummy row in Transformer incase no of input row=0
Replies: 3
Views: 891

Add a row generator stage with just 1 output. Funnel it with the main data stream so that it arrives after the database stream (I can't remember the exact name of that option right now). In your transform you can then query along the lines of "If this row is @INROWNUM=1 and it contains a special val...
by ArndW
Tue Mar 18, 2008 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling Functions
Replies: 4
Views: 1227

The column is coming in as empty, not NULL so the IsNull() function will never evaluate to true.
by ArndW
Tue Mar 18, 2008 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare two .dsx files
Replies: 9
Views: 2471

The preferred way would be to this via a DataStage job but you could also use the UNIX "orchadmin dump {file.ds}" on both files and "diff" them.
by ArndW
Tue Mar 18, 2008 2:06 am
Forum: General
Topic: i want to connect to Datastage & Run the Jobs from Java
Replies: 3
Views: 1057

Re: thanks alot for your valuable respoonse

But i am not finding eaxct solution any where, if you have any plz let me know, thnx again. For those of you who don't speak SMS and prefer English: "But I am not finding the exact solution anwhere, if you have any please let me know, Thanks again." Siva512 - What about There is a C-callable API (c...
by ArndW
Tue Mar 18, 2008 2:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling Functions
Replies: 4
Views: 1227

How did "Vignesh" magically appear instead of the empty value? The text is coming back as empty, not NULL so none of the null handling routines are appropriate.
by ArndW
Tue Mar 18, 2008 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multipe Sql Commands
Replies: 8
Views: 2586

You can always call a stored procedure, which can execute more than one comand.
by ArndW
Tue Mar 18, 2008 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UCS-2
Replies: 20
Views: 5263

Yes, USC2 is almost identical to UTF-16 and if you have characters that are not mapped as you expect then you can always create your own mapping tables.
by ArndW
Mon Mar 17, 2008 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure (code 139)
Replies: 17
Views: 7803

Re: Parallel job reports failure (code 139)

kavuri wrote:...When I tried to view data, It is throwing some message which is not an error. ..

What is the message (it might be pertinant)?
by ArndW
Mon Mar 17, 2008 12:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MKS Installation Error
Replies: 6
Views: 1721

Is there any message from the MKS install? Does your site have non-standard or complex security?
by ArndW
Mon Mar 17, 2008 10:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicate rows based on value passed
Replies: 7
Views: 1993

Bad wording on my part, it isn't a wrapper stage, but putting together a wrapper. You can add a "parallel routine" in the routines section. At v 7 you would do that in the manager, at v8 you can do it right in the designer.
by ArndW
Mon Mar 17, 2008 10:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fatal error
Replies: 9
Views: 1834

With all due respect Dr. Yeduri, your first suggestion may or may not work but your second is guaranteed to corrupt the job and make it unusable. If you think I am wrong, perhaps you could try deleting the RT_LOGnnn hashed file from one of your jobs and seeing if it will run thereafter. Note, you re...
by ArndW
Mon Mar 17, 2008 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MKS Installation Error
Replies: 6
Views: 1721

Have you tried installing MKS separately?
by ArndW
Mon Mar 17, 2008 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to call Unix command from Transfomer
Replies: 3
Views: 1057

Are you sure you want to uuencode in a transform stage - this would be executed for each and every row in the file. Much better to put this in the output sequential file "filter"