You are not logged in.
Announcement
Unanswered posts
|
Pages: 1

Hello,
I'm trying to compare two tables in two different instances of oracle by extracting them into text files and then compare the resulting text files.
My problem is that even if there is only one different row the tFileCompare component shows a message for all row as soon as it detects any difference.
Is there any way to show a message only for the different rows ?
Offline

Maybe you should not use this kind of link between the tOracleOutputBulk and the tFileCompare. Try a trigger link "on component ok" or "on subjob ok".
You have plenty of errors because it loops on every row.
For example if your file is like :
1;aaa
2;bbb
3;ccc
4;ddd
It will first compare it to 1;aaa
Then to 1;aaa
2;bbb
Then to 1;aaa
2;bbb
3;ccc
And at last it will do the right comparison
Hope i'm not putting you on the wrong track.
Offline
Pages: 1