You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by Apache Wiki <wi...@apache.org> on 2006/06/01 10:16:51 UTC

[Db-derby Wiki] Update of "RaminMoazeni/DailyNotes" by RaminMoazeni

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Db-derby Wiki" for change notification.

The following page has been changed by RaminMoazeni:
http://wiki.apache.org/db-derby/RaminMoazeni/DailyNotes

------------------------------------------------------------------------------
  
  I also looked into the dump utility provided by the MySQL database: "mysqldump". This dump utility is a backup program that can be used to dump a database or a collection of databases for backup or for transferring the data. The dump contains SQL statements to create the table or populate it, or both. An example of a dump output is shown below:
  
- -- MySQL dump 10.10
+ {{{ -- MySQL dump 10.10
  -- 
  -- Host: localhost    Database: testDB
  -- ------------------------------------------------------
@@ -60, +60 @@

  /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
- /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
+ /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; }}}
  
  The following command is used to create the above dump: