Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the astra domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/sqrtyhjzaqx471/public_html/wp-includes/functions.php on line 6121
Warning: Cannot modify header information - headers already sent by (output started at /home/sqrtyhjzaqx471/public_html/wp-includes/functions.php:6121) in /home/sqrtyhjzaqx471/public_html/wp-content/plugins/bbpress/includes/replies/functions.php on line 2160
Warning: Cannot modify header information - headers already sent by (output started at /home/sqrtyhjzaqx471/public_html/wp-includes/functions.php:6121) in /home/sqrtyhjzaqx471/public_html/wp-content/plugins/bbpress/includes/replies/functions.php on line 2161 » All Posts
https://softechquery.com/categories/mysql/feed
Tue, 01 Jul 2025 05:47:44 +0000https://bbpress.org/?v=2.6.11en-UShttps://softechquery.com/discussion/how-can-we-run-multiple-mysql-server-on-a-single-machine/#post-118
https://softechquery.com/discussion/how-can-we-run-multiple-mysql-server-on-a-single-machine/#post-118
Thu, 10 Oct 2024 06:21:30 +0000avi
Yes, you just need to run them on separate ports and point them at different lib directories for their data.
Here’s a good reference: http://dev.mysql.com/doc/refman/5.1/en/mutiple-servers.html
(If you want to use this for testing, I suggest checking out MySQL Sandbox which is now replaced by dbdeployer)
]]>
https://softechquery.com/discussion/how-to-increase-mysql-import-file-size/#post-127
https://softechquery.com/discussion/how-to-increase-mysql-import-file-size/#post-127
Thu, 03 Oct 2024 11:15:32 +0000vanshika
It’s something that many people struggle with when they migrate or upload their data. I want to know exactly how to increase max upload size in phpMyAdmin
]]>
https://softechquery.com/discussion/how-can-we-run-multiple-mysql-server-on-a-single-machine/#post-116
https://softechquery.com/discussion/how-can-we-run-multiple-mysql-server-on-a-single-machine/#post-116
Thu, 03 Oct 2024 10:47:49 +0000vanshika
Can we run multiple MySQL servers on a single machine?
]]>
https://softechquery.com/discussion/how-to-convert-text-column-to-datetime-in-sql/#post-115
https://softechquery.com/discussion/how-to-convert-text-column-to-datetime-in-sql/#post-115
Thu, 03 Oct 2024 10:46:53 +0000avi
Step 1: Add new Column ALTER TABLE table_name ADD (duplicate_column datetime);
Step 2: Update new Column with existing value UPDATE table_name SET duplicate_column = str_to_date(column_name, '%d-%m-%Y %h:%i:%s');
]]>
https://softechquery.com/discussion/how-to-convert-text-column-to-datetime-in-sql/#post-114
https://softechquery.com/discussion/how-to-convert-text-column-to-datetime-in-sql/#post-114
Thu, 03 Oct 2024 10:46:22 +0000vanshika
How do I convert data in a datetime format as the reason for the conversion is that I was trying to get the total number of hours between a datetime column and the date stamp.
]]>
https://softechquery.com/discussion/create-new-column-with-existing-value-on-other-column-in-mysql/#post-113
https://softechquery.com/discussion/create-new-column-with-existing-value-on-other-column-in-mysql/#post-113
Thu, 03 Oct 2024 10:43:50 +0000avneesh
Step 1: Add new Column ALTER TABLE long_holiday ADD (duplicate_date DATE);
Step 2: Update new Column with existing value UPDATE long_holiday SET duplicate_date = STR_TO_DATE(start_date , '%d-%m-%Y');
]]>
https://softechquery.com/discussion/create-new-column-with-existing-value-on-other-column-in-mysql/#post-112
https://softechquery.com/discussion/create-new-column-with-existing-value-on-other-column-in-mysql/#post-112
Thu, 03 Oct 2024 10:42:40 +0000avi
I have start_date(varchar) column and i want to add new column duplicate_date(date) with values of start_date column
]]>