i downloaded the Database dump of Freebase. The format of the file is rdf turtle. I need to get all the data into the neo4j database.
I already wrote an importer wit
There is a plugin that allows you to import RDF-Data into Neo4j. You simply put the semantics.liteOntoImport.jar-File into your plugin folder and in Neo4j command line you call:
CALL semantics.liteOntoImport('file:///filename.owl','RDF/XML')
Therefore your file should be in the import directory of Neo4j. If it is not you should enter the full path.
EDIT
Same procedure works for .xml and .ttl files, just change the type of the file in the command line (second argument) e.g. 'TURTLE'.