Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to make a hash / signature of MySQL database schema (without data), in order to have a checksum of it, to ensure it is not modified by others.

How can I achieve it ?

share|improve this question

1 Answer

up vote 2 down vote accepted

You need table checksum as far as I understand your question:

checksum table `table`

so, just make a checksum of an empty table, I guess

share|improve this answer
how about the whole schema ( all tables )? – Shivan Raptor Oct 11 '12 at 3:56
I doubt you can get a checksum of a whole database using one command. So, I'd go with collecting all checksums of all tables in a database, then concatenating it together and evaluating md5 of this string. – Nemoden Oct 11 '12 at 4:04
okay, understand it can't be done in a simple way. However, the CHECKSUM TABLE query will also include data in the table to calculate the checksum. Is there any method to exclude the data? – Shivan Raptor Oct 12 '12 at 3:01
1  
Yes, it includes data. You need a copy of an empty table. What I'd do is mysqldump -d database - this will dump a whole database, then create test database, create all tables (they will be empty because of -d flag - --no-data) and do checksums. And yes, I don't think there is a simple way to do what you want. – Nemoden Oct 12 '12 at 5:52
2  
Hmmm... i didn't think of it :) This approach is okay, but mysqldump includes information about it's version and version onf mysql server. If you upgrade/downgrade mysql server or mysql client (this will cause upgrade/downgrade of mysqldump), your resulting file's signature will, obviously, differ although schema is not changed. To avoid this, use --compact option of mysqldump like so: mysqldump --compact -u root --password=root --host=127.0.0.1 test | md5sum. – Nemoden Oct 12 '12 at 6:37
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.