<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums</title>
        <description></description>
        <link>https://forums.mysql.com/index.php</link>
        <lastBuildDate>Sun, 20 Sep 2026 12:30:54 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?98,742091,742091#msg-742091</guid>
            <title>Help with EXPLAIN (3 replies)</title>
            <link>https://forums.mysql.com/read.php?98,742091,742091#msg-742091</link>
            <description><![CDATA[ Hi there, <br />
<br />
I have a large complicated stored procedure that appears to be running quite slow. When I use the EXPLAIN keyword, I get the following feedback...<br />
<br />
<br />
id,select_type,table,type,possible_keys,key,key_len,ref,rows,Extra<br />
1,PRIMARY,&lt;derived2&gt;,ALL,NULL,NULL,NULL,NULL,4443,&quot;Using filesort&quot;<br />
2,DERIVED,salesledger,range,&quot;doctype,invoiceDate,paidinfulldate&quot;,paidinfulldate,4,NULL,4461,&quot;Using where; Using temporary; Using filesort&quot;<br />
2,DERIVED,receipts,ref,invNum,invNum,4,sst.salesledger.invNum,1,<br />
2,DERIVED,customers,ref,customerID,customerID,9,sst.salesledger.customerID,1,<br />
2,DERIVED,groups,ALL,NULL,NULL,NULL,NULL,19,<br />
2,DERIVED,users,ref,userID,userID,5,sst.salesledger.CCmanagerID,1,<br />
2,DERIVED,countries,ref,countryID,countryID,4,sst.salesledger.countryID,1,<br />
3,UNION,salesledger,range,&quot;doctype,invoiceDate,paidinfulldate&quot;,paidinfulldate,4,NULL,4461,&quot;Using where; Using temporary; Using filesort&quot;<br />
3,UNION,receipts,ref,paymentNo,paymentNo,4,sst.salesledger.paymentNo,1,<br />
3,UNION,customers,ref,customerID,customerID,9,sst.salesledger.customerID,1,<br />
3,UNION,groups,ALL,NULL,NULL,NULL,NULL,19,<br />
3,UNION,users,ref,userID,userID,5,sst.salesledger.CCmanagerID,1,<br />
3,UNION,countries,ref,countryID,countryID,4,sst.salesledger.countryID,1,<br />
4,UNION,salesledger,ref,&quot;invNum,invoiceDate,paidinfulldate&quot;,invNum,4,,1914,&quot;Using where; Using temporary; Using filesort&quot;<br />
4,UNION,customers,ref,customerID,customerID,9,sst.salesledger.customerID,1,<br />
4,UNION,groups,ALL,NULL,NULL,NULL,NULL,19,<br />
4,UNION,users,ref,userID,userID,5,sst.salesledger.CCmanagerID,1,<br />
4,UNION,countries,ref,countryID,countryID,4,sst.salesledger.countryID,1,<br />
4,UNION,receipts,ALL,receiptDate,NULL,NULL,NULL,571339,&quot;Using where; Using join buffer&quot;<br />
NULL,&quot;UNION RESULT&quot;,&quot;&lt;union2,3,4&gt;&quot;,ALL,NULL,NULL,NULL,NULL,NULL,<br />
<br />
Sorry, but I cannot see how to format the results.<br />
<br />
<br />
The last entry shows rows as 571339. The posibble_keys is showing as receiptDate. However, there is already an index on Receipts.receiptDate but the key column is showing as null ??<br />
<br />
Can anyone advise ?<br />
<br />
Thanks,<br />
<br />
John]]></description>
            <dc:creator>John Noble</dc:creator>
            <category>Stored Procedures</category>
            <pubDate>Fri, 18 Sep 2026 13:36:22 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,742089,742089#msg-742089</guid>
            <title>MySQL Workbench 26.7 Connect Options for Local Infile (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,742089,742089#msg-742089</link>
            <description><![CDATA[ In a previous version of Workbench there was an option of OPT_LOCAL_INFILE=1 that could be added under advanced connection options. This appears to have changed with version 26.7 but I am unable to find details regarding location and syntax to apply this option in the later version.<br />
<br />
For 26.7 there is an area under Edit Connection... -&gt; Advanced -&gt; Other Connection Options but the OPT_LOCAL_INFILE option is not recognized.<br />
<br />
Is there documentation somewhere that explains this for 26.7 or does anyone known how to add this option (or equivalent)?]]></description>
            <dc:creator>Bryan Simmons</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Wed, 16 Sep 2026 20:06:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,742084,742084#msg-742084</guid>
            <title>MySql WorkBench 26.7 Data Modeling (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,742084,742084#msg-742084</link>
            <description><![CDATA[ Hi, in the new Workbench version (26.7) I couldn&#039;t find the option to create a data model. Is that correct? Will it be available in future releases?]]></description>
            <dc:creator>Olman Núñez Peralta</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 15 Sep 2026 15:42:10 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,742081,742081#msg-742081</guid>
            <title>Designing a scalable MySQL database for a healthcare website (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,742081,742081#msg-742081</link>
            <description><![CDATA[ Designing a scalable MySQL database for a healthcare website<br />
<br />
Hello everyone,<br />
<br />
I&#039;m working on the database architecture for a healthcare website and would like to get some advice from experienced MySQL users.<br />
<br />
The website needs to manage different types of structured information, such as departments, doctors, services, appointments, and general website content. I&#039;m considering MySQL for the database layer and want to make sure the schema remains efficient as the amount of data grows.<br />
<br />
A few things I&#039;m particularly interested in:<br />
<br />
How should related entities such as departments, doctors, and services be structured?<br />
What indexing strategy would you recommend for frequently searched records?<br />
Are there any common database-design mistakes I should avoid when building a healthcare-related website?<br />
What are the recommended approaches for maintaining database performance as the number of records increases?<br />
Would you recommend any particular backup and recovery strategy for this type of application?<br />
<br />
I&#039;d appreciate advice from anyone who has worked with MySQL databases for content-heavy or service-based websites.<br />
<br />
Thanks in advance.]]></description>
            <dc:creator>Jeevandan Health</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 15 Sep 2026 10:23:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,742076,742076#msg-742076</guid>
            <title>How to do export/import in MySQL Workbench 26.7.0 (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,742076,742076#msg-742076</link>
            <description><![CDATA[ I&#039;ve successfully installed MySQL Workbench 26.7.0 on Ubuntu 26. But I can&#039;t see the Server view and consequently can&#039;t find an Export/Import button there.]]></description>
            <dc:creator>Andrii Perun</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Mon, 14 Sep 2026 22:12:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,742073,742073#msg-742073</guid>
            <title>Any Impact of Oracle Restructuring on MySQL? (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,742073,742073#msg-742073</link>
            <description><![CDATA[ I’m a little concerned about the possible impact of Oracle’s restructuring on MySQL. If the restructuring results in fewer developers and support engineers working on MySQL, it could affect bug fixes, new releases, and the level of technical support available to users.<br />
<br />
For businesses that have relied on MySQL for many years, moving to another database is not an easy decision. It would probably be better to monitor the situation closely and start evaluating alternatives rather than making an immediate switch.<br />
<br />
Hopefully, the MySQL community and other companies involved in the ecosystem will continue supporting development and keeping the project moving forward.]]></description>
            <dc:creator>Raj Mane</dc:creator>
            <category>Newbie</category>
            <pubDate>Sat, 12 Sep 2026 11:33:30 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,742059,742059#msg-742059</guid>
            <title>Workbench update to 26.7.0 (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,742059,742059#msg-742059</link>
            <description><![CDATA[ I update from 8.0.47 to 26.7.0<br />
The installation was successful. The existing connections were successfully imported. Unfortunately, none of the connections are establishing a link to the database.<br />
It is also not possible to test the connection.<br />
There is no response; the spinning circle icon just keeps turning indefinitely.<br />
Workbench System: Windows 11<br />
Target database: MariaDB 10.11.14<br />
Reinstalled version 8.0.47; it&#039;s running without problems.]]></description>
            <dc:creator>Christian Marquardt</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 11 Sep 2026 05:18:06 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?79,742053,742053#msg-742053</guid>
            <title>Starting a Discussion About Database Migration (1 reply)</title>
            <link>https://forums.mysql.com/read.php?79,742053,742053#msg-742053</link>
            <description><![CDATA[ Hello everyone,<br />
<br />
I&#039;m new to this forum and would like to start a discussion about database migration.<br />
<br />
I&#039;m interested in learning more about migrating databases to MySQL, the common challenges people face, and the best practices for a smooth migration.<br />
<br />
I look forward to hearing about your experiences and learning from the community.<br />
<br />
Thank you!]]></description>
            <dc:creator>ortega blanks</dc:creator>
            <category>Other Migration</category>
            <pubDate>Thu, 17 Sep 2026 13:44:13 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,742050,742050#msg-742050</guid>
            <title>Upgrade Problems (2 replies)</title>
            <link>https://forums.mysql.com/read.php?10,742050,742050#msg-742050</link>
            <description><![CDATA[ I am having issues upgrading mysql database. It is giving me errors that the database is unusable any help would be greatly appreciated.]]></description>
            <dc:creator>Miguel Espinosa</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 09 Sep 2026 14:24:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?12,742007,742007#msg-742007</guid>
            <title>Discrepancy in Compatibility statement with MySQL and Connector/J 26.7 (2 replies)</title>
            <link>https://forums.mysql.com/read.php?12,742007,742007#msg-742007</link>
            <description><![CDATA[ Hello,<br />
<br />
I noticed what appears to be a discrepancy in the documentation regarding the minimum MySQL Server version supported by Connector/J 26.7.<br />
<br />
In this page : <a href="https://dev.mysql.com/doc/connector-j/en/connector-j-versions.html"  rel="nofollow">https://dev.mysql.com/doc/connector-j/en/connector-j-versions.html</a><br />
It is written &quot;MySQL Server versions: Connector/J 26.7 supports MySQL 8.0 and up. &quot;<br />
<br />
But in the release notes in this page : <a href="https://dev.mysql.com/doc/relnotes/connector-j/en/news-26-7-0.html"  rel="nofollow">https://dev.mysql.com/doc/relnotes/connector-j/en/news-26-7-0.html</a><br />
It is written &quot;This release can be used against MySQL Server version 8.4 and later.&quot;<br />
<br />
My question is what is the correct minimal MySQL Server version officially supported by the new Connector/J 26.7 ?<br />
<br />
Thank you for your help.<br />
<br />
Best regards,]]></description>
            <dc:creator>Swann Puig</dc:creator>
            <category>Docs</category>
            <pubDate>Sun, 30 Aug 2026 20:26:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?3,742002,742002#msg-742002</guid>
            <title>Announcing August 2026 Releases featuring MySQL Server, MySQL NDB Cluster, Shell and Connector/ODBC (no replies)</title>
            <link>https://forums.mysql.com/read.php?3,742002,742002#msg-742002</link>
            <description><![CDATA[ <pre class="bbcode">

Dear MySQL users,

We are pleased to announce the release of the following products:

    * MySQL Server 26.7.1, 9.7.3 and 8.4.12 (Docker only)
    * MySQL Shell 26.7.1
    * Connector/ODBC 26.7.1
    * MySQL NDB Cluster 26.7.1, 9.7.3, 8.4.12 and 8.0.49 (Docker only)

These releases are recommended for use on production systems and are
available in source and binary form for a number of platforms from our
MySQL Community download pages at:

<a href="https://dev.mysql.com/downloads/"  rel="nofollow">https://dev.mysql.com/downloads/</a>

Regardless of server version, always use the latest version of MySQL
Clients, Tools, and Connectors as they support both MySQL Server 8.4
and 9.7 too.

Enterprise binaries for these new releases are available on My Oracle
Support:

<a href="https://support.oracle.com"  rel="nofollow">https://support.oracle.com</a>

Choose the &quot;Patches &amp; Updates&quot; tab, and then choose the &quot;Product or
Family (Advanced Search)&quot; side tab in the &quot;Patch Search&quot; portlet.

MySQL Enterprise binaries are also available on the Oracle Software
Delivery Cloud:

<a href="https://edelivery.oracle.com/"  rel="nofollow">https://edelivery.oracle.com/</a>

Developers can download MySQL Enterprise Edition from

<a href="https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html"  rel="nofollow">https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html</a>

Innovation releases are supported until the next innovation release, and
are recommended for production use. The 8.4 and 9.7 series
will focus on security and bug fixes only. Please refer to the following
for more information:

<a href="https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html"  rel="nofollow">https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html</a>

Changes since the previous releases can be viewed online:

<a href="https://dev.mysql.com/doc/#current-release-notes"  rel="nofollow">https://dev.mysql.com/doc/#current-release-notes</a>

On Behalf of the MySQL Engineering Team,
Balasubramanian Kandasamy

</pre>]]></description>
            <dc:creator>Balasubramanian Kandasamy</dc:creator>
            <category>Announcements</category>
            <pubDate>Tue, 25 Aug 2026 07:01:59 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?24,741996,741996#msg-741996</guid>
            <title>How to Troubleshoot Slow MySQL Queries Using EXPLAIN and Indexes (1 reply)</title>
            <link>https://forums.mysql.com/read.php?24,741996,741996#msg-741996</link>
            <description><![CDATA[ Slow database queries can affect the performance of an entire application. When a MySQL database becomes slower as the amount of data increases, checking how queries are executed is a good place to start.<br />
<br />
Use EXPLAIN to Check the Query<br />
<br />
MySQL provides the `EXPLAIN` statement to show how it plans to execute a query.<br />
<br />
For example:<br />
<br />
`EXPLAIN SELECT * FROM orders WHERE customer_id = 100;`<br />
<br />
The result can help identify whether MySQL is using an index or scanning a large number of rows.<br />
<br />
Check Whether the Correct Index Exists<br />
<br />
Indexes can improve the speed of queries that frequently search, filter, or join records using particular columns.<br />
<br />
For example, if `customer_id` is frequently used in a WHERE condition, creating an appropriate index may improve performance.<br />
<br />
However, adding indexes to every column is not a good solution. Too many indexes can consume additional storage and can also affect the performance of INSERT, UPDATE, and DELETE operations.<br />
<br />
Avoid Retrieving Unnecessary Data<br />
<br />
Using `SELECT *` retrieves every column even when only a few are required.<br />
<br />
Instead of:<br />
<br />
`SELECT * FROM customers;`<br />
<br />
you can retrieve only the required columns:<br />
<br />
`SELECT customer_id, customer_name FROM customers;`<br />
<br />
This can reduce the amount of unnecessary data being processed and transferred.<br />
<br />
Review JOIN Conditions<br />
<br />
Queries involving several tables may become slow when JOIN conditions are inefficient or when the columns involved are not indexed appropriately.<br />
<br />
Using `EXPLAIN` on these queries can help determine how MySQL accesses each table.<br />
<br />
Monitor Queries as the Database Grows<br />
<br />
A query that performs well with a small database may become much slower when the tables contain thousands or millions of records. Regularly reviewing important queries and their execution plans can help identify performance problems before they become serious.<br />
<br />
Conclusion<br />
<br />
When troubleshooting slow MySQL queries, checking the execution plan with EXPLAIN, reviewing indexes, limiting unnecessary data retrieval, and checking JOIN conditions are useful starting points.<br />
<br />
What methods do you normally use to identify and improve slow queries in MySQL?]]></description>
            <dc:creator>alex Tan</dc:creator>
            <category>Performance</category>
            <pubDate>Tue, 01 Sep 2026 04:21:20 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?20,741979,741979#msg-741979</guid>
            <title>The future of the timestamp data type (1 reply)</title>
            <link>https://forums.mysql.com/read.php?20,741979,741979#msg-741979</link>
            <description><![CDATA[ Hi<br />
<br />
I am trying to find a sustainable approach to using the &quot;timestamp&quot; data type.<br />
The functions that use the timestamp type generally seem to support 64-bit values, but the actual value for the timestamp type is stored as a 32-bit value and therefore does not support timestamps after 2038-01-19 03:14:07 UTC.<br />
And while 2038 may sound like the distant future, we are now closer to 2038 than &quot;the year of the Ice Bucket Challenge&quot; in 2014, so I feel it is about time to address this issue.<br />
<br />
My problem is: I can find several posts on various forums about how to work around this issue, but I cannot find any official documentation from MySQL about what the plan is for this data type. Do they intend to upgrade the type to support 64-bit? Do they intend to deprecate the type? Or do they simply intend to mention it in passing in some release note 10 years from now?<br />
(if anyone can point me to something I have overlooked, I would be very interested).<br />
<br />
I fully understand that there are several ways to solve the problem (personally, I just use bigint and convert with unix_timestamp() and from_unixtime()), but I am missing an official statement on how MySQL intends to handle this issue.<br />
<br />
Anyone who can help me out?]]></description>
            <dc:creator>Lenny Andersen</dc:creator>
            <category>General</category>
            <pubDate>Mon, 17 Aug 2026 20:30:13 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?20,741978,741978#msg-741978</guid>
            <title>Linking 2 cells in a table (no replies)</title>
            <link>https://forums.mysql.com/read.php?20,741978,741978#msg-741978</link>
            <description><![CDATA[ Hi <br />
<br />
I searched through the web and couldn&#039;t find an answer, but may be it&#039;s too difficult to explain what I&#039;m looking for to a search engine<br />
<br />
I have a table, already existing with thousand of rows in it <br />
I need to add a new column with a value linked permanently to the value of another column, but not the same row <br />
<br />
like <br />
row 1 : status = OK <br />
row 2 : statusfrom1 = row1(status) <br />
<br />
not just when creating the row2 but dynamically, if I change row1(status) then row2(statusfrom1) will be automatically updated <br />
<br />
kind of &quot;softlink&quot; for files under Unix , if you see what I mean <br />
<br />
Is it possible ? <br />
<br />
I know that the best way to achieve that will be to have an extra table but this may imply to me to rewrite a lot of stuff behind and also the table is full, I would like to avoid to update all rows<br />
<br />
Thanks <br />
Ericc]]></description>
            <dc:creator>Eric Crastes</dc:creator>
            <category>General</category>
            <pubDate>Thu, 13 Aug 2026 11:07:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?52,741976,741976#msg-741976</guid>
            <title>MySQL syntax error - don&#039;t get it! (3 replies)</title>
            <link>https://forums.mysql.com/read.php?52,741976,741976#msg-741976</link>
            <description><![CDATA[ SELECT * FROM millhouse_db.sponsors WHERE type=&#039;funding&#039; ORDER BY rank ASC;<br />
<br />
Apparently there is a syntax error near ASC.<br />
<br />
Don&#039;t get it!<br />
<br />
What is the error?]]></description>
            <dc:creator>Gregary Boyles</dc:creator>
            <category>PHP</category>
            <pubDate>Thu, 10 Sep 2026 20:58:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?26,741965,741965#msg-741965</guid>
            <title>replication from 8.0 to 8.4 error (1 reply)</title>
            <link>https://forums.mysql.com/read.php?26,741965,741965#msg-741965</link>
            <description><![CDATA[ Hello<br />
We have a newly installed  8.4.10-10 mysql database running on Rocky Linux 8.10.<br />
<br />
Trying to configure it as the replica for a  8.0.37-29  mysql database.<br />
<br />
The error upon checking is <br />
<br />
<br />
Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the source&#039;s binary log is corrupted (you can check this by running &#039;mysqlbinlog&#039; on the binary log), the replica&#039;s relay log is corrupted (you can check this by running &#039;mysqlbinlog&#039; on the relay log), a network problem, the server was unable to fetch a keyring key required to open an encrypted relay log file, or a bug in the source&#039;s or replica&#039;s MySQL code. If you want to check the source&#039;s binary log or replica&#039;s relay log, you will be able to know their names by issuing &#039;SHOW REPLICA STATUS&#039; on this replica.<br />
<br />
<br />
We thought this might have been an OS issue as we first attempted this on Ubuntu. But now having movied to Rocky we are getting the exact same error.<br />
<br />
Has anyone seen this before? From what I understand this is supported (8.0 to 8.4) but for life of me I cant get past this error!<br />
<br />
Thanks.]]></description>
            <dc:creator>David James</dc:creator>
            <category>Replication</category>
            <pubDate>Tue, 25 Aug 2026 11:08:21 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741950,741950#msg-741950</guid>
            <title>This CMD window bothers me. (2 replies)</title>
            <link>https://forums.mysql.com/read.php?10,741950,741950#msg-741950</link>
            <description><![CDATA[ Whenever MySQL starts, a CMD window appears with the line &quot;Apache 2 is starting ...&quot; at the bottom.<br />
How can I minimize this window?]]></description>
            <dc:creator>Joachim von Kienitz</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 26 Aug 2026 11:12:38 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?3,741949,741949#msg-741949</guid>
            <title>Announcing July 2026 Releases featuring MySQL Server 26.7.0, 9.7.2 and 8.4.11 (no replies)</title>
            <link>https://forums.mysql.com/read.php?3,741949,741949#msg-741949</link>
            <description><![CDATA[ <pre class="bbcode">

Dear MySQL users,

We are pleased to announce the release of the following products:

    * MySQL Server 26.7.0, 9.7.2, and 8.4.11
    * MySQL Shell, Router, Operator, NDB Operator and Connectors 26.7.0
    * MySQL NDB Cluster 26.7.0, 9.7.2, 8.4.11, and 8.0.48

These releases are recommended for use on production systems and are
available in source and binary form for a number of platforms from our
MySQL Community download pages at:

<a href="https://dev.mysql.com/downloads/"  rel="nofollow">https://dev.mysql.com/downloads/</a>

Regardless of server version, always use the latest version of MySQL
Clients, Tools, and Connectors as they support both MySQL Server 9.7 and
8.4 LTS too.

As of this release, MySQL Router, MySQL Shell, MySQL Operator, and NDB
Operator adopt a single-version release model. The 8.4 and 9.7 release
series for these products have been discontinued, and only the 26.7
release series is available. The latest version of these products 
remains compatible with all supported MySQL Server 8.4, 9.7, and 26.7.

Windows packages are available via MSI or .ZIP (no-install) packages.
The MySQL Configurator tool, bundled with the MySQL Server Windows
packages, provides a user interface for creating and modifying MySQL
Server configurations on  Microsoft Windows platforms.

Enterprise binaries for these new releases are available on My Oracle
Support:

<a href="https://support.oracle.com"  rel="nofollow">https://support.oracle.com</a>

Click on the “Patches” tab, and then choose the “Product” and &quot;Release&quot;
filters in the “Patch Search” portlet

MySQL Enterprise binaries are also available on the Oracle Software
Delivery Cloud:

<a href="https://edelivery.oracle.com/"  rel="nofollow">https://edelivery.oracle.com/</a>

Developers can download MySQL Enterprise Edition from

<a href="https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html"  rel="nofollow">https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html</a>

Innovation releases are supported until the next innovation release, and
are recommended for production use. The 8.4 and 9.7 series will focus on
security and bug fixes only. Please refer to the following for more
information:

<a href="https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html"  rel="nofollow">https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html</a>

Changes since the previous releases can be viewed online:

<a href="https://dev.mysql.com/doc/#current-release-notes"  rel="nofollow">https://dev.mysql.com/doc/#current-release-notes</a>


On Behalf of the MySQL Engineering Team,
Balasubramanian Kandasamy

</pre>]]></description>
            <dc:creator>Balasubramanian Kandasamy</dc:creator>
            <category>Announcements</category>
            <pubDate>Sat, 01 Aug 2026 10:40:10 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?104,741945,741945#msg-741945</guid>
            <title>Can I purge binlog files after migration ? (no replies)</title>
            <link>https://forums.mysql.com/read.php?104,741945,741945#msg-741945</link>
            <description><![CDATA[ Hello,<br />
I performed a mysqldump and restore of a 5.7 database to a test server space.<br />
It created approx 445 binlog.000xxx files that are 1 GB each.<br />
<br />
Same thing happening via MySQL workbench restore.<br />
Is this normal and can I purge them after migration ?<br />
<br />
When I perform the command on the original server, SHOW BINARY LOGS; I receive &quot;Error Code: 1381. You are not using binary logging&quot;<br />
<br />
I do not have any binary logging setup in my my.cnf.<br />
<br />
I read a few with mysqlbinlog and it seems dates are recent.<br />
<br />
Thank you.]]></description>
            <dc:creator>Vito Cavallo</dc:creator>
            <category>MySQL Workbench - Database Migration</category>
            <pubDate>Fri, 31 Jul 2026 14:45:13 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741937,741937#msg-741937</guid>
            <title>Can&#039;t update expired password in Mysql Workbench (2 replies)</title>
            <link>https://forums.mysql.com/read.php?152,741937,741937#msg-741937</link>
            <description><![CDATA[ Updating expired password in mysql workbench <br />
<br />
Can&#039;t update password, get error every time<br />
<br />
Password expired  Please pick a new password<br />
When enter old password and new passwords get error: <br />
You have and error in your SQL syntax near PASSWORD(&#039;&#039;) at line 1 code 1064 <br />
<br />
mysqlworkbench version 8.0.47 community<br />
mysql version 8.4.8-8]]></description>
            <dc:creator>Don Lewis</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 15 Sep 2026 13:11:09 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741916,741916#msg-741916</guid>
            <title>Assistance with MySql application and Sql server (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,741916,741916#msg-741916</link>
            <description><![CDATA[ Good morning all,<br />
Please, can anybody assist me in downloading the farmers market database in SQL.<br />
I downloaded the Mysql application  but could not go further wiith the farmers data base]]></description>
            <dc:creator>EJIKE NWANKWO</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 18 Sep 2026 13:32:04 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?3,741900,741900#msg-741900</guid>
            <title>MySQL Community Governance Model (no replies)</title>
            <link>https://forums.mysql.com/read.php?3,741900,741900#msg-741900</link>
            <description><![CDATA[ <pre class="bbcode">

Dear MySQL Community,

As part of our ongoing commitment to fostering a more open,
collaborative, and transparent development process, we are pleased to
share the MySQL Community Governance Model.

This builds on the vision outlined in our recent blog post, The Next
Phase of MySQL Community Engagement: Accelerating Participation and
Collaboration:
<a href="https://blogs.oracle.com/mysql/the-next-phase-of-mysql-community-engagement-accelerating-participation-and-collaboration"  rel="nofollow">https://blogs.oracle.com/mysql/the-next-phase-of-mysql-community-engagement-accelerating-participation-and-collaboration</a>

The governance model establishes a framework for how the MySQL community
can participate in the project&#039;s technical evolution while preserving
the quality, stability, security, and compatibility that users and
organizations rely on.

This covers several key areas, including:

    * A governance structure defining the roles and responsibilities of Contributors, Committers, Project Leads, 
      Core Project Leads, and the Steering Committee.  
    * A transparent, merit-based path for increased community participation and leadership.  
    * Technical review, decision-making, and contribution processes designed to ensure high-quality development. 
    * A phased approach toward greater openness and earlier community engagement in the development lifecycle.  
    * Governance practices for proposals, releases, issue management, security coordination, and conflict resolution.

The governance model is intended to evolve alongside the MySQL project
and its community. As our development practices and collaboration
continue to mature, we expect this framework to be refined based on
practical experience and community input.

We invite members of the MySQL community—including developers, users,
customers, partners, and open source contributors—to share their
feedback. In particular, we welcome comments on:

    * The overall governance structure and participation model.  
    * The clarity of roles and responsibilities.  
    * The technical review and decision-making processes.  
    * Opportunities to improve transparency, collaboration, and community participation.

Your participation will help shape the future of MySQL&#039;s community
governance and ensure that the model reflects the needs and perspectives
of our diverse ecosystem.

Please join us for our next public discussion on July 15 at 7 am Pacific
Time. <a href="https://oracle.zoom.us/webinar/register/WN_khcji3biT2m7myg6hDId4w"  rel="nofollow">https://oracle.zoom.us/webinar/register/WN_khcji3biT2m7myg6hDId4w</a>

</pre>]]></description>
            <dc:creator>Balasubramanian Kandasamy</dc:creator>
            <category>Announcements</category>
            <pubDate>Thu, 25 Jun 2026 18:24:00 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?3,741898,741898#msg-741898</guid>
            <title>Announcing June 2026 Releases featuring MySQL Server 9.7.1 and 8.4.10 (no replies)</title>
            <link>https://forums.mysql.com/read.php?3,741898,741898#msg-741898</link>
            <description><![CDATA[ <pre class="bbcode">

Dear MySQL users,

We are pleased to announce the release of the following products:

    * MySQL Server 9.7.1 and 8.4.10
    * MySQL Shell, Router 9.7.1 and 8.4.10
    * MySQL Shell for VS Code 2026.05+9.7.0
    * MySQL NDB Cluster 9.7.1, 8.4.10 and 8.0.47

These releases are recommended for use on production systems and are
available in source and binary form for a number of platforms from our
MySQL Community download pages at:

<a href="https://dev.mysql.com/downloads/"  rel="nofollow">https://dev.mysql.com/downloads/</a>

Regardless of server version, always use the latest version of MySQL
Clients, Tools, and Connectors as they support both MySQL Server 8.4
and 9.7 too.

Enterprise binaries for these new releases are available on My Oracle
Support:

<a href="https://support.oracle.com"  rel="nofollow">https://support.oracle.com</a>

Choose the &quot;Patches &amp; Updates&quot; tab, and then choose the &quot;Product or
Family (Advanced Search)&quot; side tab in the &quot;Patch Search&quot; portlet.

MySQL Enterprise binaries are also available on the Oracle Software
Delivery Cloud:

<a href="https://edelivery.oracle.com/"  rel="nofollow">https://edelivery.oracle.com/</a>

Developers can download MySQL Enterprise Edition from

<a href="https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html"  rel="nofollow">https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html</a>

Innovation releases are supported until the next innovation release, and
are recommended for production use. The 8.0, 8.4 and 9.7 series
will focus on security and bug fixes only. Please refer to the following
for more information:

<a href="https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html"  rel="nofollow">https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html</a>

Changes since the previous releases can be viewed online:

<a href="https://dev.mysql.com/doc/#current-release-notes"  rel="nofollow">https://dev.mysql.com/doc/#current-release-notes</a>

On Behalf of the MySQL Engineering Team,
Balasubramanian Kandasamy

</pre>]]></description>
            <dc:creator>Balasubramanian Kandasamy</dc:creator>
            <category>Announcements</category>
            <pubDate>Wed, 24 Jun 2026 12:41:00 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?22,741869,741869#msg-741869</guid>
            <title>What could cause .frm and .ibd mismatches across multiple tables? (2 replies)</title>
            <link>https://forums.mysql.com/read.php?22,741869,741869#msg-741869</link>
            <description><![CDATA[ Hello,<br />
<br />
We recently encountered a very strange issue on a production MySQL/MariaDB server and I&#039;m trying to understand what could have caused it.<br />
<br />
We have a Laravel application. A few days ago we noticed that a table seemed to be missing. After selecting the database and running:<br />
<br />
SHOW TABLES;<br />
<br />
the table did not appear in the list.<br />
<br />
However, we were still able to query it:<br />
<br />
SELECT * FROM table_name;<br />
<br />
and the query returned data successfully.<br />
<br />
At that point we executed:<br />
<br />
FLUSH TABLES;<br />
<br />
After that, the SELECT statement stopped working.<br />
<br />
We then inspected the database directory under:<br />
<br />
/var/lib/mysql/&lt;database_name&gt;/<br />
<br />
and discovered that this was not limited to a single table. A significant number of tables were in an inconsistent state:<br />
<br />
* Some tables had both .frm and .ibd files.<br />
* Some tables had only a .frm file.<br />
* Some tables had only a .ibd file.<br />
<br />
We attempted to restore the database from the previous day&#039;s backup, but to our surprise the same inconsistencies were already present there. My understanding is that mysqldump only exports tables that MySQL can see through its metadata, so tables that only had orphaned .ibd files would not have been included in the dump ¿?<br />
<br />
Eventually we had to restore from a backup that was about 5 days old, where all expected tables and files were present and consistent.<br />
<br />
My questions are:<br />
<br />
1. What kinds of events can lead to this type of inconsistency between .frm and .ibd files? - (the disk storage wasn&#039;t full)<br />
<br />
2. Do people typically implement checks in production to detect mismatches between .frm and .ibd files before backups are taken? Cuz we always assumed that a successful mysqldump was enough<br />
<br />
Additional environment information:<br />
<br />
Operating System: Debian 12<br />
<br />
Database Server: MariaDB 10.11.14<br />
<br />
Version output:<br />
mariadb  Ver 15.1 Distrib 10.11.14-MariaDB, for debian-linux-gnu (x86_64)<br />
<br />
innodb_file_per_table is enabled:<br />
SHOW VARIABLES LIKE &#039;innodb_file_per_table&#039;;<br />
<br />
Result:<br />
+-----------------------+-------+<br />
| Variable_name         | Value |<br />
+-----------------------+-------+<br />
| innodb_file_per_table | ON    |<br />
+-----------------------+-------+<br />
<br />
Version details:<br />
SHOW VARIABLES LIKE &#039;version%&#039;;<br />
<br />
Result:<br />
<br />
version                 = 10.11.14-MariaDB-0+deb12u2-log<br />
version_comment         = Debian 12<br />
version_compile_machine = x86_64<br />
version_compile_os      = debian-linux-gnu<br />
<br />
<br />
Any ideas or similar experiences would be greatly appreciated!!]]></description>
            <dc:creator>maria b</dc:creator>
            <category>InnoDB</category>
            <pubDate>Tue, 01 Sep 2026 13:31:21 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741866,741866#msg-741866</guid>
            <title>Problem with creating a connection to a remote database on local network (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741866,741866#msg-741866</link>
            <description><![CDATA[ I am getting an access denied error if regardless of whether I use root or gregaryb as my username.<br />
<br />
How do I fix this?]]></description>
            <dc:creator>Gregary Boyles</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Wed, 03 Jun 2026 13:44:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741865,741865#msg-741865</guid>
            <title>Best MySQL schema for storing image processing jobs? (3 replies)</title>
            <link>https://forums.mysql.com/read.php?10,741865,741865#msg-741865</link>
            <description><![CDATA[ I&#039;m building an application that processes user-uploaded images through an API.<br />
<br />
Each image goes through multiple stages:<br />
- Uploaded<br />
- Queued<br />
- Processed<br />
- Completed<br />
<br />
I&#039;m curious how others design MySQL tables for this type of workflow.<br />
<br />
Do you use separate tables for jobs and results, or a single table with status columns?]]></description>
            <dc:creator>Moez Cherif</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 25 Aug 2026 07:25:27 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?11,741863,741863#msg-741863</guid>
            <title>APT Repository not working on Ubuntu 26.04 (10 replies)</title>
            <link>https://forums.mysql.com/read.php?11,741863,741863#msg-741863</link>
            <description><![CDATA[ I am trying to install the official MySQL repository on my Ubuntu 26.04 VirtualBox virtual machine. I ran the following commands:<br />
<br />
wget <a href="https://dev.mysql.com/get/mysql-apt-config_0.8.39-1_all.deb"  rel="nofollow">https://dev.mysql.com/get/mysql-apt-config_0.8.39-1_all.deb</a><br />
sudo dpkg -i mysql-apt-config_0.8.39-1_all.deb<br />
rm mysql-apt-config_0.8.39-1_all.deb<br />
<br />
When running these commands the first time, I got a message saying my distribution (resolute) is not supported by MySQL. I aborted the installer there.<br />
<br />
When running these commands again later, I don&#039;t get this error anymore. But when running sudo apt update, I get the following output:<br />
<br />
Ign:7 <a href="http://repo.mysql.com/apt/ubuntu"  rel="nofollow">http://repo.mysql.com/apt/ubuntu</a> resolute InRelease<br />
Err:8 <a href="http://repo.mysql.com/apt/ubuntu"  rel="nofollow">http://repo.mysql.com/apt/ubuntu</a> resolute Release<br />
  404  Not Found [IP: 2a02:26f0:fe00:2ab::1d68 80]<br />
Error: The repository &#039;<a href="http://repo.mysql.com/apt/ubuntu"  rel="nofollow">http://repo.mysql.com/apt/ubuntu</a> resolute Release&#039; does not have a Release file.<br />
Notice: Updating from such a repository can&#039;t be done securely, and is therefore disabled by default.<br />
<br />
How come I aborted the installer, but the repository was still added?<br />
How come Ubuntu 26.04 is still not supported? It was released more than a month ago...<br />
Is there any other way to get this to work?]]></description>
            <dc:creator>Jos Vlaar</dc:creator>
            <category>Install &amp; Repo</category>
            <pubDate>Wed, 16 Sep 2026 06:09:24 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?20,741860,741860#msg-741860</guid>
            <title>storing and reading blob (no replies)</title>
            <link>https://forums.mysql.com/read.php?20,741860,741860#msg-741860</link>
            <description><![CDATA[ Hi,<br />
I store file in db in blob but overtime become 30GB. even though i restrict file size less than 1mb.<br />
<br />
the db become slow that simple &quot;select * from img&quot; very slow.<br />
<br />
i thinking simplest change is export all blob out using INTO DUMPFILE  and read it using LOAD_FILE .<br />
<br />
my question . is this good solution ? or worse than store in db .]]></description>
            <dc:creator>charles candy</dc:creator>
            <category>General</category>
            <pubDate>Thu, 28 May 2026 11:21:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?37,741840,741840#msg-741840</guid>
            <title>ODBC Connector almost always alters it&#039;s name and path (no replies)</title>
            <link>https://forums.mysql.com/read.php?37,741840,741840#msg-741840</link>
            <description><![CDATA[ The ODBC Connector sometimes gets updated from administrators, when a new version is available. That&#039;s commendable. Always the newest Connector is recommended. <br />
<br />
But since the new versioning scheme is active, the &quot;newest&quot; connector always alters it&#039;s installation path and Name including the first decimal as from 9.6 to 9.7. <br />
In order to get a working environment, also all existing ODBC data sources require to be modified to use the new version as well.<br />
<br />
When updating only to minor versions as 8.0.x, the installation path and Name (in &quot;ODBC Data Sources&quot;) is kept.<br />
<br />
Would there be a strategy to be able to update the connector without constantly touching the data source definitions? <br />
<br />
Such drivers from Microsoft e.g. mostly retain their general names and access, even with major versions. Updating a driver does not need to modify the data sources then.]]></description>
            <dc:creator>Horst Wieland</dc:creator>
            <category>Connector/ODBC</category>
            <pubDate>Fri, 15 May 2026 11:04:23 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741822,741822#msg-741822</guid>
            <title>Connector/Windows (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741822,741822#msg-741822</link>
            <description><![CDATA[ Hi,<br />
<br />
Is there anyway to query a MySQL server from en Windows client in PowerShell WITHOUT installing any software/driver on it ?<br />
<br />
We wander if it is possible to execute a light PowerShell script from any client connected to the network, from a share, making some select and insert, but with no MySQL connector install.<br />
<br />
Using &quot;[void][system.reflection.Assembly]::LoadFrom&quot; we got errors, and no cmdlets recognized.<br />
<br />
One &quot;dirty&quot; way should use a mysql.exe from a share, but results are unusable.<br />
<br />
Could it be possible to &quot;load&quot; MySQL libs or cmd &quot;on the fly&quot; with no install on the computer executing the powershell script ?<br />
<br />
Regards,]]></description>
            <dc:creator>Emmanuel BILLOT</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 16 Sep 2026 13:45:47 +0000</pubDate>
        </item>
    </channel>
</rss>
