how to change database schema online in NDB cluster
Repost:
how to change database schema in ndbcluster
for example add indexes to a table , change column data type etc.below is the error i get when i try to do so. Isnt it supported ?
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
Subject
Views
Written By
Posted
how to change database schema online in NDB cluster
1639
June 04, 2016 11:37PM
735
June 07, 2016 03:27AM
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.