I've been facing trouble creating a first index for my table. Whether I do:
ALTER TABLE table ADD INDEX(column(4));
or
CREATE INDEX column ON table (column(20));
I get,
ERROR 1210 (HY000): Incorrect arguments to DATA DIRECTORY
Am I doing something wrong with the naming of the table? Or the prefix length? Changing either of those, making the index name a unique name or the name of the column, etc, doesn't eliminate the error. Some of the columns are VARCHAR, one is YEAR, and contain either text strings or numbers if that helps.
SHOW CREATE TABLE `table`. – Shi Jul 31 '11 at 4:15current_members(fnamevarchar(128) DEFAULT NULL,lnamevarchar(128) DEFAULT NULL,gpachar(5) DEFAULT NULL,grad_yearyear(4) DEFAULT NULL,majorvarchar(128) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='./members/' INDEX DIRECTORY='./members/' | ---What would a bad data directory set look like? – mwcarper13 Aug 1 '11 at 1:57