Search found 243 matches

by gssr
Fri Jun 11, 2010 5:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter for field warning while reading sequential file
Replies: 16
Views: 24305

Re: Delimiter for field warning while reading sequential fil

HI I am getting many warnings while running my job for seq. file stage Measure_code,0: Delimiter for field "ZZPA_M001_RKF008" not found; input: {G _ A V}, at offset: 153 [impexp/group_comp.C:5775] I have checked in my file delimiter is present for field value. Any suggestion how to remove...
by gssr
Wed Jun 02, 2010 12:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: handling invalid data in dataset
Replies: 9
Views: 4461

Re: handling invalid data in dataset

Hi gurus, I need a suggestion or solution in a design for which Source is a data set and target is Oracle. The meta data of dataset and the Oracle table is same. When the dataset is being created with any invalid data to the corresponding data type, some ****** values are assigned to them. Now, bef...
by gssr
Tue Jun 01, 2010 2:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I process squential files in date order?
Replies: 10
Views: 2847

Then.......
Can you give detail about the job structure, source ,transformation (if any), Target database..

Do you want to load all the three files into one table, If yes u can use file pattern!!
by gssr
Tue Jun 01, 2010 1:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I process squential files in date order?
Replies: 10
Views: 2847

Re: Job designe

devesh_ssingh wrote: i have to form a loop through which oldest file should come first, then newest and recent.


Regards,
Devesh
What exactly you are doing with the files, just moving or extracting ???
by gssr
Fri May 28, 2010 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: in which format the ctrl+m team get the jobs
Replies: 5
Views: 2077

The jobs are not moved anywhere!! A script should be sheduled in the ControlM ,which calls the datastage jobs
by gssr
Thu May 27, 2010 3:28 am
Forum: General
Topic: Identify the duplicates
Replies: 3
Views: 1466

Use Aggregate stage to count rows on key column,
In Transformer ,if it is graeter than one ,load it error table else in the table you required
by gssr
Thu May 27, 2010 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what function to use for replacing string?
Replies: 5
Views: 2638

Post the syntax you used for the function, Also post the output you are getting!
by gssr
Thu May 27, 2010 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to update null to zero
Replies: 7
Views: 4814

I deployed two jobs,
One to update the Oracle table from Netezza Table
second to update null value to zero in Oracle table

I am working around with some more option..... to do it in one job
8)
by gssr
Wed May 26, 2010 1:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to update null to zero
Replies: 7
Views: 4814

I'm not clear on the mapping, but consider using Oracle left outer join to netezza and NullToZero(value from netezza). lets consider Table Tab_A, ID COL_A 1 199 2 299 3 399 Table Tab_B ID COL_B 1 NULL 2 NULL 3 NULL 4 NULL ... Need to update the table Tab_B from Tab_A, Tab_B should be, ID COL_B 1 19...
by gssr
Wed May 26, 2010 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to update null to zero
Replies: 7
Views: 4814

Need to update null to zero

HI, My requirement is to update a COLUMN in oracle table from the value from netezza table. The job is running fine and updates the value with respective id. If an id is not in my netezza table , the column was left as null value. Now i need to update values if the id is present in source else need ...
by gssr
Tue May 25, 2010 1:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Want to suppress warnings for a job.
Replies: 5
Views: 3780

Re: Want to suppress warnings for a job.

videsh77 wrote:

How can I be able to get rid of these warnings, with the identification of from which stage it has originated ?
Set APT_DISABLE_COMBINATION to True

Set Warning limit to No limit while running the job.,else you can use message handler!
by gssr
Mon May 24, 2010 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in loading Integer Datatype data
Replies: 5
Views: 2031

Is that column is your last column?? Check the record delimiter!
by gssr
Mon May 24, 2010 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job throws fatal error but does not Abort
Replies: 8
Views: 2516

Set APT_DISABLE_COMBINATION to true and try to figure out which stage is causing error
by gssr
Mon May 17, 2010 5:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sum of a column in between two limits
Replies: 6
Views: 2093

I don't see how having them in different database makes it an ETL requirement. If the result will be presented in a report, it is still a reporting requirement. You can use dblinks in Database l ... Need to query it and load it to DW table.. To make the situation simple and understandable , i didno...
by gssr
Mon May 17, 2010 4:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sum of a column in between two limits
Replies: 6
Views: 2093

ray.wurlod wrote:You don't need DataStage to do that. It's straightforward DML.

DataStage is an ETL tool, not a reporting tool!
:twisted: ...
The tables are from different database!!