mysql> create table t1(id int,name varchar(100)) engine=myisam
    -> data directory='/usr/local/mysql/data'
    -> index directory='/usr/local/mysql/index';
ERROR 1210 (HY000): Incorrect arguments to DATA DIRECTORY


报错的解决办法

mysql> create table t1(id int,name varchar(100)) engine=myisam
    -> index directory='/usr/local/mysql/index';                                Query OK, 0 rows affected (0.06 sec)


Incorrect arguments to DATA DIRECTORY的解决方法

在操作系统里面路径下面的具体的情况

Incorrect arguments to DATA DIRECTORY的解决方法

Incorrect arguments to DATA DIRECTORY的解决方法




相关文章:

  • 2022-12-23
  • 2021-07-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-18
  • 2021-12-20
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-03
  • 2021-12-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案