Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-12-2018 09:47 AM
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 node?
Best.
12-13-2018 08:02 PM
Hi,
I am having some problems in connecting my sql server to Neo4j. I appreciate sharing the steps you took to make the connection.
Thanks,
-Kamal
12-14-2018 03:28 AM
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)
set p=row
set p.NodeName = 'House';
I don't have a connection automatically, but now, I'm searching how I can do it.
12-14-2018 09:46 AM
Hi,
Thanks for sharing the code and that really helped me. I could connect to my sql server.
For updating, check this Kafka integration article by Michael Hunger:
-Kamal
All the sessions of the conference are now available online