Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
Anyone happen to know, offhand, how I can check to see if any table in MySQL has been altered? This is MySQL 4.1.15. Obviously "SELECT count(*)
Google's given me no love on this problem.
Are you using InnoDB? (Score:1)
In which case I think you're stuffed since AFAIK this bug [mysql.com] is still open.
Add some triggers and doing it yourself would seem to be the obvious solution :-(
Re: (Score:2)
Can't use triggers with this version of MySQL (as I'm sure you're aware). However, even though the tables are MyISAM, the Update_time is not being set for me which is why 'SHOW STATUS' seems virtually useless.
(God I hate MySQL)
logs? (Score:2)
mysqldwith--log-updateto capture any SQL statements that update data as described in the fine manual [mysql.com].Calculating Mysql table checksums (Score:1)
http://dev.mysql.com/doc/refman/5.0/en/checksum-table.html [mysql.com]
Check out this dude's elegant solution:
http://www.xaprb.com/blog/2007/01/25/how-to-calculate-table-checksums-in-mysql/ [xaprb.com]
There's more than 9 ways to do it
Triggers (Score:2)
mtime (Score:2)