I deleted the nodes from a label:
  match(n:clients) delete n;

When I attempted to re-load from CSV:

using periodic commit 10000
LOAD CSV WITH HEADERS FROM 
'file:/export/warehouse/tmp/clients_08-31-2016_02-03.txt' as row 
FIELDTERMINATOR '\t' with row as row where row.ClientsID is not null
merge (x:clients {ClientsID:row.ClientsID})
on create set x+=row on match set x=row
return count(*);


I get the error:

104 ms

WARNING: Node with id 122046120


I take it this is a node re-use error.

But the label is now corrupted. There are no node properties when I attempt 
to access the nodes.

Trying to delete all nodes:
 match (n:clients) delete n;

produces the result:

+--------------------------------------------+
| No data returned, and nothing was changed. |
+--------------------------------------------+
6 ms


A count shows there are 29 rows. How do I remove the rows or then entire 
label? 
 

 

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to