~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/clients/drizzledump.rst

  • Committer: Mark Atwood
  • Date: 2011-03-08 03:47:42 UTC
  • mto: (2227.1.4 build)
  • mto: This revision was merged to the branch mainline in revision 2228.
  • Revision ID: me@mark.atwood.name-20110308034742-1wkdoq6yrdysqcua
documentation work

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
:program:`drizzledump` is used for backing up and
17
17
restoring logical backups of a Drizzle database, as well as for migrating
18
 
from *MySQL*. 
 
18
from a more traditional *MySQL* server. 
19
19
 
20
 
When connecting to a Drizzle server it will do a plain dump of the server.  It
21
 
will, however, automatically detect when it is connected to a *MySQL* server and
22
 
will convert the tables and data into a Drizzle compatible format.
 
20
When connecting to a Drizzle server it will do a plain dump of the server.
 
21
When connecting to a MySQL server, it will automatically detect this, and
 
22
will convert the dump of the tables and data into a Drizzle compatible format.
23
23
 
24
24
Any binary data in tables will be converted into hexadecimal output so that it
25
25
does not corrupt the dump file.
41
41
 
42
42
.. option:: --force, -f
43
43
 
44
 
   Continue even if we get an sql-error.
 
44
   Continue even if a sql-error is received.
45
45
 
46
46
.. option:: --help, -?
47
47
 
96
96
        INSERT INTO `t1` VALUES (1,'hello');
97
97
        INSERT INTO `t1` VALUES (2,'world');
98
98
 
 
99
   This is useful for calculating and storing diffs of dump files.
 
100
 
99
101
.. option:: --skip-dump-date
100
102
 
101
103
   Do not display the date/time at the end of the dump.
149
151
 
150
152
.. option:: --no-data, -d
151
153
 
152
 
   Do not dump the data itself, used to dump the schemas only.
 
154
   Do not dump the data itself. Used to dump the schemas only.
153
155
 
154
156
.. option:: --replace
155
157