我正在使用root用户(在SQL节点上),我无法更改/修改远程访问的数据库表。可以修改本地访问的数据库表。要查看同时使用的数据库,我使用了show full processlist
。以下是发生的命令/错误。如何克服这些错误?
mysql> alter table `sks_staff_office` add index `pid_index` (pid);
ERROR 1296 (HY000): Got error 156 'Unknown error code' from NDBCLUSTER
mysql> create ONLINE index pid_index on sks_staff_office(pid);
ERROR 1296 (HY000): Got error 156 'Unknown error code' from NDBCLUSTER
mysql> alter online table `sks_staff_office` add index `pid_index` (pid);
ERROR 1296 (HY000): Got error 156 'Unknown error code' from NDBCLUSTER
谢谢。