Dominik Klein wrote:
Hi everyone

I'm wondering about the "--single-transaction" option on mysqldump. Documentation says
---
This option issues a BEGIN SQL statement before dumping data from the server. ...
---
So does this include the entire dump in one transaction? Or is it one transaction per database (or even table?)?

I could not find an answer to this in the documentation.

The easiest way to find out?

create database blah;
create table blah1(id int);
create table blah2(id int);

see what mysqldump --single-transaction does and post a comment on the mysqldump page :)

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to