vote up 4 vote down star
2

I want to copy a live production database into my local development database. Is there a way to do this without locking the production database?

I'm currently using:

mysqldump -u root --password=xxx -h xxx my_db1 | mysql -u root --password=xxx -h localhost my_db1

But it's locking each table as it runs.

flag

74% accept rate

5 Answers

vote up 5 vote down check

Does the --no-lock-tables option work?

According to the man page, if you are dumping InnoDB tables you can use the --single-transaction option:

--lock-tables, -l

Lock all tables before dumping them. The tables are locked with READ
LOCAL to allow concurrent inserts in the case of MyISAM tables. For
transactional tables such as InnoDB and BDB, --single-transaction is
a much better option, because it does not need to lock the tables at
all.
link|flag
1  
--no-lock-tables does not seem to work. Instead, as noted below, one could use --lock-tables=false – Brian Phillips Oct 13 at 18:37
vote up 3 vote down

Honestly, I would setup replication for this, as if you don't lock tables you will get inconsistent data out of the dump.

If the dump takes longer time, tables which were already dumped might have changed along with some table which is only about to be dumped.

So either lock the tables or use replication.

link|flag
This whole DB is almost entirely read only so I'm not too worried about it changing. – Greg Sep 19 '08 at 20:12
vote up 2 vote down

The answer varies depending on what storage engine you're using. The ideal scenario is if you're using InnoDB. In that case you can use the --single-transaction flag, which will give you a coherent snapshot of the database at the time that the dump begins.

link|flag
vote up 1 vote down

I'm all innoDB. --single-transaction works perfectly, thanks so much!

link|flag
vote up 5 vote down

This is ages too late, but good for anyone that is searching the topic. If you're not innoDB, and you're not worried about locking while you dump simply use the option:

--lock-tables=false
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.