<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - Newbie</title>
        <description>Forum for New Users of MySQL.</description>
        <link>https://forums.mysql.com/list.php?10</link>
        <lastBuildDate>Sun, 09 Aug 2026 12:52:55 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741950,741950#msg-741950</guid>
            <title>This CMD window bothers me. (no 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>Sun, 02 Aug 2026 22:53:09 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741897,741897#msg-741897</guid>
            <title>GoHighLevel Webhook Data in MySQL (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741897,741897#msg-741897</link>
            <description><![CDATA[ Hi everyone,<br />
<br />
I&#039;m storing GoHighLevel webhook data in MySQL for reporting and automation. What&#039;s the best database structure for handling contacts, opportunities, and custom fields efficiently?<br />
<br />
Would love to hear your recommendations.]]></description>
            <dc:creator>Funnelsflex Team</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 24 Jun 2026 09:35:38 +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? (1 reply)</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, 23 Jun 2026 11:30:10 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741822,741822#msg-741822</guid>
            <title>Connector/Windows (no replies)</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>Tue, 05 May 2026 20:47:42 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741801,741801#msg-741801</guid>
            <title>Optimizing InnoDB for high-concurrency REST API traffic (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741801,741801#msg-741801</link>
            <description><![CDATA[ I am relatively new to advanced MySQL optimization and could use some architecture advice from the veterans here. <br />
<br />
I am currently scaling the backend database infrastructure for our platform, LuvSMM, which processes a very high volume of concurrent REST API requests. We are trying to maintain an API response latency of under 200ms globally.<br />
<br />
Right now, we are dealing with sudden traffic &quot;surges&quot;—sometimes thousands of concurrent requests hitting our endpoints simultaneously. The workflow is mostly fast SELECT queries (to check user balances), immediately followed by rapid, bulk INSERTs (queuing the new orders).<br />
<br />
My questions are:<br />
1. What is the best practice for managing connection pooling in MySQL when dealing with these sudden, massive spikes in API traffic?<br />
2. Are there specific InnoDB settings (like `innodb_buffer_pool_size` or `innodb_flush_log_at_trx_commit`) that I should tweak to prioritize write speed and reduce database-level locking/latency?<br />
3. Is it standard practice to queue these API insertions externally (using something like Redis) before writing to MySQL, or can MySQL handle the raw concurrency if tuned correctly?<br />
<br />
I appreciate any guidance or documentation you can point me towards. Thank you for helping a newbie learn the ropes of enterprise-level database scaling!]]></description>
            <dc:creator>Sarthak Sarthak</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 05 May 2026 18:24:38 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741800,741800#msg-741800</guid>
            <title>Optimizing InnoDB for high-frequency concurrent API status updates? (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741800,741800#msg-741800</link>
            <description><![CDATA[ Hi everyone,<br />
<br />
I am looking for some architectural advice regarding a write-heavy database workload.<br />
<br />
I manage the backend infrastructure for SMM Bear, a B2B digital routing platform for marketing agencies. Because our system relies on algorithmic drip-feed pacing, our core MySQL database handles a massive number of concurrent transactions. Specifically, our cron jobs are constantly reading queued orders, fetching data from external APIs, and writing back status updates (Processing, Completed, Partial) multiple times per minute.<br />
<br />
We are using InnoDB. During peak hours, when thousands of status updates hit the database simultaneously, we are noticing some transaction queuing and occasional deadlock warnings in the logs.<br />
<br />
My questions for the DBA experts here are:<br />
<br />
For a queue-like table structure where a &#039;status&#039; column is being updated constantly, what are the best practices for configuring innodb_buffer_pool_size and innodb_flush_log_at_trx_commit to maximize write throughput safely?<br />
<br />
Do you recommend any specific indexing strategies to prevent row-locking bottlenecks when multiple API threads are trying to update different rows in the same table simultaneously?<br />
<br />
Any advice on optimizing MySQL for a heavy, high-frequency API environment would be greatly appreciated!<br />
<br />
Thanks,<br />
Aaryan Sharma]]></description>
            <dc:creator>Aaryan Sharma</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 29 Apr 2026 03:58:07 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741766,741766#msg-741766</guid>
            <title>Two tables with bidirectional relationships (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741766,741766#msg-741766</link>
            <description><![CDATA[ Hello,<br />
<br />
i am new two MySQL and i am trying to setup my first project which is based on an existing DB (non MySQL).<br />
<br />
Now i face a problem.<br />
<br />
I have two tables: Departments and Persons. Both tables have unique primary keys.<br />
<br />
Each department has a person as head of the department. 1:N This relationship formed no problem.<br />
<br />
The second relationship says that every person can belong to a department. But this is not mandatory. So this relationship is 1:N but in the opposite direction.<br />
<br />
When i try to send my model to the DB i get a nice little error message (as many i suppose):<br />
<br />
Executing SQL script in server<br />
ERROR: Error 6125: Failed to add the foreign key constraint. Missing unique key for constraint &#039;fk_tbl_persons_tbl_departments1&#039; in the referenced table &#039;tbl_departments&#039;<br />
SQL Code:<br />
        ALTER TABLE `mydb`.`tbl_persons` <br />
        ADD CONSTRAINT `fk_tbl_persons_tbl_addresses1`<br />
          FOREIGN KEY (`per_adr_index`)<br />
          REFERENCES `mydb`.`tbl_addresses` (`adr_index`)<br />
          ON DELETE NO ACTION<br />
          ON UPDATE NO ACTION,<br />
        ADD CONSTRAINT `fk_tbl_persons_tbl_departments1`<br />
          FOREIGN KEY (`per_dep_index`)<br />
          REFERENCES `mydb`.`tbl_departments` (`dep_index`)<br />
          ON DELETE NO ACTION<br />
          ON UPDATE NO ACTION<br />
<br />
I am not sure if i am doing something here which is not possible or what the error might be or how i have to deal with this situation.]]></description>
            <dc:creator>Magnus Müller</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 21 Apr 2026 05:15:57 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741759,741759#msg-741759</guid>
            <title>Asking for a password (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741759,741759#msg-741759</link>
            <description><![CDATA[ Trying to start my uni assignment, had a connectionmad that I couldn&#039;t open because it was asking for a password. I did not set a password when making the connection, when I input one it tells me it is wrong and access is denied.<br />
<br />
Can&#039;t change the password using windows terminal because it says mysqld is not recognised.<br />
Just kinda confused because I havent had any issue using mySQL in university or having to input a password to open connections there, not sure if i set something up wrong.]]></description>
            <dc:creator>Javier Nguyen</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 29 Apr 2026 02:09:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741708,741708#msg-741708</guid>
            <title>Database wont start (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741708,741708#msg-741708</link>
            <description><![CDATA[ We Recently installed new artifacts on our server and now mysql will not start. any help is appreciated. it told us to copy and paste this in the forums so heres what i got. thank you for any help in advance<br />
4:26:39 PM  [main] 	Initializing Control Panel<br />
4:26:39 PM  [main] 	Windows Version:   64-bit<br />
4:26:39 PM  [main] 	XAMPP Version: 8.2.12<br />
4:26:39 PM  [main] 	Control Panel Version: 3.3.0  [ Compiled: Apr 6th 2021 ]<br />
4:26:39 PM  [main] 	Running with Administrator rights - good!<br />
4:26:39 PM  [main] 	XAMPP Installation Directory: &quot;c:\users\administrator\desktop\xampp\&quot;<br />
4:26:39 PM  [main] 	Checking for prerequisites<br />
4:26:39 PM  [main] 	All prerequisites found<br />
4:26:39 PM  [main] 	Initializing Modules<br />
4:26:39 PM  [Apache] 	XAMPP Apache is already running on port 80<br />
4:26:39 PM  [Apache] 	XAMPP Apache is already running on port 443<br />
4:26:39 PM  [mysql] 	MySQL Service detected with wrong path<br />
4:26:39 PM  [mysql] 	Change XAMPP MySQL and Control Panel settings or<br />
4:26:39 PM  [mysql] 	Uninstall/disable the other service manually first<br />
4:26:39 PM  [mysql] 	Found Path: C:\Users\Administrator\Desktop\XAMPP\mysql\bin\mysqld --defaults-file=C:\Users\Administrator\Desktop\XAMPP\mysql\bin\my.ini mysql<br />
4:26:39 PM  [mysql] 	Expected Path: c:\users\administrator\desktop\xampp\mysql\bin\mysqld.exe --defaults-file=c:\users\administrator\desktop\xampp\mysql\bin\my.ini mysql<br />
4:26:39 PM  [main] 	The FileZilla module is disabled<br />
4:26:39 PM  [main] 	The Mercury module is disabled<br />
4:26:39 PM  [main] 	The Tomcat module is disabled<br />
4:26:39 PM  [main] 	Enabling autostart for module &quot;Apache&quot;<br />
4:26:39 PM  [main] 	Enabling autostart for module &quot;MySQL&quot;<br />
4:26:39 PM  [main] 	Starting Check-Timer<br />
4:26:39 PM  [main] 	Control Panel Ready<br />
4:26:40 PM  [Apache] 	Autostart aborted: Apache is already running<br />
4:26:40 PM  [mysql] 	Autostart active: starting...<br />
4:26:40 PM  [mysql] 	Attempting to start MySQL service...<br />
4:26:40 PM  [mysql] 	Status change detected: running<br />
4:26:47 PM  [mysql] 	Status change detected: stopped<br />
4:26:47 PM  [mysql] 	Error: MySQL shutdown unexpectedly.<br />
4:26:47 PM  [mysql] 	This may be due to a blocked port, missing dependencies, <br />
4:26:47 PM  [mysql] 	improper privileges, a crash, or a shutdown by another method.<br />
4:26:47 PM  [mysql] 	Press the Logs button to view error logs and check<br />
4:26:47 PM  [mysql] 	the Windows Event Viewer for more clues<br />
4:26:47 PM  [mysql] 	If you need more help, copy and post this<br />
4:26:47 PM  [mysql] 	entire log window on the forums]]></description>
            <dc:creator>Jie D</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 05 May 2026 18:46:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741651,741651#msg-741651</guid>
            <title>Tips for Optimizing MySQL Queries for Beginners (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741651,741651#msg-741651</link>
            <description><![CDATA[ Hi everyone,<br />
<br />
I’m new to MySQL and learning how to manage databases efficiently. I’ve noticed that some queries, especially when joining tables or filtering large datasets, can be slower than expected.<br />
<br />
I’d love some advice on a few things:<br />
<br />
How to use indexes effectively without slowing down insert/update operations.<br />
<br />
Best practices for writing joins and subqueries to make queries faster.<br />
<br />
Ways to monitor slow queries and find bottlenecks.<br />
<br />
Tips on structuring tables and choosing the right data types for better performance.<br />
<br />
Any guidance, examples, or beginner-friendly tips would be very helpful. I’m eager to learn from the community’s experience and improve my database skills.<br />
<br />
Thanks in advance for your insights!]]></description>
            <dc:creator>Funnelsflex Team</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 25 Feb 2026 18:07:39 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741640,741640#msg-741640</guid>
            <title>Alter table variable value (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741640,741640#msg-741640</link>
            <description><![CDATA[ I have been trying to figure out how to change a value in a table variable in a MySQL database, but I&#039;ve hit nothing but syntax errors, despite copying and pasting commands from bits I can find. I started at the CLI and couldn&#039;t find the commands to work, so I was going to try with the MySQL Workbench from my PC. I disabled the firewall, changed the binding to allow remote machines to connect, and then tried to grant access from both any machine or just my IP and that&#039;s where the syntax errors came in. Even direct copying and pasting full commands, changing that which needed to be changed resulted in the same syntax errors. <br />
<br />
Ideally, I&#039;d prefer to change it from the mysql cli in Linux as with the right command, that&#039;s probably super simple, the problem is I can&#039;t find the right command. Nothing I&#039;ve found has worked.<br />
<br />
I can get all the way down to looking the variable in the table after selecting the database, but I can&#039;t get further than that.<br />
<br />
mysql&gt; select * from my_variables\G;<br />
*************************** 1. row ***************************<br />
          variable_id: 1<br />
        variable_name: padding_tile<br />
variable_datetime_utc: 2026-02-21 19:04:23<br />
       variable_value: 754<br />
        variable_type: int<br />
<br />
<br />
Could someone please tell me what command I&#039;d need to run to change the &#039;variable_value&#039; of &#039;754&#039; to something else? It seems this should be so simple, but I haven&#039;t been able to find a clear command.]]></description>
            <dc:creator>David person</dc:creator>
            <category>Newbie</category>
            <pubDate>Mon, 23 Feb 2026 10:46:03 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741583,741583#msg-741583</guid>
            <title>How can I implement MySQL connection pooling in a Python Flask or Django application? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741583,741583#msg-741583</link>
            <description><![CDATA[ Hello everyone,<br />
<br />
I am developing a web application using Python with either Flask or Django, and MySQL as the backend database. As the application grows, I want to manage database connections efficiently and avoid opening a new connection for every request.<br />
<br />
I would like to know:<br />
<br />
What is the recommended way to implement MySQL connection pooling in Flask or Django?<br />
<br />
Which libraries or tools work best for connection pooling (SQLAlchemy, mysql-connector, PyMySQL, etc.)?<br />
<br />
How should pool size and timeout values be configured for a production environment?<br />
<br />
Are there any common mistakes or performance issues to watch out for when using connection pooling?<br />
<br />
If possible, sample code snippets or real-world experiences would be very helpful.<br />
<br />
Thanks in advance for your guidance.]]></description>
            <dc:creator>harishma kumar</dc:creator>
            <category>Newbie</category>
            <pubDate>Fri, 06 Mar 2026 18:14:05 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741567,741567#msg-741567</guid>
            <title>conversion from Mar-2026 to 03-2026 and vice versa (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741567,741567#msg-741567</link>
            <description><![CDATA[ I am new to PHP &amp; MySQL, struggling to learn the technology (absolute beginner). now I want to convert a VARCHAR column name is SALARY_MONTH, it contains data like: Mar-2025 now I want this in 03-2025 format (vice versa too).<br />
please help to achieve this.<br />
<br />
I tried below in PhpMyAdmin Console but it returns NULL.<br />
<br />
--- start<br />
SELECT DATE_FORMAT(<br />
         STR_TO_DATE(&#039;Mar-2025&#039;, &#039;%b-%Y&#039;),<br />
         &#039;%c-%Y&#039;<br />
       ) AS result;<br />
--- end<br />
<br />
thanks in advance.]]></description>
            <dc:creator>Smith John</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 10 Feb 2026 12:19:58 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741538,741538#msg-741538</guid>
            <title>having problem with MySQL (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741538,741538#msg-741538</link>
            <description><![CDATA[ Hopefully I&#039;m in the right place where I can ask for some help. MY daughter wants to start a freight dispatching business I&#039;m trying to make it as foolproof as possible I&#039;ve go the site built having  problems with MySQL to build the traccar server so she can track the drivers in real time. Anyone know of any MySQL Jedi Masters this young padawan needs help any guidance putting me on the right path is greatly appreciated  by me and my daughter.]]></description>
            <dc:creator>Alonzo Lattimore</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 08 Jan 2026 20:31:44 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741501,741501#msg-741501</guid>
            <title>Forgot my password (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741501,741501#msg-741501</link>
            <description><![CDATA[ I need the cli command used to change a password. I tried in phpmyadmin and it shows changed but it&#039;s not working when I go to login to the admin panel of the site. I did use MD5 and tried SHA1 as well. So let say I need a command for the following:<br />
<br />
Database: myacct_dbname<br />
Table: 1_users<br />
Field: password<br />
<br />
So I want to change the admin password for a site admin in the myacct_dbname database under the 1_users table. Any help is appreciated thank you.]]></description>
            <dc:creator>Shirley Bowen</dc:creator>
            <category>Newbie</category>
            <pubDate>Mon, 22 Dec 2025 07:19:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741497,741497#msg-741497</guid>
            <title>Best MySQL schema for ZIP-code based weather prediction data? (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741497,741497#msg-741497</link>
            <description><![CDATA[ Hi everyone,<br />
<br />
I’m working on a small project that predicts school closures based on<br />
weather conditions (snowfall, temperature, alerts).<br />
<br />
The system collects:<br />
- ZIP code<br />
- Hourly weather metrics<br />
- Probability scores (0–100)<br />
- Timestamped updates<br />
<br />
I’m unsure whether a single table with indexed ZIP codes is enough,<br />
or if partitioning by state/date would be better for performance.<br />
<br />
Any advice on schema design or indexing strategies would be appreciated.<br />
Thanks!]]></description>
            <dc:creator>USASnow DayCalculator</dc:creator>
            <category>Newbie</category>
            <pubDate>Fri, 19 Dec 2025 10:31:27 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741460,741460#msg-741460</guid>
            <title>Help with REGEXP in mySQL WHERE (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741460,741460#msg-741460</link>
            <description><![CDATA[ I have a large mySQL Db table that contain cemetery burial information. One field contains military information about service branch and campaigns (e.g., Korea, Vietnam).<br />
<br />
Using a string search value with %...% works fine for most of the campaigns. But, searching for %World War I% also selects the records containing &#039;World War II&#039;. Thus, I changed the search to use a REGEXP &#039;\bWorld War I\b&#039; but this returns zero records.<br />
<br />
This is the code...<br />
<br />
SELECT * FROM memorials<br />
LEFT JOIN cemeteries ON cem_id = per_cemid<br />
WHERE per_cemid = 134<br />
AND (per_mil_inscription REGEXP &#039;\bWorld War I\b&#039;<br />
 OR  per_mil_notes REGEXP &#039;\bWorld War I\b&#039;)<br />
<br />
The code doesn&#039;t work in my PHP code and doesn&#039;t work in a cPanel SQL query.<br />
<br />
What am I doing wrong?<br />
<br />
TIA for any assistance]]></description>
            <dc:creator>James A Wilson</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 04 Dec 2025 17:54:26 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741456,741456#msg-741456</guid>
            <title>Maximum Mysql record length (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741456,741456#msg-741456</link>
            <description><![CDATA[ I would like to know what is the maximum record size in characters for a Mysql database.<br />
Thank you]]></description>
            <dc:creator>Panagiotis Adam</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 03 Dec 2025 16:56:43 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741446,741446#msg-741446</guid>
            <title>Wrong workbench home screen (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741446,741446#msg-741446</link>
            <description><![CDATA[ Hi, I have recently downloaded the MySQL workbench and have also downloaded a &quot;MySQL workbench for beginners&quot; PDF file.<br />
Unfortunately, the workbench home screen as shown in the tutorial does not match the home screen on my workbench.<br />
(I was hoping that I would be able to attach 2 jpg files to this to show the differences)<br />
Can anyone help me with this rather annoying start?]]></description>
            <dc:creator>Andrew Greenwood</dc:creator>
            <category>Newbie</category>
            <pubDate>Sun, 30 Nov 2025 16:09:04 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741431,741431#msg-741431</guid>
            <title>Replace value in column which each cell contains muliple values (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741431,741431#msg-741431</link>
            <description><![CDATA[ Hi,<br />
<br />
Im trying to edit my database that contains data from a tracker. I wish to delete the values for the odometer, but the value is in a column named `attributes` which contains mutiple data in each cell like below<br />
<br />
{&quot;operator&quot;:23410,&quot;odometer&quot;:4.9654157716276E7,&quot;io83&quot;:1265,&quot;io87&quot;:51129600,&quot;distance&quot;:3.28,&quot;totalDistance&quot;:688005.33,&quot;fuel&quot;:999873.5,&quot;hours&quot;:61446060,&quot;Sleep Mode&quot;:&quot;Awake&quot;,&quot;Mobile Network&quot;:&quot;o2&quot;,&quot;FMC Battery&quot;:&quot;3.924&quot;,&quot;Car Battery&quot;:&quot;15.027000000000001&quot;,&quot;Speed&quot;:12,&quot;Fuel Tank (%)&quot;:25,&quot;Engine RPM&quot;:727,&quot;Total Fuel used (l)&quot;:126.5}<br />
<br />
I&#039;ve tried update but can&#039;t seem to select the value &quot;odometer&quot; in the column `attributes`<br />
<br />
Any help appreciate]]></description>
            <dc:creator>Adam Bateman</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 27 Nov 2025 13:30:27 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741402,741402#msg-741402</guid>
            <title>Should the mysql user be used to start / stop mysqld (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741402,741402#msg-741402</link>
            <description><![CDATA[ Hello,<br />
<br />
Complete newbie to MySQL. <br />
<br />
So I have installed MySQL 8.0.44 on RHEL 9<br />
<br />
a mysql linux account is automatically created but has no shell enabled. So to switch to the mysql linux account I run <br />
<br />
su - mysql --shell=/bin/bash<br />
<br />
When trying to start mysqld as the mysql user I am prompted for the root password.<br />
<br />
uid=27(mysql) gid=27(mysql) groups=27(mysql)<br />
$ systemctl start mysqld<br />
==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units ====<br />
Authentication is required to start &#039;mysqld.service&#039;.<br />
Authenticating as: root<br />
Password:<br />
<br />
I have been using OS root to stop and start mysqld but I want to move away from using the OS root user.<br />
<br />
All mysql files and directories are owned by the mysql linux account.<br />
<br />
So my questions are:<br />
<br />
1. Should the mysql account have privileges to start/stop mysqld without prompting for root password? <br />
<br />
2. What is best practice for the mysql linux account? is it ok for the user to have login permissions?<br />
<br />
Many Thanks]]></description>
            <dc:creator>Karl Champion</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 20 Nov 2025 09:59:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741388,741388#msg-741388</guid>
            <title>error in mysqli_fetch_assoc() (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741388,741388#msg-741388</link>
            <description><![CDATA[ php=8.3.xx<br />
mysql=8.0.xx<br />
MysqlI Support = enabled<br />
Client API library version = mysqlnd 8.3.27<br />
<br />
Getting back into php/mysql after 2 decades with cf/sqlserver.<br />
<br />
database connecting, selecting, ordering is fine<br />
<br />
Display error when I want to draw a table of first/last names<br />
<br />
display code fails at this line<br />
<br />
    while($row = $result-&gt;mysqli_fetch_assoc())<br />
<br />
<br />
Fatal error: Uncaught Error: Call to a member function mysqli_fetch_assoc() on string in.....<br />
<br />
Been on google for hours.  Now here. :(<br />
<br />
Thanks]]></description>
            <dc:creator>M. Masters</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 26 Feb 2026 18:50:17 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741386,741386#msg-741386</guid>
            <title>Using AI Tools to Generate Dynamic Text for MySQL Applications (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741386,741386#msg-741386</link>
            <description><![CDATA[ I’m exploring ways to integrate AI-generated text and custom fonts into my web applications that rely on MySQL databases. For example, using AI to generate styled headings, product names, or dynamic content that can then be stored and retrieved efficiently from the database.<br />
<br />
Has anyone here experimented with combining AI tools (like SchriftGenerators for custom fonts) with MySQL to create dynamic, visually styled content? Any tips on storing font styles, handling text formatting, or best practices for database design in this context would be greatly appreciated.<br />
<br />
Thanks!]]></description>
            <dc:creator>Ddavid Lee</dc:creator>
            <category>Newbie</category>
            <pubDate>Mon, 06 Jul 2026 12:08:51 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741382,741382#msg-741382</guid>
            <title>Approving topics (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741382,741382#msg-741382</link>
            <description><![CDATA[ Hi,<br />
<br />
I started a topic in the german forum two days ago and two days later it was still not approved.<br />
<br />
Oracle, is this forum dead?<br />
<br />
Best regards<br />
raZe]]></description>
            <dc:creator>Ramon Dohle</dc:creator>
            <category>Newbie</category>
            <pubDate>Fri, 28 Nov 2025 19:19:55 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741377,741377#msg-741377</guid>
            <title>How to Log queries for doing performance analysis (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741377,741377#msg-741377</link>
            <description><![CDATA[ Hi,<br />
<br />
Normally for analyzing the long running queries or associated performance issues , its advisable to set parameters like &quot;slow_query_log&quot; in mysql database or &quot;log_min_duration_statement&quot; in postgres. And with this all the queries running beyond certain duration will gets logged into the database log.<br />
<br />
In case of cloud databases like aws aurora mysql/postgres which eventually pushed the logs to cloudwatch. And then on top of that cloudwatch logs, we can do alerting or do the analysis in case of any performance issues.<br />
<br />
However, I wanted to understand how things work in case of some organizations which deals with PI or PCI data like say for e.g. financial institutions. As because in these cases there happens to be some sensitive information exposed in the cloudwatch logs which may be embeded as part of the literals in the sql query text. So how should one cater to this requirement?<br />
<br />
Basically wants to have these logging features enabled at the same time not breaking the regulatory requirement of &quot;not exposing any sensitive information inadvertently&quot; ? As because we may not have full control on what people embeded in the sql text in a large organization with 100&#039;s of developer and support guys running queries in the database 24/7.]]></description>
            <dc:creator>Jasper Callahan</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 25 Feb 2026 12:41:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741292,741292#msg-741292</guid>
            <title>Query performance (3 replies)</title>
            <link>https://forums.mysql.com/read.php?10,741292,741292#msg-741292</link>
            <description><![CDATA[ Hi,<br />
<br />
We are using aurora mysql database.<br />
<br />
Is there any dowsnide of enabling slow_query_log in mysql in production? and also to what value we should be setting it to be in safe side without impacting any other?]]></description>
            <dc:creator>Sheryl Carlson</dc:creator>
            <category>Newbie</category>
            <pubDate>Fri, 28 Nov 2025 19:12:12 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741285,741285#msg-741285</guid>
            <title>Oracle RIF effects on MySQL ? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741285,741285#msg-741285</link>
            <description><![CDATA[ Oracle is going through huge RIF and MySQL is heavily affected. We pay for MySQL support and it&#039;s basically non existent ATTM! 90% of the support team is fired, whole dev team that was fixing bugs is fired, huge chunk of core developers are gone too. Workbench team is gone, MEM team is gone. Worse part is RIF process is not done.<br />
<br />
Oracle said they are focusing on HeatWave and AI within OCI but what about us that use MySQL for few decades? I know there are MariaDB and that Percona have their fork too but both are heavily dependent on the Oracle work. If Oracle is scrapping MySQL - what is the best course of action now? Should we look at alternatives immediately or should we hope someone will pick up all the riffed engineers and continue the work (e.g. Meta as one of the biggest users or Amazon that already have a big team working on MySQL source) and we hope they will share it with rest of us? Problem is we already know Amazon is not sharing their work.]]></description>
            <dc:creator>Sheryl Carlson</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 26 Feb 2026 19:01:25 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741284,741284#msg-741284</guid>
            <title>How to Optimize MySQL Database Performance for High-Traffic Web Apps? (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741284,741284#msg-741284</link>
            <description><![CDATA[ Hey everyone 👋,<br />
<br />
I’ve been working on improving the performance of MySQL databases used in high-traffic web applications. While exploring different caching and query optimization techniques, I found some helpful tools and tutorials that really boosted my understanding.<br />
<br />
For example, using query indexing, JOIN optimization, and connection pooling helped reduce response times significantly.<br />
<br />
I also write about MySQL-related automation, AI integrations, and backend optimization on my personal tech blog — you can check it here:<br />
👉 Learn more about MySQL optimization here<br />
<br />
Would love to hear your tips too —<br />
<br />
What’s your favorite method for caching or reducing query load?<br />
<br />
Do you prefer MyISAM or InnoDB for large-scale systems?<br />
<br />
Thanks in advance for sharing your insights! 🙌]]></description>
            <dc:creator>Edward James</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 09 Oct 2025 11:33:21 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741259,741259#msg-741259</guid>
            <title>Running the installer a second time? (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741259,741259#msg-741259</link>
            <description><![CDATA[ This seems like such a newbie question, but I am trying to install MySQL onto Debian 13 (Trixie) and I am running:<br />
dpkg -i mysql-apt-config_0.8.34-1_all.deb<br />
Which launches the installer, but initially, as it didn&#039;t have a Trixie option listed, I selected the Abort option so I could research what to do. Now I know I can use the Bookworm option (with a manual install of libaio1), I am re-running the above, but on the second time of running exactly the same command as above, nothing happens!<br />
<br />
dpkg -i mysql-apt-config_0.8.34-1_all.deb<br />
(Reading database ... 34911 files and directories currently installed.)<br />
Preparing to unpack mysql-apt-config_0.8.34-1_all.deb ...<br />
Unpacking mysql-apt-config (0.8.34-1) over (0.8.34-1) ...<br />
Setting up mysql-apt-config (0.8.34-1) ...<br />
<br />
And then I am returned to the prompt?!<br />
<br />
How do IRunn run the installer a second time so I can continue?]]></description>
            <dc:creator>Alan Ingram</dc:creator>
            <category>Newbie</category>
            <pubDate>Fri, 03 Oct 2025 23:16:17 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741246,741246#msg-741246</guid>
            <title>DDL on large Aurora MySQL table (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741246,741246#msg-741246</link>
            <description><![CDATA[ My colleague ran an alter table convert charset on a large table which seems to run indefinitely, most likely because of the large volume of data there (millions of rows), it slows everything down and exhausts connections which creates a chain reaction of events Looking for a safe zero downtime approach for running these kind of scenarios Any CLI tool commonly used? I don&#039;t think there is any service i can use in aws (DMS feels like an overkill here just to change a table collation)]]></description>
            <dc:creator>Pearl Goodwin</dc:creator>
            <category>Newbie</category>
            <pubDate>Fri, 26 Sep 2025 08:29:40 +0000</pubDate>
        </item>
    </channel>
</rss>
