Eu nunca fiz isso, mas sua pergunta está relacionada às ferramentas que eu uso, então fiquei curioso! Parece que isso é realmente possível, aqui está um exemplo:
Sometime you may need to recover a table when all you have is the .ibd file. In this case, if you try to load it into a new instance, your likely to encounter some errors about the table id not matching. And there is not really a way around this.
However, I’ve found two work-arounds for this:
Note: You will need the .ibd file and the CREATE TABLE statement for each table you want to recover using these methods.
- Simulate the internal InnoDB table counter. That is, create work tables (with innodb_file_per_table enabled) until you have the internal pointer of table id equal to (1 – id_of_ibd_table_you_need_to_restore). (See Method #1)
- Manually hex edit the .ibd file, changing the table id. (See Method #2)
Os passos em si são de várias páginas, por isso não os colei aqui.
Outra postagem relacionada: link
Eu ficarei curioso em saber se isso funciona, parece que várias pessoas o utilizaram com sucesso.