Search found 174 matches

by singhald
Mon May 23, 2011 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading a EBCIDIC file from UNIX command line ?
Replies: 3
Views: 1909

i dont think till now we have any such utility to read ebsidic file.

Please share more informaiton if any one find such utility
by singhald
Mon May 23, 2011 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job Hanged
Replies: 3
Views: 1598

use left outer join and get all the records to filter stage and filter out all records which has null value in any of the field which is coming form reference link (i mea right link)
by singhald
Mon May 23, 2011 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job Hanged
Replies: 3
Views: 1598

use join stage rather than lookup stage. sure it would reslove your problem
by singhald
Sun May 22, 2011 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in job logic
Replies: 32
Views: 12395

read the data form both the input links and add column genereator stage in each input link to create unique sequence number in new dummly key column which can be defined in the column generator stage (edit column metadata and provide "part" as start value and "partcount" as incre...
by singhald
Thu Oct 07, 2010 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: find datastage jobs in project using field name
Replies: 9
Views: 9799

Thanks Craig, I think, The first option of Usage Analysis doesn't give the informaiton about the field/metadata. I am trying the second option, but it is taking lot of time and it manual work which currently i am doing. Please let me know if you have come accross this type of problem before and how ...
by singhald
Thu Oct 07, 2010 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: find datastage jobs in project using field name
Replies: 9
Views: 9799

find datastage jobs in project using field name

Hi All, I have to do some amendment in a field which is being used by datastage jobs in a project. I have 1000s of datastage jobs in my project. I need to findout the impected datastage jobs which are using that fields. Can any one please let me know if we have any utility/ program by which we can d...
by singhald
Tue Apr 06, 2010 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: count record based on key field without droping nonkey field
Replies: 3
Views: 1527

Thanks Ray,

fork join design is working. i just wanted to know, is this design optmized to achive the outcome ?
by singhald
Tue Apr 06, 2010 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: count record based on key field without droping nonkey field
Replies: 3
Views: 1527

count record based on key field without droping nonkey field

Hi I need to count source records using key fields and attched this count to all record in output. I want to keep all source records and fields in target with record count based on key field. Exmple: Source data Key Col2 Col3 1 A X 1 B Y 2 C Z 3 D S 3 D Y output Key Col2 Col3 Count 1 A X 2 1 B Y 2 2...
by singhald
Mon Feb 22, 2010 5:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to view data from lookup fileset
Replies: 3
Views: 1942

How to view data from lookup fileset

Hi ,

do we have any utility to view data from LookupFileSet stage.

thanks
by singhald
Sun Feb 21, 2010 10:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: nulls
Replies: 3
Views: 2277

If yuo are using oracle enterprise stage, you can use NVL fucntion to handle null.

If you are using sequential stage to read ascii file you can handle them at column level . edit the column and provide NULL value and that will be replaced if found any null.
by singhald
Mon Feb 01, 2010 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What's the difference of these stages?
Replies: 3
Views: 1900

you can go throuh datastage parallel job developer guide.

it can give you more detail on each of these stages.
by singhald
Wed Nov 04, 2009 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String truncate while calling stored procedure from DS
Replies: 11
Views: 5560

Hi I have done some workaround to resolve this issue. Now I am directly putting job parameters in side the stored procedure stage in Procedure call Syntax box instead of passing from transformer. I am passing only one field from transformer stage, and rest of the fields from job parameters. For exam...
by singhald
Wed Nov 04, 2009 3:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String truncate while calling stored procedure from DS
Replies: 11
Views: 5560

Try the following 1.) Make the length as 10 and re-run 2.) Change the stored procedure to take 2 parameters. Set one to be hardcoded and next from the link variable. ... when i am specifying the length 10 for message field. I am getting below ewarning message followed by error message. warning mess...
by singhald
Wed Nov 04, 2009 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String truncate while calling stored procedure from DS
Replies: 11
Views: 5560

The database has a defined length, and may be objecting to metadata suggesting that the string may have a potentially larger (that is, unlimited) size. ... In this situation, what length should i define in DataStage table definition? currently i am using varchar2 in both datastage and database with...
by singhald
Wed Nov 04, 2009 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String truncate while calling stored procedure from DS
Replies: 11
Views: 5560

Now you know the source of the error and may more closely focus your diagnostic efforts. Check whether there is a metadata mismatch; the stored procedure stage does not report these. ... Hi Ray, I dont have any datatype mismatch. in addition to this, i dont have any defined length for this varcher ...