Hello Team ,
I am in search of finding a way to directly export an ouput of oracle query into csv using call apoc.export.csv.query() in neo4j.
Please suggest.
Regards
Akshat
Hello Team ,
I am in search of finding a way to directly export an ouput of oracle query into csv using call apoc.export.csv.query() in neo4j.
Please suggest.
Regards
Akshat
apoc.export.csv.query would require its first argument to be a Cypher query which thus would query the data in Neo4j.
But if you want to export a Oracle query to CSV would you simply not use Oracle functionality to do so?
And if you are then to create the CSV is your intent to then read the CSV to populate Neo4j with the data? If so you could eliminate the need for CSV and simply use apoc.load.jdbc
Hello Dana,
Greetings!!
Highly appreciates your quick reply with guidance.
Here Problem is while loading data to neo4j using jdbc , it is taking a lot of time.
Whereas loading data from csv is faster than jdbc load. Hence required.
Is it possible to do so?
Regards
Akshat
1 of 2 options..