Search found 592 matches

by JoshGeorge
Wed Sep 26, 2007 5:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Data Capture issue.
Replies: 3
Views: 1371

Change Data Capture (CDC) needs more care to be given. Reading the relevant help document is the first step.

Also make sure:

:arrow: In the input tab of your Change Capture stage you have used the same partition on the same partition keys. Also your sorting keys are the same and in the same order.
by JoshGeorge
Wed Sep 26, 2007 5:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how ro filter file
Replies: 4
Views: 1701

You can use Head stage. You have option to read N rows there. Else use Unix command in filter option of sequential file stage and fetch only first 1000 rows.
by JoshGeorge
Wed Sep 26, 2007 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: converting server jobs into parallel jobs
Replies: 1
Views: 668

You might want to read the FAQ section and learn a bit about the dual engine concept in DataStage. Refer THIS section.
by JoshGeorge
Wed Sep 26, 2007 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Performance Query
Replies: 4
Views: 1919

Modularizing and putting comments for log entries is for sure the best way. Option 2.
by JoshGeorge
Wed Sep 26, 2007 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Usage of server components in parallel engine
Replies: 7
Views: 1780

Again No. Open a parallel job and see if you can see a hashed file option in the palette.
by JoshGeorge
Wed Sep 26, 2007 1:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Question - Multiple conversions
Replies: 7
Views: 3714

Just change the data type of your Input Column from decimal to integer regardless of what the real input type is and do

Code: Select all


outputCol:date = date_from_string [%yyyy%mm%dd] (InputCol)  


in your modify stage.
by JoshGeorge
Tue Sep 25, 2007 4:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Question - Multiple conversions
Replies: 7
Views: 3714

Is the input column really decimal? You didn't specify any scale in the data type specification nor in the examples/values you posted. If they are expected as date values they shouldn't be expected as decimal at all. That will be: 20070112.00... 20060513.00... If input is coming without sacle values...
by JoshGeorge
Tue Sep 25, 2007 3:47 am
Forum: General
Topic: Help how to extract first field in a string (csv file)
Replies: 9
Views: 3459

That will be

Code: Select all


Field(Field(Input.String,',',1),'=',2)

Maveric, Thanks for pointing it out.
by JoshGeorge
Tue Sep 25, 2007 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Locked
Replies: 3
Views: 2219

If your concern is about 'issues with respect to data stage repository or any affect to the same job' answer is No. Doing it from the director is the safest way (Esply if you are not aware of background processes). Hi, my question is job is opened and my connection lost, when I am try to open again ...
by JoshGeorge
Tue Sep 25, 2007 3:25 am
Forum: General
Topic: Help how to extract first field in a string (csv file)
Replies: 9
Views: 3459


Field({InputString},{Delimiter},{Position},[{NumberOfFields}])

Filed(Input.Field,',',1)

by JoshGeorge
Sun Sep 23, 2007 6:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to start teradata multiload
Replies: 7
Views: 5262

It is a potential bug and I believe there is a fix available from the service provider for this. I had a similar issue in one of my previous projects and IBM responded with a fix. But I found the work around - Passing the parameter from a sequence - elegant and efficient for the requirement you have...
by JoshGeorge
Thu Sep 20, 2007 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Input Stage Problem
Replies: 12
Views: 4392

Refer THIS link for a small example to understand the concept
by JoshGeorge
Tue Sep 18, 2007 10:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringDecode
Replies: 3
Views: 1350

Code: Select all


OutputCol = lookup_string_from_int16[{default_string ='UNKNOWN'} ( 'APR'=1; 'MAY'=2; 'JUN'=3; 'JUL'=4;) ] (InputCol)

by JoshGeorge
Tue Sep 18, 2007 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Spaces getting added to the data from Oracle enterprise stag
Replies: 9
Views: 1942

Re: Spaces getting added to the data from Oracle enterprise

That confirms this is not expected as you have defined the column as VARCHAR(10) and not CHAR(10). Confirm the same on Oracle side.

Minhajuddin wrote: e.g. If I retrieve a column emp_name varchar(10) with value 'John'
The oracle stage is retrieving it as 'John '

Is this expected?
by JoshGeorge
Tue Sep 18, 2007 7:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Spaces getting added to the data from Oracle enterprise stag
Replies: 9
Views: 1942

I don't think this is expected :) You might want to see this on the database side and make sure that data is stored in this way in the source/lookup itself or in the schema it is defined as char and not varchar.