cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

lkapusta
Node
since ‎09-29-2018
‎06-01-2022

User Statistics

  • 5 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I got something like that: MATCH (a:A) WITH a.id as `aId`, a.acRef as `acRef` MATCH (b:B) WITH b.id as bId, b.bcRef as `bcRef` MATCH (c:C) WHERE acRef=c.aRef and bcRef=c.bRef RETURN aId, bId, c.id as `cId` but ofcourse it doesn't work because I'm no...
I have table which size is ~100gb in postgresql. When I try to import that table: /home/user/neo4j-etl-cli-1.2.1/bin/neo4j-etl export --url jdbc:postgresql://127.0.0.1:5432/base --user user --password pass --schema myschema --fs 100 --import-tool /us...