Bug #33762 | mysqldump can not dump INFORMATION_SCHEMA | ||
---|---|---|---|
Submitted: | 9 Jan 2008 11:46 | Modified: | 11 Dec 2009 21:17 |
Reporter: | Philip Stoev | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: mysqldump Command-line Client | Severity: | S2 (Serious) |
Version: | 6.0.4-p3, 5.0, 5.1 BK | OS: | Any |
Assigned to: | Jim Winstead | CPU Architecture: | Any |
[9 Jan 2008 11:46]
Philip Stoev
[9 Jan 2008 11:59]
Philip Stoev
information_schema dump for bug33634
Attachment: bug33634-i_s.dump.gz (application/x-gzip, text), 15.31 KiB.
[9 Jan 2008 11:59]
Philip Stoev
Please disregard last attachment.
[19 Jan 2008 18:18]
Philip Stoev
I am setting this bug to open because regardless of the fix for bug #21295, dumping the INFORMATION_SCHEMA database should be possible if INFORMATION_SCHEMA is explicitly specified in the command line.
[23 Jan 2008 12:40]
Sveta Smirnova
Thank you for the report. Verified as described.
[1 May 2008 21:30]
Jim Winstead
There's no real reason to prevent INFORMATION_SCHEMA from being explicitly dumped, but there's certainly no reason to dump it when all databases are being dumped. Bug #21527 was related, because we need to avoid trying to lock the INFORMATION_SCHEMA tables.
[1 May 2008 21:31]
Jim Winstead
Allow INFORMATION_SCHEMA to be dumped using mysqldump
Attachment: bug33762.patch (text/plain), 4.29 KiB.
[12 May 2009 17:39]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/73851 2893 Jim Winstead 2009-05-12 mysqldump would not dump the INFORMATION_SCHEMA even when it was explicitly requested. (Bug #33762) modified: client/mysqldump.c mysql-test/r/mysqldump.result mysql-test/t/mysqldump.test
[12 May 2009 18:14]
Paul DuBois
"[9 Jan 2008 14:19] Miguel Solorzano Please see bug http://bugs.mysql.com/bug.php?id=21295 why the backup of INFORMATION_SCHEMA was disable when doing a backup, however I tried to find in our Manual about and didn't find, so maybe a Doc bug?. Thanks in advance." I don't know what you didn't find, but the behavior that this bug purports to fix is as documented. http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html says: "mysqldump does not dump the INFORMATION_SCHEMA database. If you name that database explicitly on the command line, mysqldump silently ignores it."
[13 Jul 2009 19:41]
Jim Winstead
Pushed to 5.1-bugteam and mysql-pe.
[4 Aug 2009 19:50]
Bugs System
Pushed into 5.4.4-alpha (revid:alik@sun.com-20090804194615-h40sa098mx4z49qg) (version source revid:jimw@mysql.com-20090713193847-xj6gbgm2a1zwwanv) (merge vers: 5.4.4-alpha) (pib:11)
[4 Aug 2009 20:45]
Bugs System
Pushed into 5.1.38 (revid:davi.arnaut@sun.com-20090804204317-ggodqkik7de6nfpz) (version source revid:davi.arnaut@sun.com-20090804204317-ggodqkik7de6nfpz) (merge vers: 5.1.38) (pib:11)
[10 Aug 2009 13:23]
Paul DuBois
There are still some problems here, I think. The test case uses this command: --exec $MYSQL_DUMP --compact --opt -d information_schema tables I did my own test and found that "mysqldump --no-data information_schema tables" works on Mac OS X with the table name in any lettercase, but on Linux, I had to give the table name as TABLES. (Even though that is normally not true for references to I_S tables on Linux.) Also, attempting to dump the entire database by not naming a table produces an error: mysqldump --no-data information_schema mysqldump: Got error: 1044: Access denied for user 'paul'@'localhost' to database 'information_schema' when using LOCK TABLES
[1 Oct 2009 5:59]
Bugs System
Pushed into 5.1.39-ndb-6.3.28 (revid:jonas@mysql.com-20091001055605-ap2kiaarr7p40mmv) (version source revid:jonas@mysql.com-20091001055605-ap2kiaarr7p40mmv) (merge vers: 5.1.39-ndb-6.3.28) (pib:11)
[1 Oct 2009 7:25]
Bugs System
Pushed into 5.1.39-ndb-7.0.9 (revid:jonas@mysql.com-20091001072547-kv17uu06hfjhgjay) (version source revid:jonas@mysql.com-20091001071652-irejtnumzbpsbgk2) (merge vers: 5.1.39-ndb-7.0.9) (pib:11)
[1 Oct 2009 13:25]
Bugs System
Pushed into 5.1.39-ndb-7.1.0 (revid:jonas@mysql.com-20091001123013-g9ob2tsyctpw6zs0) (version source revid:jonas@mysql.com-20091001123013-g9ob2tsyctpw6zs0) (merge vers: 5.1.39-ndb-7.1.0) (pib:11)
[5 Oct 2009 10:50]
Bugs System
Pushed into 5.1.39-ndb-6.2.19 (revid:jonas@mysql.com-20091005103850-dwij2dojwpvf5hi6) (version source revid:jonas@mysql.com-20090930185117-bhud4ek1y0hsj1nv) (merge vers: 5.1.39-ndb-6.2.19) (pib:11)
[11 Dec 2009 21:03]
Paul DuBois
The problems noted at [10 Aug 15:23] have been opened as a separate bug report: Bug#49633
[11 Dec 2009 21:17]
Paul DuBois
Noted in 5.1.38, 5.4.2, 5.5.0, 6.0.14 changelogs. Previously, mysqldump would not dump the INFORMATION_SCHEMA database and ignored it if it was named on the command line. Now, mysqldump will dump INFORMATION_SCHEMA if it is named on the command line. Currently, this requires that the --skip-lock-tables (or --skip-opt) option be given.
[24 Jun 2010 11:16]
Steven Hartland
After adding --skip-lock-tables to the options to mysqldump we now get the following error when requesting a backup of information_scheme explicity:- mysqldump: Couldn't execute 'SELECT /*!40001 SQL_NO_CACHE */ * FROM `INNODB_CMP_RESET`': Access denied; you need (at least one of) the PROCESS privilege(s) for this operation (1227) mysqldump version: mysql Ver 14.14 Distrib 5.1.47, for portbld-freebsd7.0 (amd64) using 5.2 mysql server version: mysql Ver 14.14 Distrib 5.5.4-m3, for portbld-freebsd8.1 (amd64) using 5.2
[8 Mar 2011 1:39]
Niyi Oshy
was this fixed?
[14 Dec 2011 8:50]
carlos leal
Add --no-tablespaces to solve the problem