Re: [Neo4j] PropertyRecord claims to have more property blocks than can fit in a record

2020-11-25 Thread 'Michael Hunger' via Neo4j
Hi,

seems to be a issue with your store.
What is your database version?
Perhaps neo4j-admin copy would help for creating a fixed version of the
store.

Michael

Join our new Community Site & Forum 


On Wed, Nov 25, 2020 at 12:10 PM Filippo Grazioli 
wrote:

>
> Hello,
>
> I have a graph with 300k nodes and 4M relationships.
>
> I'd like to query all triples:
> MATCH p=()-[]->() RETURN p
>
> I get the following error:
> Neo.DatabaseError.Statement.ExecutionFailed org.neo4j.io.pagecache
> .CursorException: PropertyRecord claims to have more property blocks than
> can fit in a record
>
> Do you know what goes wrong? Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Neo4j" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to neo4j+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/neo4j/c180b9f7-ada9-4453-b9e9-1875bc2aac28n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/neo4j/CAKZwuWmFo9X3WQgD5Jbim8dAj%3DL23RSW6LGTajETLx5eD8cR7g%40mail.gmail.com.


[Neo4j] I need to match using 4 different logic in a sequence each time a match is not found. How can I accomplish this?

2020-11-25 Thread 'Shanthi Viswanathan' via Neo4j
I have 2 nodes employees and contractors. I get a name either with id or 
not. If I get the id then match on id and if not match on name. First match 
is against employees followed by contractor.  If I do not get a match then 
do a fuzy match with the name first for employee node and then contractor 
node.

WITH row WHERE row.CREATED_BY <> 'None' 
  CALL apoc.when(row.CREATED_BY_NTID IS NOT NULL, 
"MATCH (p:Employee {name: row.CREATED_BY}) WHERE p.account ENDS 
WITH row.CREATED_BY_NTID return p", 
"MATCH (p:Employee {name: row.CREATED_BY}) return p", {row:row}) 
yield value 
With row, value.p as p 
   IF value.p IS null 
   CALL apoc.when(row.CREATED_BY_NTID IS NOT NULL, 
 "MATCH (p:Contractor {name: row.CREATED_BY}) WHERE p.account ENDS 
WITH row.CREATED_BY_NTID return p", 
 "MATCH (p:Contractor {name: row.CREATED_BY}) return p", {row:row}) yield 
value 
With row, value.p as p 
 IF value.p IS null match (p:Employee) where p.name starts with 'XXX' 
return p  

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/neo4j/6318ef6b-465b-46e3-beb4-d638eeec6982n%40googlegroups.com.


[Neo4j] PropertyRecord claims to have more property blocks than can fit in a record

2020-11-25 Thread Filippo Grazioli


Hello,

I have a graph with 300k nodes and 4M relationships.

I'd like to query all triples:
MATCH p=()-[]->() RETURN p 

I get the following error:
Neo.DatabaseError.Statement.ExecutionFailed org.neo4j.io.pagecache
.CursorException: PropertyRecord claims to have more property blocks than 
can fit in a record 

Do you know what goes wrong? Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to neo4j+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/neo4j/c180b9f7-ada9-4453-b9e9-1875bc2aac28n%40googlegroups.com.