Mysql commands

From RAJ INFO
Revision as of 18:49, 3 January 2010 by Raj (talk | contribs)
Jump to navigation Jump to search
  • GetInto from Shell
$ mysql -u $usr -p -h $host $db


  • GetDump
$ mysqldump -u $usr -p -h $host $db >$outfile 
  • RestoreDump
$ mysql -u $usr -p -h $host $db <$outfile