<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - Backup</title>
        <description>Forum for MySQL Backup.</description>
        <link>https://forums.mysql.com/list.php?28</link>
        <lastBuildDate>Mon, 09 Mar 2026 02:19:20 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?28,741232,741232#msg-741232</guid>
            <title>Restore mysql cluster 8.0.42 to another mysql cluster 8.0.42 (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,741232,741232#msg-741232</link>
            <description><![CDATA[ Hi,<br />
I have the following question. <br />
We are using mysqlbackup for making backups of our mysql innodb clusters running version 8.0.42. Restores of the backups is working fine as long the restores are taking place in the original mysql cluster.<br />
<br />
Question:<br />
Is it possible to restore some or all  databases backed up with mysqlbackup to another mysql innodb cluster (clean installation without new created databases but with other dbdata and dbrouter servers) with the same mysql cluster version?<br />
<br />
When restoring, the datadir need to be empty and after a restore information of the other cluster is restored as well like the group replication nodes and router information.<br />
<br />
Thanks in advance.]]></description>
            <dc:creator>Richard vd Hulst</dc:creator>
            <category>Backup</category>
            <pubDate>Mon, 22 Sep 2025 10:31:49 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,741095,741095#msg-741095</guid>
            <title>MySQLdump - Ver 10.13 Distrib 5.7.31 - possible bug ? (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,741095,741095#msg-741095</link>
            <description><![CDATA[ Hi everyone,<br />
<br />
I&#039;m experiencing an unexpected issue with mysqldump after granting SHOW VIEW privileges to our backup user. Hoping someone can help clarify if this is expected behavior or a potential bug.<br />
<br />
Background<br />
<br />
We have MySQL 5.7 with InnoDB Cluster configured. Our backup script has been running successfully for years using a dedicated backup user with SELECT, PROCESS, EVENT and LOCK TABLES privileges.<br />
<br />
What happened : <br />
<br />
Last Friday, we created a view and needed to grant SHOW VIEW privilege to our backup user for it to work. After adding this privilege, our backup started failing with:<br />
<br />
<br />
mysqldump: Couldn&#039;t execute &#039;show fields from `async_cluster_members`&#039;: <br />
SELECT command denied to user &#039;xxxxx&#039;@&#039;xxxxx&#039; for table &#039;async_cluster_members&#039; (1142)<br />
<br />
Before granting SHOW VIEW, mysqldump was working fine and completely ignoring the mysql_innodb_cluster_metadata schema (which has existed since 2020). After adding SHOW VIEW, mysqldump suddenly started trying to access tables in this schema.<br />
<br />
<br />
We&#039;re using: mysqldump flags : --all-databases --single-transaction --flush-privileges --hex-blob --triggers --routines --events --set-gtid-purged=AUTO<br />
<br />
<br />
Evidence:<br />
Previous backups contain NO CREATE DATABASE statement for mysql_innodb_cluster_metadata<br />
Previous backups only show permission references to this schema in mysql.db table<br />
After SHOW VIEW: mysqldump attempts to dump the actual cluster metadata tables<br />
<br />
<br />
Is this expected behavior? The documentation for SHOW VIEW doesn&#039;t mention any impact on schema enumeration.<br />
Does --all-databases combined with SHOW VIEW change how mysqldump discovers schemas?<br />
Should SHOW VIEW affect which databases mysqldump attempts to process?<br />
<br />
<br />
Thanks for any insights!<br />
<br />
jdelgado]]></description>
            <dc:creator>Jesús Delgado Ramírez</dc:creator>
            <category>Backup</category>
            <pubDate>Tue, 19 Aug 2025 08:49:44 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,725126,725126#msg-725126</guid>
            <title>Is it necessary to backup redo log archive files when using oracle enterpise ? (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,725126,725126#msg-725126</link>
            <description><![CDATA[ Yes, I saw the article,<a href="https://lefred.be/content/mysql-innodb-redo-log-archiving/"  rel="nofollow">https://lefred.be/content/mysql-innodb-redo-log-archiving/</a><br />
<br />
When I using oracle enterpise backup, I saw many binlogs been backuped. So, I think we could use mysqlbinlog to backup binlogs on schedule.  Maybe there is not necessary to backup  redo log archive files.<br />
<br />
We could use binlogs to recover data into point in time, but how can we do with backuped redo log archive files ?]]></description>
            <dc:creator>lei liu</dc:creator>
            <category>Backup</category>
            <pubDate>Sun, 14 Jul 2024 13:12:07 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,723167,723167#msg-723167</guid>
            <title>How To Use mysqldump in a Docker Container Using Volumes (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,723167,723167#msg-723167</link>
            <description><![CDATA[ Hi and thanks in advance,<br />
<br />
I am trying to use mysqldump to backup the data in a MySQL docker container. I was following the docs here: <a href="https://dev.mysql.com/doc/refman/8.0/en/docker-mysql-more-topics.html#docker-mysqldump"  rel="nofollow">https://dev.mysql.com/doc/refman/8.0/en/docker-mysql-more-topics.html#docker-mysqldump</a><br />
<br />
I can&#039;t copy the instructions exactly because my docker container has its data in a volume (rather than a bind) mount. However I could not see why this would make any difference. I am running two docker containers using docker compose, with the following docker compose file (with irrelevant info removed):<br />
<br />
```services:<br />
  mysql:<br />
    image: &#039;mysql:8.2.0&#039;<br />
    environment:<br />
      MYSQL_DATABASE: &#039;myDb&#039;<br />
      MYSQL_ROOT_PASSWORD: &#039;root&#039;<br />
    ports:<br />
      - &#039;3306&#039;<br />
    networks:<br />
      - net1<br />
    volumes:<br />
      - dataVol:/var/lib/mysql:rw<br />
<br />
  mysql-backup:<br />
    image: &#039;mysql:8.2.0&#039;<br />
    entrypoint: mysqldump -u root --password root --databases myDb --add-drop-database &gt; /path/to/backup.sql<br />
    environment:<br />
      MYSQL_ROOT_PASSWORD: &#039;root&#039;<br />
    networks:<br />
      - net1<br />
    ports:<br />
      - &#039;3307&#039;<br />
    volumes:<br />
      - dataVol:/var/lib/mysql:rw<br />
<br />
volumes:<br />
  dataVol:<br />
    driver: local<br />
<br />
networks:<br />
  net1:<br />
    driver: bridge<br />
```<br />
<br />
I first then ran (docker compose up) the mysql service (and it works correctly). But then when I run the backup job (docker compose run) I get the error:<br />
`[ERROR] [MY-012574] [InnoDB] Unable to lock ./ibdata1 error: 11`<br />
<br />
Upon a Google, this appears to occur when two MySQL instances are working with the same data directory which apparently we should never be doing. Eg the MySQL docs here suggest we shouldn&#039;t do this: <a href="https://dev.mysql.com/doc/refman/8.0/en/multiple-data-directories.html"  rel="nofollow">https://dev.mysql.com/doc/refman/8.0/en/multiple-data-directories.html</a><br />
<br />
So I am now confused because it seems that the MySQL docs are contradicting themselves... Or did I somehow do something different (by using a volume not a bind mount) that is causing my error?]]></description>
            <dc:creator>Ben Lydiard</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 07 Mar 2024 08:56:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,722928,722928#msg-722928</guid>
            <title>restore with mysqlbackup 8.0.26 problems (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,722928,722928#msg-722928</link>
            <description><![CDATA[ Hello everyone. Need help please. Backup from previous employer was made with mysqbackup 8.0.26 from enterprise supbscription (meb 8.0.26). Now I don&#039;t have this version and official site does not provide meb version 8.0.26 binary. Backup made with meb 8.0.26 doesn&#039;t work with further versions like mysqlbackup 8.0.36. What should i do? I can&#039;t create new backup, because our db was broken and I cant restore it with mysqlbackup 8.0.36 that is provided by official site.]]></description>
            <dc:creator>Tong Li</dc:creator>
            <category>Backup</category>
            <pubDate>Wed, 21 Feb 2024 10:29:31 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,710065,710065#msg-710065</guid>
            <title>How to copy a MySQL instance ? (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,710065,710065#msg-710065</link>
            <description><![CDATA[ How to copy a MySQL instance ?<br />
- <a href="https://blogs.oracle.com/mysql/post/how-to-copy-a-mysql-instance"  rel="nofollow">https://blogs.oracle.com/mysql/post/how-to-copy-a-mysql-instance</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 28 Sep 2023 22:24:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,710053,710053#msg-710053</guid>
            <title>Backup website&#039;s database via script on local ubuntu pc (1 reply)</title>
            <link>https://forums.mysql.com/read.php?28,710053,710053#msg-710053</link>
            <description><![CDATA[ Hello there,<br />
<br />
(how) is it possible to write a script for my local pc (ubuntu) which backups the databases of my extern website?<br />
<br />
I couldn&#039;t find anything on the internet that would help me...<br />
<br />
Thanks in advance!<br />
<br />
Daniel]]></description>
            <dc:creator>Daniel Sch</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 26 Oct 2023 02:11:06 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,709432,709432#msg-709432</guid>
            <title>Mysqldump Taking lot of time - Stored Procedures only (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,709432,709432#msg-709432</link>
            <description><![CDATA[ Anyone has any idea while taking mysqldump for stored procedure/routines, why Processlist shows &quot;show table status like XXXX(i.e. table_name)?<br />
<br />
Command Used :<br />
<br />
mysqldump -f -u root -p --no-tablespaces --protocol=socket -S /tmp/socketpath.sock --no-data --no-create-db --no-create-info --routines --triggers=false --single-transaction --quick --skip-lock-tables database_name &gt; databasename_routines.sql<br />
<br />
<br />
The number of routines is 4000+ , however whenever we try to take mysqldump of routines it is taking a humongous amount of time, and in the show processlist its doing &quot;show table status like .......&quot;]]></description>
            <dc:creator>Karnish Master</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 06 Jul 2023 13:05:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,709234,709234#msg-709234</guid>
            <title>Open ibdata1 (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,709234,709234#msg-709234</link>
            <description><![CDATA[ Hello<br />
First of all, excuse me. I am not a computer scientist and I do not speak English, I am using a translator.<br />
My question is, I have a copy of a database directory, with the files ibdata1, ib_logfile, etc.<br />
Can I open it and export it to Excel without needing to restore the copy? I have seen some software that does it but they are all paid.<br />
Thank you so much]]></description>
            <dc:creator>R a</dc:creator>
            <category>Backup</category>
            <pubDate>Wed, 14 Jun 2023 11:47:38 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,707454,707454#msg-707454</guid>
            <title>Is there any command to create a db copy from another db MySQL (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,707454,707454#msg-707454</link>
            <description><![CDATA[ is it possible to create a copy from another db using commant in mysql without using sql file<br />
<br />
I tried this command mysqldump -u username -p old_database | mysql -u username -p new_database mysqldump: Got error: 1045: Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: YES) when trying to connect<br />
<br />
ERROR 1045 (28000): Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: YES) lakhendrakushwah@LAKHENDRAs-MacBook-Air ~ % sudo -s Password: root@LAKHENDRAs-MacBook-Air ~ # mysqldump -u root -p lakha | mysql -u root -p testDB Enter password: Enter password: mysqldump: Got error: 1045: Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: YES) when trying to connect<br />
<br />
ERROR 1045 (28000): Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: YES) root@LAKHENDRAs-MacBook-Air ~ # mysqldump -u root -p lakha | mysql -u root -p testDB Enter password: Enter password: mysqldump: Got error: 1045: Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: YES) when trying to connect madhu@cool<br />
<br />
ERROR 1045 (28000): Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: YES)]]></description>
            <dc:creator>sesame technologies</dc:creator>
            <category>Backup</category>
            <pubDate>Wed, 08 Feb 2023 12:25:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,707148,707148#msg-707148</guid>
            <title>Backup from Third party tool Micro Focus (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,707148,707148#msg-707148</link>
            <description><![CDATA[ Hello,<br />
<br />
We newly build the 3 node innodb cluster. we have configured the backup tool (Micro Focus - Data protector).<br />
<br />
Mysql EE 8.0.31 with RHEL OS.<br />
<br />
If we take the backup from root user, getting below error.<br />
<br />
 230105 12:34:04 MAIN    ERROR: Cannot establish connection for user &#039;root&#039;<br />
    to mysql server at eiacdb1prd:3306. Connection open fails with error<br />
    &quot;Access denied for user &#039;root&#039;@&#039;eiacdb1prd&#039; (using password: YES)&quot;<br />
    230105 12:34:04 MAIN    ERROR: Connection initialization error.<br />
<br />
And I created separate user for backup and granted the needed privilege, if we use backupadmin user, getting below error,<br />
<br />
[Critical] From: INET@eiacdb1prd &quot;&quot;  Time: 1/5/2023 12:38:12 PM<br />
[70:2]     User &quot;backupadmin&quot; non-existent on this host =&gt; aborting<br />
<br />
 <br />
<br />
[Normal] From: <a href="mailto:&#66;&#83;&#77;&#64;&#120;&#120;&#120;&#120;&#120;&#120;&#46;&#121;&#121;&#46;&#122;&#122;&#122;&#46;&#97;&#101;">&#66;&#83;&#77;&#64;&#120;&#120;&#120;&#120;&#120;&#120;&#46;&#121;&#121;&#46;&#122;&#122;&#122;&#46;&#97;&#101;</a> &quot;MySQL-EIAC-TEst&quot;  Time: 1/5/2023 12:38:47 PM<br />
    OB2BAR application on &quot;eiacdb1prd&quot; disconnected.<br />
<br />
 <br />
<br />
[Critical] From: <a href="mailto:&#66;&#83;&#77;&#64;&#120;&#120;&#120;&#120;&#120;&#120;&#46;&#121;&#121;&#46;&#122;&#122;&#122;&#46;&#97;&#101;">&#66;&#83;&#77;&#64;&#120;&#120;&#120;&#120;&#120;&#120;&#46;&#121;&#121;&#46;&#122;&#122;&#122;&#46;&#97;&#101;</a> &quot;MySQL-EIAC-TEst&quot;  Time: 1/5/2023 12:38:47 PM<br />
    None of the Disk Agents completed successfully.<br />
    Session has failed.]]></description>
            <dc:creator>Haashir Mohamed</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 05 Jan 2023 08:50:27 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,706586,706586#msg-706586</guid>
            <title>Backup MYSQL database on windows (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,706586,706586#msg-706586</link>
            <description><![CDATA[ Hi All,<br />
<br />
I would like to get your suggestion to automate backup of MYSQL database.<br />
<br />
Overview: I have 40 databases migrated from MSSQL to MYSQL. Total size of all databases is about 60 GB. (single database maximum size is 9 GB). Per year the growth rate is very low overall 20 GB for all databases.<br />
<br />
<br />
Dev team require refresh database monthly from live to Development as well.<br />
Which backup method is best for my application. Percona xtrabackup (OR) mysqldump? (OR) configure slave and do backup?]]></description>
            <dc:creator>Raja MSSQL</dc:creator>
            <category>Backup</category>
            <pubDate>Fri, 28 Oct 2022 04:05:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,706258,706258#msg-706258</guid>
            <title>Getting error while restoring from back up file with Views, Triggers (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,706258,706258#msg-706258</link>
            <description><![CDATA[ I&#039;m took the backup of the Sakila database created in the azure cloud and it has some views and triggers as well. While trying to restore that database with other user (non root and with non super privilege&#039;s) but getting error on the definer statements as it is having the username that has took the backup in the backup file and other user is not having the access to execute those statements.]]></description>
            <dc:creator>Sagar Malpani</dc:creator>
            <category>Backup</category>
            <pubDate>Tue, 20 Sep 2022 05:42:12 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,706235,706235#msg-706235</guid>
            <title>Error on views after restore a backup (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,706235,706235#msg-706235</link>
            <description><![CDATA[ I am getting backups in the following way:<br />
mysqldump --user=$user --password=$password --skip-lock-tables --single-transaction --quick  $database &gt; $copia<br />
<br />
The problem occurs after restore a backup and with some views for example:<br />
<br />
select * from view_ac LIMIT 10;<br />
<br />
Error 1449 (HY000): The user specifed as definer (&#039;root&#039;@&#039;%&#039;) does not exist.<br />
<br />
To solve the problem I execute the following instructions:<br />
update user set host = &#039;%&#039; where user = &#039;root&#039; and host=&#039;localhost&#039;;<br />
flush privileges;<br />
<br />
But the problem is that instructions enable the remote connections and that is a problem for the the security of my database server.<br />
<br />
I have to tell that I have to restore 20 databases and I have a script that automatizes that task, so that is difficult to fix the problem in manual way.]]></description>
            <dc:creator>Alexander Ceballos</dc:creator>
            <category>Backup</category>
            <pubDate>Fri, 16 Sep 2022 23:56:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,706144,706144#msg-706144</guid>
            <title>How can we encrypt mysql backup file? we are using mysqldump for taking remote backup. (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,706144,706144#msg-706144</link>
            <description><![CDATA[ How can we encrypt mysql backup file? we are using mysqldump for taking remote backup.]]></description>
            <dc:creator>Md. Rafat Monjur</dc:creator>
            <category>Backup</category>
            <pubDate>Wed, 07 Sep 2022 05:05:03 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,705105,705105#msg-705105</guid>
            <title>MySQL InnoDB Redo Log Archiving (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,705105,705105#msg-705105</link>
            <description><![CDATA[ <a href="https://lefred.be/content/mysql-innodb-redo-log-archiving/"  rel="nofollow">https://lefred.be/content/mysql-innodb-redo-log-archiving/</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Backup</category>
            <pubDate>Wed, 29 Jun 2022 14:48:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,703465,703465#msg-703465</guid>
            <title>Backup and restore for views (3 replies)</title>
            <link>https://forums.mysql.com/read.php?28,703465,703465#msg-703465</link>
            <description><![CDATA[ I make extensive use of views in my database, more views than tables.<br />
No idea how the backup is handling views, but restore restores the views as tables, with data!<br />
This is not how it should work.<br />
A view is basically just a stored query, certainly not a table.<br />
<br />
Since it’s screwed up, how can I backup everything except views? Then I could restore just that.<br />
<br />
Easy enough to save just the view definitions separately, and then to restore, execute the view definitions after everything else.<br />
<br />
Please help. I have 267 tables and 467 views.]]></description>
            <dc:creator>Martie Henry</dc:creator>
            <category>Backup</category>
            <pubDate>Fri, 17 Jun 2022 02:36:13 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,703251,703251#msg-703251</guid>
            <title>MySQL 8.0: Logical Backups, Snapshots and PITR like a rockstar (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,703251,703251#msg-703251</link>
            <description><![CDATA[ MySQL 8.0: Logical Backups, Snapshots and PITR like a rockstar<br />
— video + slides:  <a href="https://fosdem.org/2022/schedule/event/mysql_pitr_rockstar/"  rel="nofollow">https://fosdem.org/2022/schedule/event/mysql_pitr_rockstar/</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 03 Mar 2022 22:05:44 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,703013,703013#msg-703013</guid>
            <title>About Enterprise backup/restore/replicate on Innodb cluster environment(s) (4 replies)</title>
            <link>https://forums.mysql.com/read.php?28,703013,703013#msg-703013</link>
            <description><![CDATA[ Hi, Team<br />
   We have one (community edition) MySQL innodb cluster, including one primary server and 2 slave servers. In the past one year, the system may hit IO issue about several times, and the IO issue cause innodb cluster down, sometimes 1 slave is down, while sometimes 2 slaves are down, or master is switched. The most serious situation we met is that, slave(s) could not recovered by restart mysql/group_replication process.  To cover it, we spent several hours, that is stop the whole environment first, and then<br />
1. Removing all binlogs from primary server<br />
2. copy all left files from primary server to other slave servers.<br />
3. Start previous primary server, and then run some sqls to let it run as primary again   <br />
4. start group_replication on slave nodes<br />
<br />
In our environment, the total size of datafiles is more than 200G. So step #2 takes very long time, more than 1 hour, or 2 hours, it depends on one or two slave nodes need to recover. <br />
<br />
In feture, we may setup another innodb cluster, lets say current one is env1, and the new one is called env2. We need to replicate these two environments. At first, we will copy the data from env2, and every one month, we need to sync the data from env1 to env2 again. The first direct solution is that we make a new  full copy from env1, stop env2, remove all files from env2, and copy all data to env2, start env2. But it will take more than 2 hours everytime, is not a good solution.<br />
<br />
We notice that MySQL enterprise edition supports incremental backup, and we wonder if it works with innodb cluster environment, and if yes, will it speed up the recover process on slave nodes, and the sync process between env1 and env2? Thanks]]></description>
            <dc:creator>Liang Cheng</dc:creator>
            <category>Backup</category>
            <pubDate>Tue, 05 Apr 2022 21:00:43 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,702988,702988#msg-702988</guid>
            <title>Diskspace Problem When Modifying a Large InnoDB Table in MySQL… and how to solve it ! (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,702988,702988#msg-702988</link>
            <description><![CDATA[ <a href="https://lefred.be/content/diskspace-problem-when-modifying-a-large-innodb-table-in-mysql-and-how-to-solve-it/"  rel="nofollow">https://lefred.be/content/diskspace-problem-when-modifying-a-large-innodb-table-in-mysql-and-how-to-solve-it/</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Backup</category>
            <pubDate>Tue, 15 Feb 2022 01:16:08 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,702701,702701#msg-702701</guid>
            <title>backup to tape not working for mysql enterprise when sbt library is built with openssl (1 reply)</title>
            <link>https://forums.mysql.com/read.php?28,702701,702701#msg-702701</link>
            <description><![CDATA[ Hi all,<br />
<br />
When sbt library, let&#039;s say backup.so(to provide --sbt-lib-path for mysqlbackup) is built with openssl(openssl 1.0.2u), I see problems in backup.so during execution. Basically openssl calls are failing in backup.so. The same not seen when mysql community edition is used as database server. This happens in mysql commercial version 8.x. Is there a known issue or have some pre-condition in building the Other-MMS.so or dll?<br />
<br />
problem seen with:<br />
------------------<br />
mysql-commercial-server-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-embedded-devel-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-common-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-test-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-client-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-libs-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-embedded-compat-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-devel-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-embedded-8.0.19-1.1.el7.x86_64<br />
mysql-commercial-libs-compat-8.0.19-1.1.el7.x86_64<br />
<br />
<br />
problem not seen:<br />
-----------------<br />
mysql-community-common-8.0.19-1.el8.x86_64<br />
grafana-mysql-6.3.6-1.el8.x86_64<br />
mysql-community-libs-8.0.19-1.el8.x86_64<br />
pcp-pmda-mysql-5.0.2-5.el8.x86_64<br />
mysql-commercial-backup-8.0.19-1.1.el6.x86_64<br />
mysql-community-server-8.0.19-1.el8.x86_64<br />
mysql-community-client-8.0.19-1.el8.x86_64<br />
<br />
<br />
any information will be helpful in solving the problem.<br />
<br />
Thanks,<br />
Naga]]></description>
            <dc:creator>Nagaraj K</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 03 Feb 2022 18:42:09 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,700365,700365#msg-700365</guid>
            <title>Is it possible to retrieve and restore data files from \Program Files\MySQL (1 reply)</title>
            <link>https://forums.mysql.com/read.php?28,700365,700365#msg-700365</link>
            <description><![CDATA[ Hello,<br />
<br />
I have two questions.  First, in a typical installation of MySQL on a Windows server, where are the database files stored?<br />
<br />
And second, if you had a Windows server with MySQL running on it, and the server crashed, and you were unable to log in to the server, would it be possible to retrieve the MySQL data file by transferring it from its original store location to a new server with MySQL installed on it?<br />
<br />
Thank you.]]></description>
            <dc:creator>It Manager</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 23 Dec 2021 16:55:31 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,700364,700364#msg-700364</guid>
            <title>Is it possible to retrieve and restore data files from \Program Files\MySQL (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,700364,700364#msg-700364</link>
            <description><![CDATA[ Hello,<br />
<br />
If you had a Windows server with MySQL running on it, and the server crashed, and you were unable to log in to the server, would it be possible to retrieve the MySQL data file by transferring it to a new server with MySQL installed on it?<br />
<br />
Thank you.]]></description>
            <dc:creator>It Manager</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 23 Dec 2021 13:55:01 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,698862,698862#msg-698862</guid>
            <title>mysqldump couldnt execute flash (1 reply)</title>
            <link>https://forums.mysql.com/read.php?28,698862,698862#msg-698862</link>
            <description><![CDATA[ Dear All,<br />
<br />
we are getting mysql backup error below. Currently we are using commvault bacup solution to take the backup<br />
<br />
please find below error message:<br />
<br />
Backup of [~pmqconsole~] MySQL database failed. The error message [~mysqldump: Couldn&#039;t execute &#039;FLUSH /*!40101 LOCAL */ TABLES&#039;: Lost connection to MySQL server during query(2013)~] is received during backup.<br />
<br />
<br />
appreciate for experts suggestions.<br />
<br />
Regards,<br />
Aashique]]></description>
            <dc:creator>Mohammad Aashraful aashique</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 16 Sep 2021 15:22:28 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,698827,698827#msg-698827</guid>
            <title>ERROR 2006 (HY000): MySQL server has gone away (1 reply)</title>
            <link>https://forums.mysql.com/read.php?28,698827,698827#msg-698827</link>
            <description><![CDATA[ Hello MySQL Admins!<br />
<br />
I have a 88MB dump (typo3 website) that I want to load into my MySQL 5.7 database.<br />
<br />
Unfortunately it fails with:<br />
ERROR 2006 (HY000): MySQL server has gone away<br />
<br />
I&#039;ve tried a couple of things around the max_allowed_packet and wait_timeout, see my conf.d/custom.cnf below.<br />
<br />
Does anyone know what else I could try now to finally load this dump?<br />
<br />
Thanks much,<br />
<br />
David<br />
<br />
<br />
<br />
-<br />
<br />
[mysqld]<br />
skip-host-cache<br />
skip-name-resolve<br />
character-set-server=utf8<br />
collation-server=utf8_unicode_ci<br />
default_storage_engine=InnoDB<br />
innodb_buffer_pool_instances=2<br />
innodb_buffer_pool_size=3G<br />
innodb_log_file_size=256M<br />
innodb_log_buffer_size=4M<br />
innodb_flush_log_at_trx_commit=2<br />
innodb_thread_concurrency=8<br />
key_buffer_size=16M<br />
max_allowed_packet=128M<br />
thread_stack=192K<br />
thread_cache_size=32<br />
query_cache_size=64M<br />
table_open_cache=5000<br />
table_definition_cache=800<br />
sql_mode=NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION<br />
slow_query_log=1<br />
slow_query_log_file=/var/log/mysql/mysql-slow.log<br />
default_time_zone=Europe/Zurich<br />
wait_timeout=300<br />
interactive_timeout = 300<br />
<br />
[mysql]<br />
default-character-set=utf8<br />
max_allowed_packet=128M<br />
<br />
[client]<br />
default-character-set=utf8<br />
max_allowed_packet=128M<br />
<br />
[mysqldump]<br />
default-character-set=utf8<br />
quick<br />
quote-names<br />
max_allowed_packet=128M<br />
default_time_zone=Europe/Zurich<br />
<br />
[mysqlimport]<br />
default-character-set=utf8<br />
default_time_zone=Europe/Zurich<br />
max_allowed_packet=128M]]></description>
            <dc:creator>David Ellenberger</dc:creator>
            <category>Backup</category>
            <pubDate>Tue, 14 Sep 2021 18:29:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,698669,698669#msg-698669</guid>
            <title>Point in time recovery (1 reply)</title>
            <link>https://forums.mysql.com/read.php?28,698669,698669#msg-698669</link>
            <description><![CDATA[ Hi,<br />
   I would like to know if the MySQL community edition supports point-in-time recovery option for DB restores. Currently mysqldump backups are configured but would like to explore the option of PITR if available in community edition<br />
<br />
Thanks<br />
Var]]></description>
            <dc:creator>Var able</dc:creator>
            <category>Backup</category>
            <pubDate>Tue, 07 Sep 2021 14:46:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,698330,698330#msg-698330</guid>
            <title>MySQLDump Restore dead slow (1 reply)</title>
            <link>https://forums.mysql.com/read.php?28,698330,698330#msg-698330</link>
            <description><![CDATA[ I need to do backups of 5 InnoDB databases (5.7 on Windows) and restore them on another server. When I use MySQLDump (or software such as Workbench or SQLBackupandFTP which use MySQLDump), the backup takes 25 minutes but the restore takes several days. This is not practical.<br />
One of the tables involved has 70 million rows and takes up about 10GB. It has one primary key and four other columns (int,datetime,double,double) each one of which has a non-unique index.<br />
I assume that it is the setting of these indexes after each insert that makes the restore so slow but I might be wrong. Maybe MySQLDump is the wrong approach altogether. Anyway this needs to be solved - ideally, the restore should take a few hours at most so I can automatize the backup/restore to run every day. Ideas anyone?]]></description>
            <dc:creator>Michael Peters</dc:creator>
            <category>Backup</category>
            <pubDate>Tue, 07 Sep 2021 15:15:17 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,697998,697998#msg-697998</guid>
            <title>MySQL Database Service:  Snapshots for Backup/Restore (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,697998,697998#msg-697998</link>
            <description><![CDATA[ MySQL Database Service:  Snapshots for Backup/Restore<br />
— <a href="https://blogs.oracle.com/mysql/mysql-database-service%3a-snapshot-your-data-backups"  rel="nofollow">https://blogs.oracle.com/mysql/mysql-database-service%3a-snapshot-your-data-backups</a><br />
— <a href="https://blogs.oracle.com/mysql/mysql-database-service%3a-snapshot-your-data-%e2%80%93-restore"  rel="nofollow">https://blogs.oracle.com/mysql/mysql-database-service%3a-snapshot-your-data-%e2%80%93-restore</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 05 Aug 2021 16:18:41 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,697858,697858#msg-697858</guid>
            <title>MySQL shell: the best tool for your logical backups (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,697858,697858#msg-697858</link>
            <description><![CDATA[ <a href="https://dev.to/nejremeslnici/mysql-shell-the-best-tool-for-your-logical-backups-44fk"  rel="nofollow">https://dev.to/nejremeslnici/mysql-shell-the-best-tool-for-your-logical-backups-44fk</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Backup</category>
            <pubDate>Thu, 29 Jul 2021 01:29:58 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?28,697853,697853#msg-697853</guid>
            <title>MySQL Shell Dump &amp; Load and Compression (no replies)</title>
            <link>https://forums.mysql.com/read.php?28,697853,697853#msg-697853</link>
            <description><![CDATA[ As you could notice, we started with 47GB and finished with 3GB of data, which is a compression of 93% !<br />
<br />
<a href="https://blogs.oracle.com/mysql/mysql-shell-dump-load-and-compression"  rel="nofollow">https://blogs.oracle.com/mysql/mysql-shell-dump-load-and-compression</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Backup</category>
            <pubDate>Wed, 28 Jul 2021 16:36:23 +0000</pubDate>
        </item>
    </channel>
</rss>
