I'm running the latest PAMP on my N95-4 8GB, and everything seems to be running just fine. Except:
First I create a table:
This works without any problems.Code:CREATE table `civicaddress` ( `street_no` int(11) NULL, `street_nm` char(50) NULL, `comm_nm` char(30) NULL, `apt_no` char(10) NULL, `county` char(3) NULL, `latitude` real(11,5) NULL, `longitude` real(11,5) NULL);
Next, I attempt to create an index, and get the following error:
I can successfully create the index by dropping the table and creating the index at table creation time, but I don't seem to be able to create any indices after the fact.Code:mysql> CREATE index `StreetNumberDex` on civicaddress (street_no); ERROR 7 (HY000): Error on rename of \ '.\civicaddress\civicaddress.MYI' to \ '.\civicaddress\#sql2-198-1.MYI' (Errcode: 2)




