On Wed, 3 Nov 2004, Anders Green wrote: > Tobias Asplund wrote: > >If you installed MySQL 4.1.7 on Windows with the new installer > > Yes I did. > > >it will automatically use InnoDB tables as the default > > Ah ha. Thanks. :) > > > That just leaves this: > > > > So now my question "Where does InnoDB data get stored?"
You'll probably see some files in your data\ directory under your MySQL directory named something like 'ibdata1'. InnoDB stores all its data in a tablespace, so there won't (by default) be more than the .frm file per table (as of 4.1 you can override this with --innodb-file-per-table) You can read more about this here: http://dev.mysql.com/doc/mysql/en/InnoDB.html > -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]