MySQL Forums
Forum List  »  NDB clusters

moved to 5.1.9 and unable to create tables.
Posted by: richard horan
Date: May 11, 2006 10:42AM

i built 5.1.9 and created a new directory. i blew away the old data and cluster directories. i did a mysql_install_db and i am unable to create tables.

What am i doing wrong? What do i look for to fix this?


mysql> connect test;
Connection id: 8
Current database: test

mysql> show tables;
Empty set, 1 warning (0.00 sec)

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
+--------------------+
2 rows in set (0.00 sec)

mysql> create table junk(i int);
ERROR 1050 (42S01): Table 'junk' already exists
mysql> drop table test.junk;
ERROR 1051 (42S02): Unknown table 'junk'
mysql> drop table junk;
ERROR 1051 (42S02): Unknown table 'junk'
mysql>

Options: ReplyQuote


Subject
Views
Written By
Posted
moved to 5.1.9 and unable to create tables.
1957
May 11, 2006 10:42AM


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.