0
特殊文字を持つCSVファイルをインポートするために、私はこのクエリを実行しているとき' , " , \
のようないくつかの特殊文字を持ってcsvファイルをインポートしようとしています -のNeo4j - どのよう
LOAD CSV WITH HEADERS FROM "http://192.168.11.121/movie-reco-db/movie_node.csv" as row
CREATE (:Movie_new {movieId: row.movie_id, title: row.title, runtime: row.runtime, metaScore: row.meta_score, imdbRating: row.IMDB_rating, imdbVotes: row.IMDB_votes , released: row.released , description: row.description , watchCount: row.watch_count , country: row.country ,
category: row.category , award: row.award , plot: row.plot , timestamp: row.timestamp})
をそれはエラーがスローされます -
At http://192.168.11.121/movie-reco-db/movie_node.csv:35 - there's a field starting with a quote and whereas it ends that quote there seems to be characters in that field after that ending quote. That isn't supported. This is what I read: ' Awesome skills performed by skillful players! Football Circus! If you like my work, become a fan on facebook",0,USA,Football,N/A,N/A,1466776986
260,T.J. Miller: No Real Reason,0,0,7.4,70,2011-11-15," '
ファイルをデバッグし、問題の原因となっている行から\
を削除してから、上記のクエリを再実行するとうまくいきました。クエリでそれを行うための良い方法はありますか、そのような種類の文字を毎回見つけて削除する必要がありますか?
これを実行する他の方法はありますか?ファイルから直接削除するのは面倒です。 –