WHILE IMPORTING sss.csv file in NEO4J, this error appear.
Neo.ClientError.Statement.SyntaxError
Neo.ClientError.Statement.SyntaxError: Invalid input 's': expected four hexadecimal digits specifying a unicode character (line 2, column 39 (offset: 60))
"LOAD CSV WITH HEADERS FROM 'file:C:\Users\SIEVA-2019.Neo4jDesktop\neo4jDatabases/sss.csv' AS line"
WHILE IMPORTING sss.csv file in NEO4J, this error appear.
*Neo.ClientError.Statement.SyntaxError*
Neo.ClientError.Statement.SyntaxError: Invalid input 's': expected four hexadecimal digits specifying a unicode character (line 2, column 39 (offset: 60))
"LOAD CSV WITH HEADERS FROM 'file:C:\Users\SIEVA-2019.Neo4jDesktop\neo4jDatabases/sss.csv' AS line"
PLEASE, HELP ME HANDLE THIS.
COMMAND USED:
USING PERIODIC COMMIT
LOAD CSV WITH HEADERS FROM 'file:C:\Users\SIEVA-2019.Neo4jDesktop\neo4jDatabases/sss.csv' AS line
CREATE (:Track { TrackId: line.Id, Name: line.Track, Length: line.Length})
I think the problem is with the \ in the path. If you change that to match the other /, it should work.
"LOAD CSV WITH HEADERS FROM 'file:///C:/Users/SIEVA-2019.Neo4jDesktop/neo4jDatabases/sss.csv'"
It also looks like you are missing the number of records to periodically commit.
"USING PERIODIC COMMIT 500"
I've never tried it without a number so I don't know how it would react.