Hi,
I have a connection between SQL SERVER to my neo4j db using APOC. I created a node called "People" and have 88 people in the graph. My question is: if I add a person on my relational database, how can I see that person in my neo4j database as new...
Hi,
It is possible create the connection between Microsoft SQL Server 2016 and neo4j Version: 1.1.12?, the idea is not import a csv, I mean to get the data directly from the DB to neo4j.
Regards.
Jorge.
Michael, thanks you for your answer, it was very useful. Although I had an error (EPIPE) in this line g.setGraphVizPath( "/usr/local/bin" );. The solution is to change the path to the binaries files (if you are working on windows)
Best!
Hi, Kamal:
I connected SQL SERVER using APOC.
1.- Install APOC in neo4j.
2.- Create a query, in my case:
call apoc.load.jdbc(jdbc:sqlserver://localhost:1433;databaseName=DATABASENAME;user=USER;password=PASSWORD,'House')
yield row
create (p:House)
s...