Quantcast
Channel: MySQL Forums - InnoDB
Viewing all articles
Browse latest Browse all 1957

index location for innodb engines tables (no replies)

$
0
0
Hi,

with MyIsam it's possible to set a location for the indexes of a table. This can be beneficial in some cases, like storing the actual data on a raid 01 with normal HD's and the index on a SSD.
Create table looks something like this (where mysql has the data on the D drive):

CREATE TABLE IF NOT EXISTS `mydb`.`table1` (
`id` INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`))
ENGINE = MyISAM
INDEX DIRECTORY = 'c:\MySQLIndices';

Is there any way I can do something like this with inno db tables? Or benefit in any other way from the SSD speed, other than moving the entire data collection to the SSD ('cause that's not what I want).
Kind regards,

Matthijs

Viewing all articles
Browse latest Browse all 1957

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>