Generate CREATE statements for all MySql Tables
mysqldump -h localhost -u root -p --no-data --compact some_db
mysqldump -d --compact --compatible=mysql323 ${dbname}|egrep -v "(^SET|^/\*\!)"
How do I use mysqldump to export only the CREATE TABLE commands