Unsupported Screen Size: The viewport size is too small for the theme to render properly.

MyISam to InnoDB Problem

forums forums SQLyog Using SQLyog MyISam to InnoDB Problem

  • This topic is empty.
Viewing 3 reply threads
  • Author
    Posts
    • #8517
      shane_1
      Member

      Can someone help me please. when i change my tables to InnoDB they automatically go back to MyISam. i dont want MyISam i want InnoDB. So what do i do to fix this probelm? i heard that there is file i need to change, but i dont know the file name or directory. So help me anyway you can. Thanks.

    • #16139
      CalEvans
      Member

      Does your server have InnoDB support compiled in?

      =C=

    • #16140
      shane_1
      Member

      yes. its just some how you change sqlyog to allow InnoDB. there is some file where you can change it but i cant remember which file or the directory its in. do you know what i meen? if so, whats the file name and whrere is it?

    • #16141
      Shadow
      Member

      Enabling InnoDB does not have anything to do with SQLyog, you have to set certain options in MySql's config file name either my.ini or my.cnf. In windows this file is located either in C: or in Win's own folder.

      Following variables must be set (path must be changed, the rest are valid):

      innodb_data_file_path = ibdata1:20M:autoextend:max:1000M

      innodb_data_home_dir = path

      innodb_log_group_home_dir =path

      innodb_log_arch_dir =path

      set-variable = innodb_mirrored_log_groups=1

      set-variable = innodb_log_files_in_group=3

      set-variable = innodb_log_file_size=5M

      set-variable = innodb_log_buffer_size=2M

      innodb_flush_log_at_trx_commit=1

      innodb_log_archive=0

      set-variable = innodb_buffer_pool_size=10M

      set-variable = innodb_additional_mem_pool_size=2M

      set-variable = innodb_file_io_threads=4

      set-variable = innodb_lock_wait_timeout=50

Viewing 3 reply threads
  • You must be logged in to reply to this topic.