Advertisement:

Author Topic: oc_t_item_description is MyISAM ?  (Read 701 times)

Aficionado

  • Guest
oc_t_item_description is MyISAM ?
« on: October 09, 2017, 12:11:47 am »
I see than while everything else in my db is innoDB, oc_t_item_description is MyISAM.

Any ideas why that happens and what it means ? And should i switch it also to innoDB ?

Thanks

marius-ciclistu

  • issues
  • Hero Member
  • *
  • Posts: 1652
  • "BE GRATEFUL TO THOSE THAT SUPPORTED YOU"
Re: oc_t_item_description is MyISAM ?
« Reply #1 on: October 09, 2017, 12:18:12 am »

Aficionado

  • Guest
Re: oc_t_item_description is MyISAM ?
« Reply #2 on: October 09, 2017, 12:19:10 am »
Yes, thanks. I know the difference. The question is why ONE only table is MyISAM ?

Should be like that ?

marius-ciclistu

  • issues
  • Hero Member
  • *
  • Posts: 1652
  • "BE GRATEFUL TO THOSE THAT SUPPORTED YOU"
Re: oc_t_item_description is MyISAM ?
« Reply #3 on: October 09, 2017, 12:22:55 am »
In my case is the same as you described it. Only this is MyISAM.

Maybe because the description is "the biggest" so this type is smaller in size...
« Last Edit: October 09, 2017, 12:24:31 am by marius-ciclistu »

teseo

  • Hero Member
  • *****
  • Posts: 6169
Re: oc_t_item_description is MyISAM ?
« Reply #4 on: October 09, 2017, 12:27:10 am »
Hi,

Code: [Select]
MYISAM supports fulltext search
It's a table originally built to optimize searches to a maximum. (Until MySQL 5.6 only MyISAM supported FULLTEXT).

Regards

Aficionado

  • Guest
Re: oc_t_item_description is MyISAM ?
« Reply #5 on: October 09, 2017, 12:40:17 am »
Ok, got it. Nothing wrong i guess, i was a bit worried.

Thanks !