I am trying to create a database from dbpedia RDF triples. I have a table Categories which contains all the Categories in wikipedia. To store categorizations i have created a table with child and parent fields, both foreign keys to Categories table. To load categories from NTriples iam using the following SQL Query
INSERT INTO CatToCat (`child`, `parent`)
values((SELECT id FROM Categories WHERE BINARY identifier='Bar'),
(SELECT id FROM Categories WHERE BINARY identifier='Bar'));
But the insertion is very slow.. inserting 2.5Million relationships would take very long time.. is there better way to optimize the query, schema??