MySQL Forums
Forum List  »  NDB clusters

how to change database schema online in NDB cluster
Posted by: urgen sherpa
Date: June 04, 2016 11:37PM

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

Options: ReplyQuote


Subject
Views
Written By
Posted
how to change database schema online in NDB cluster
1501
June 04, 2016 11:37PM


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.