====== Scripts ======

=== describe all tables ===
<code>mysql -uroot -pjwars jwars < countallmstables.sql > ms.txt
select * from information_schema.columns where table_schema = 'jwars';</code>

=== restore from database dump ===
<code>mysql -uroot -pjwars jwars < jwars.sql</code>

=== restore a  tablefrom database dump ===
<code>name.sql must match the name of the table to be imported
mysql -uroot -pjwars jwars < scenario.sql</code>