in reply to Re: need to look for data differences in same table in two database instances
in thread need to look for data differences in same table in two database instances

Thank you all for the responses. I'm trying Roger's method 1. I'm getting Global symbol "%row" requires explicit package name at compare.pl line 242. Global symbol "%row2" requires explicit package name at compare.pl line 242. I think I can fix that if it was a plain old variable. Thank you
  • Comment on Re: Re: need to look for data differences in same table in two database instances

Replies are listed 'Best First'.
Re: Re: Re: need to look for data differences in same table in two database instances
by Anonymous Monk on Jan 09, 2004 at 20:44 UTC
    sorry that would be this line from Rogers Method 1 if ($row{$_} ne $row2{$_}) {
      My mistake. ;-)

      Should be if ($row->{$_} ne $row2->{$_}) {