Re: MySQL 8 Windows Deletion Performance Improvement?
Sure! What is "Explain"?
key_buffer_size=8M
read_buffer_size=64K
read_rnd_buffer_size=256K
NOTE: The "key" on the temp_roles table did not exist when I posted this nor when I tried this, it is being created now (and it takes a long time for that):
CREATE TABLE `roles` (
`job_id` varchar(255) NOT NULL,
`role` varchar(255) NOT NULL,
`modify_timestamp` timestamp NULL DEFAULT NULL,
KEY `idx_job_id` (`job_id`) USING BTREE,
KEY `idx_role` (`role`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE `temp_roles` (
`job_id` varchar(255) NOT NULL,
`role` varchar(255) NOT NULL,
`modify_timestamp` timestamp NULL DEFAULT NULL,
KEY `idxRolesJobID` (`job_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Subject
Views
Written By
Posted
817
January 14, 2020 03:24PM
461
January 14, 2020 03:37PM
Re: MySQL 8 Windows Deletion Performance Improvement?
505
January 14, 2020 03:44PM
504
January 14, 2020 03:58PM
458
January 14, 2020 11:30PM
487
January 15, 2020 07:13AM
457
January 15, 2020 11:33AM
514
January 15, 2020 11:44AM
524
January 15, 2020 07:17AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.