Search found 14 matches

by satyasur
Mon Jul 05, 2010 4:53 am
Forum: General
Topic: [IBM][CLI Driver] CLI0182W Fractional truncation. SQLSTATE
Replies: 4
Views: 5195

ArndW wrote:The important part is visible. Perform an explicit truncation or rounding if you wish to get rid of the warning, or write to a column that supports decimals.
Thank you for the pointer :)
will try it.
by satyasur
Mon Jul 05, 2010 3:52 am
Forum: General
Topic: [IBM][CLI Driver] CLI0182W Fractional truncation. SQLSTATE
Replies: 4
Views: 5195

ArndW wrote:If you target column is an integer then, as you suspected, the real number passed to it gets truncated. If you cannot make the target field contain decimals then I would explicitly perform the real -& ...
hmmmm not being a premium member hurts :(

lost the crux. :cry:
by satyasur
Mon Jul 05, 2010 3:17 am
Forum: General
Topic: [IBM][CLI Driver] CLI0182W Fractional truncation. SQLSTATE
Replies: 4
Views: 5195

[IBM][CLI Driver] CLI0182W Fractional truncation. SQLSTATE

Hello all, I am facing the following issue with one of my jobs: [IBM][CLI Driver] CLI0182W Fractional truncation. SQLSTATE In the job there ia a column which is generated by multiplication of an integer coulmn(int 10) and a decimal (decimal 13)column in the source sql. The result is stored in an int...
by satyasur
Tue Mar 25, 2008 6:29 am
Forum: Data Integration
Topic: handling DELETES in DW.
Replies: 5
Views: 22726

There are many different kinds of CDC (change data capture). Ideally the database itself will maintain a log of deleted records, perhaps via a trigger or through the application itself, and you can l ... well yes I have come across an article which says that one of the efficient methods to do CDC i...
by satyasur
Tue Mar 25, 2008 5:40 am
Forum: Data Integration
Topic: handling DELETES in DW.
Replies: 5
Views: 22726

hello Ray sir, Thanks for the motivation :) I was interested in knowing the first part : detecting the deleted rows. I had come across CDC as a viable method. So wanted to know more about it. any place you can point out where I can find some related reading about its implementation? Best regards, Sa...
by satyasur
Tue Mar 25, 2008 4:14 am
Forum: Data Integration
Topic: handling DELETES in DW.
Replies: 5
Views: 22726

@ madhav

hello sir, I have mentioned that we do not intend to actually delete the records. We plan to mark records with a flag, say 'D' for deleted. we have huge tables with millions of rows in them. so we cannot afford to load them every time. so we are looking at CDC kind of an approach. we have a constrai...
by satyasur
Mon Oct 29, 2007 11:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance issue with incremental load CRC job.
Replies: 7
Views: 4752

Hello vmcburney, You could try multiple instance jobs. In a transformer partition your data on the natural key using a Transformer across multiple instances. Split your large hash files to match those partitions. F ... Hey this sounds intresting!!!!!!!! But to implement this we need to divide our da...
by satyasur
Mon Oct 29, 2007 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance issue with incremental load CRC job.
Replies: 7
Views: 4752

Hello vcmburney, There is a change data capture solution for Server Jobs using the CRC32 function that has been discussed in a lot of threads. It is very fast and not difficult to build but there has been ongoing deb ... We have already implemented CRC32 for CDD. We are facing performance issues bec...
by satyasur
Mon Oct 29, 2007 12:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance issue with incremental load CRC job.
Replies: 7
Views: 4752

here is some more information...

Hello ray, We have no idea what your job design is Our job is designed like this: source---->row merge---->CRC--->Transformer----->rowsplit---->Tatget. We do the CRC hash lookup in the transformer stage identifying the new rows. Further we have used tow paths to load inserts and updates into the tar...
by satyasur
Sun Oct 28, 2007 10:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance issue with incremental load CRC job.
Replies: 7
Views: 4752

performance issue with incremental load CRC job.

Hello all, I am facing a performance issue with one of our CRC based jobs. its taking 10 hours to load. Our source has 15 mil rows.We cannot do the Change Data Capture with the timestamp because there is'nt a time stamp field which tracks changed rows. We have changed the hash file to 64 bit to acco...
by satyasur
Mon Jul 30, 2007 1:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target Load strategy
Replies: 12
Views: 6766

you can try this sir

If your source has a ROWlastupdated timestamp column then you can try the following: store the job last run time in a shared container. In the job use the selection tab to query row.LASTUPD_DTTM>%DateTimeIn('#LastModifiedDateTime#') this would only pic up new or updated rows since last run. (would s...
by satyasur
Thu Jan 11, 2007 3:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MIGRATION OF HASH FILES from one project to another
Replies: 6
Views: 4860

thanks guies :)
will look into that too.
by satyasur
Wed Jan 10, 2007 10:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MIGRATION OF HASH FILES from one project to another
Replies: 6
Views: 4860

Hello Ray, Welcome aboard. :D 1> Yes and yes 2> Yes*** 3> No - must be one by one A>as mentioned in the second point could you please tell us what would be the other methods to do the same? B>for the third one i thought i would simplyfy the process(kind of automate it) by reading a sequential file w...
by satyasur
Wed Jan 10, 2007 3:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MIGRATION OF HASH FILES from one project to another
Replies: 6
Views: 4860

MIGRATION OF HASH FILES from one project to another

hello all, I am trying to move some of the hashed files from one project to a new one by copying the hash files folder from the project directory and then pasting it into the new project directory on my machine. after that i set pointers to them in the new project by the SETFILE command.Then if i ru...