Search found 40 matches

by mayura
Mon Dec 24, 2012 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid character found converting string
Replies: 2
Views: 2172

Invalid character found converting string

Invalid character fond converting string from code page UTP-8 to unicode substituting.

Data type is char.
Input is sequential file

Reason might be: any invalid character in input file like japnese,etc..

Solution please.
by mayura
Fri Dec 21, 2012 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning on Datastage parallel job on duplicate entry
Replies: 9
Views: 6072

I did used remove duplicate stage for the records on which warning coming out. I used the same key column based on what data has been extracted or lookedup in lookup stage. Is there any possiblity of line break or any junk character into file. May be i will check data set data one more time.. But pl...
by mayura
Tue Dec 18, 2012 1:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning on Datastage parallel job on duplicate entry
Replies: 9
Views: 6072

I did checked table data there were no duplicates hence using remove duplicate stage warning remains the same.

Any other resolultiion please...
by mayura
Thu Dec 13, 2012 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning on Datastage parallel job on duplicate entry
Replies: 9
Views: 6072

So did this change is good sign to be implement or there is any other way to remove above warning.

As I dont want to return multiple rows for single line. or suggest
by mayura
Thu Dec 13, 2012 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning on Datastage parallel job on duplicate entry
Replies: 9
Views: 6072

Warning on Datastage parallel job on duplicate entry

Recieved warning on ignoring duplicate entry at table ...no further warnings will be issued for this table. Solution: Made the one of the referance link in lookup stage for selecting multiple rows from link and warning has gone. Query: Is there any impact of data flowed from link after selecting mul...
by mayura
Thu Dec 13, 2012 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning on checking operator on lookup stage
Replies: 5
Views: 2888

Thanks it was resolved yerterday intself as coded again after removal of stages and link which has thrown the warning.
by mayura
Wed Dec 12, 2012 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning on checking operator on lookup stage
Replies: 5
Views: 2888

This is related to Parallel job.Gettting warning for lookup state column.
Checked Input/Output column and are same.Also its not speicfied as key column from source.
by mayura
Tue Dec 11, 2012 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning on checking operator on lookup stage
Replies: 5
Views: 2888

warning on checking operator on lookup stage

When checking operator-the view adapter has a binding for the non existent destination field:
Checked all ways but warning is not removing
e.g: took new stage and coded again
tick on column thrwoing warning complation didnt worked.
Mentioned column meta data is same.

Please let me know.
by mayura
Fri Feb 04, 2011 2:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple files
Replies: 1
Views: 1987

Multiple files

Please let me know how to handle multiple files in single job.
I have clicked on the option allow multiple instant.
Query:

I have two files coming to the input having different naming convension,and it need to be proceed in same job at a time.

How should i handle it at Datastage level

:idea:
by mayura
Tue Oct 05, 2010 3:55 am
Forum: General
Topic: Job search in unix
Replies: 8
Views: 5797

Before running query you have to check for UV command. You need to setup the datastage enviormental variable. And if there are multiple projects, you have to logon on those projects and then you can check the job specific properties as well.. One UV is set, you can query datastage tables to get the...
by mayura
Mon Sep 27, 2010 12:08 am
Forum: General
Topic: Job search in unix
Replies: 8
Views: 5797

Search DSXchange. There is a recent (current) conversation about UNIX processes that belong to a DataStage job. The job itself does not exist in UNIX. The job itself is stored in database tables. ... there is datastage and unix connectivity.In version 8 we can seach the job.But in 7.5 suppose for e...
by mayura
Fri Sep 24, 2010 5:45 am
Forum: General
Topic: Job search in unix
Replies: 8
Views: 5797

Job search in unix

how to search the data stage job in unix..

:?
by mayura
Thu Aug 19, 2010 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove control M or special character by ds jobs
Replies: 8
Views: 14029

kduke wrote:FTP will also get rid of these if you transfer ascii instead of binary. ...
ok will try this and let u all know...

between thanks.. but keep posting new ideas for the same :lol:
by mayura
Fri Aug 13, 2010 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove control M or special character by ds jobs
Replies: 8
Views: 14029

How to remove control M or special character by ds jobs

Hi,

We can remove the control m or special characters in UNIX scripts.. but
is there any way to remove the special characters coming in flat files from Datastage jobs?
:roll:
by mayura
Fri Jul 09, 2010 5:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert negative values into positive
Replies: 10
Views: 9514

Sainath.Srinivasan wrote:Or write one yourself as

Code: Select all

  If yourField < 0 Then yourField * (-1) Else yourField
...
or use field function to convert all negative sign to positve and then load into target :idea: