MySQL Forums
Forum List  »  NDB clusters

Got error 708 'No more attribute metadata records (increase MaxNoOfAttributes)' from NDB
Posted by: Sebastien LELIEVRE
Date: May 04, 2007 01:30AM

Hi,

I was trying to modify some OBM SQL scripts to configure it on a MySQL Cluster dbms

I got an error with this table :

mysql> CREATE TABLE Invoice (
-> invoice_id int(8) auto_increment,
-> invoice_domain_id int(8) default 0,
-> invoice_timeupdate timestamp,
-> invoice_timecreate timestamp,
-> invoice_userupdate int(8),
-> invoice_usercreate int(8),
-> invoice_company_id int(8) NOT NULL,
-> invoice_deal_id int(8) default NULL,
-> invoice_project_id int(8) default NULL,
-> invoice_number varchar(10) DEFAULT '0',
-> invoice_label varchar(40) NOT NULL DEFAULT '',
-> invoice_amount_ht double(10,2),
-> invoice_amount_ttc double(10,2),
-> invoice_status_id int(4) DEFAULT 0 NOT NULL,
-> invoice_date date not NULL DEFAULT '0000-00-00',
-> invoice_expiration_date date,
-> invoice_payment_date date,
-> invoice_inout char(1),
-> invoice_archive char(1) NOT NULL DEFAULT '0',
-> invoice_comment text,
-> PRIMARY KEY (invoice_id)
-> ) ENGINE=NDBCLUSTER;
ERROR 1005 (HY000): Can't create table 'obm.Invoice' (errno: 708)
mysql> SHOW WARNINGS;
+-------+------+------------------------------------------------------------------------------------------+
| Level | Code | Message |
+-------+------+------------------------------------------------------------------------------------------+
| Error | 1296 | Got error 708 'No more attribute metadata records (increase MaxNoOfAttributes)' from NDB |
| Error | 1005 | Can't create table 'obm.Invoice' (errno: 708) |
+-------+------+------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)

I've looked at the MySQL Cluster Limitations page, but I didn't find anything to explain that error.

I'm currently running MySQL Cluster 5.1.17

What am I missing ?

Regards,

Sebastien.

Options: ReplyQuote


Subject
Views
Written By
Posted
Got error 708 'No more attribute metadata records (increase MaxNoOfAttributes)' from NDB
12343
May 04, 2007 01:30AM


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.