MySQL Forums
Forum List  »  MyISAM

Re: Default storage engine
Posted by: Peter Brawley
Date: July 19, 2022 03:18PM

select version();
+-----------+
| version() |
+-----------+
| 8.0.29    |
+-----------+
show variables like '%storage%';
+---------------------------------+--------+
| Variable_name                   | Value  |
+---------------------------------+--------+
| default_storage_engine          | InnoDB |
| default_tmp_storage_engine      | InnoDB |
| disabled_storage_engines        |        |
| internal_tmp_mem_storage_engine | MEMORY |
+---------------------------------+--------+
SET GLOBAL default_storage_engine=MYISAM;
show global variables like '%storage%';        
+---------------------------------+--------+
| Variable_name                   | Value  |
+---------------------------------+--------+
| default_storage_engine          | MyISAM |
| default_tmp_storage_engine      | InnoDB |
| disabled_storage_engines        |        |
| internal_tmp_mem_storage_engine | MEMORY |
+---------------------------------+--------+

Options: ReplyQuote


Subject
Views
Written By
Posted
687
K B
July 18, 2022 06:26AM
447
July 18, 2022 10:14AM
418
K B
July 18, 2022 11:45PM
372
July 19, 2022 12:30AM
419
K B
July 19, 2022 01:47AM
Re: Default storage engine
408
July 19, 2022 03:18PM


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.