MySQL Forums
Forum List  »  Partitioning

Re: DATA/INDEX DIRECTORY on Windows
Posted by: Ronald Rudy
Date: August 16, 2007 09:19AM

Jon Stephens Wrote:
-------------------------------------------------------
> Perhaps it's the space characters? Try using
> directory paths that don't include spaces. If that
> solves the problem, please file a bug.


Still a problem:
mysql> create table testp
    -> (
    ->   id int primary key auto_increment,
    ->   value varchar(255)
    -> )
    -> partition by hash(id)
    -> (
    ->   partition p0
    ->     data directory = 'D:/partitiontest/data/testdb'
    ->     index directory = 'E:/partitiontest/indexes/testdb'
    -> );
Query OK, 0 rows affected (0.03 sec)

mysql> insert into testp (value) values ('xyz');
ERROR 1017 (HY000): Can't find file: 'testp' (errno: 2)

Options: ReplyQuote


Subject
Views
Written By
Posted
4946
July 05, 2007 09:28AM
Re: DATA/INDEX DIRECTORY on Windows
2935
August 16, 2007 09:19AM
2849
August 16, 2007 10:04AM


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.