Re: [Neo4j] CSV Import Problems w/ Double Quotes

2014-11-11 Thread David Bigelow
cally correct" .csv files consumable by > Cypher. Perl has some nifty Text::CSV modules ready for use from CPAN. > > WBR, Andrii > > On Monday, November 3, 2014 2:12:02 AM UTC+2, David Bigelow wrote: >> >> Wow - I will check out your other tool suggestions Thanks for tha

Re: [Neo4j] CSV Import Problems w/ Double Quotes

2014-11-02 Thread David Bigelow
a simple sed script like "sed -e 's/"/''/g' > might help? replace a double quote with two single quotes? > > > > On Mon, Nov 3, 2014 at 12:32 AM, David Bigelow < > davidh...@simplifiedlogic.com > wrote: > >> Thanks for getting back so q

Re: [Neo4j] CSV Import Problems w/ Double Quotes

2014-11-02 Thread David Bigelow
oon as you have special stuff in > your text values like quotes or newlines and such, you _must_ quote them. > > Which tool created this unusual CSV format? > > Michael > > On Sun, Nov 2, 2014 at 10:52 PM, David Bigelow < > davidh...@simplifiedlogic.com > wrote: > >&

[Neo4j] CSV Import Problems w/ Double Quotes

2014-11-02 Thread David Bigelow
This was a painful discovery. It appears that neo4j is EXPECTING Quoted content in a CSV file no matter what. If you send data that does NOT have Text Qualifiers as an option from another database source to generate your CSV File but DOES have Double Quotes within the content, neo4j will consi

[Neo4j] Re: LOAD CSV - very slow in creating relationships

2014-10-18 Thread David Bigelow
INDEXES INDEXES INDEXES!!! Create them for nodes BEFORE attempting to import. 120k nodes --- without indexes HOURS!, 120k nodes w/ indexes UNDER A MINUTE! On Saturday, October 18, 2014 1:14:21 AM UTC-4, Rodger wrote: > > Dear Experts, > > I have about 88K Person nodes. > > match (x) > retur

Re: [Neo4j] ACTUAL regexp Matching?!

2014-09-23 Thread David Bigelow
THANKS On Tuesday, September 23, 2014 11:04:50 AM UTC-4, David Bigelow wrote: > > YOU ROCK! --- thanks! > > On Monday, September 22, 2014 6:08:23 PM UTC-4, Michael Hunger wrote: >> >> You probably have to double escape. >> >> try: >> >> RETURN

Re: [Neo4j] ACTUAL regexp Matching?!

2014-09-23 Thread David Bigelow
YOU ROCK! --- thanks! On Monday, September 22, 2014 6:08:23 PM UTC-4, Michael Hunger wrote: > > You probably have to double escape. > > try: > > RETURN "A Z. A Z" =~ '^[A-Z ]+\\. [A-Z ]+' > > and in regexps you don't have to escape spaces. >

[Neo4j] ACTUAL regexp Matching?!

2014-09-22 Thread David Bigelow
stumped by neo4j's regexp matching... It seems like glorified string matching (simple cases) what if you want to use something like this?! match n where n.name =~ '^[A-Z\ ]+\.\ [A-Z\ ]+' return n.name; neo4j can't figure out what this is... everything should be escaped properly -- but I think

Re: [Neo4j] ParameterNotFoundException - Cypher AJAX Request FAILURE (annoying)

2014-09-22 Thread David Bigelow
7;.*"+text+".*'} > ... > > On Fri, Sep 19, 2014 at 7:20 PM, David Bigelow < > davidh...@simplifiedlogic.com > wrote: > >> Still need to figure out how this is supposed to work with parameters.... >> any thoughts? >> >> >> On Satur

Re: [Neo4j] ParameterNotFoundException - Cypher AJAX Request FAILURE (annoying)

2014-09-19 Thread David Bigelow
Still need to figure out how this is supposed to work with parameters any thoughts? On Saturday, September 6, 2014 9:22:57 AM UTC-4, David Bigelow wrote: > > Michael - Thanks for your input on this. You got me past one hump and > into the next. > > Next problem -- "HOW

Re: [Neo4j] ParameterNotFoundException - Cypher AJAX Request FAILURE (annoying)

2014-09-06 Thread David Bigelow
Michael - Thanks for your input on this. You got me past one hump and into the next. Next problem -- "HOW" to pass the values for the parameter?! My goal is to pass in values to the function then pass them in as parameter values to the parameter in the cypher... (my understanding is that the

Re: [Neo4j] ParameterNotFoundException - Cypher AJAX Request FAILURE (annoying)

2014-09-05 Thread David Bigelow
transactional endpoint not the old one. > > Also you see that I don't use dataType json and that I stringify my post > data myself ? > > Michael > > Am 05.09.2014 um 20:21 schrieb David Bigelow < > davidh...@simplifiedlogic.com >: > > NADA! > > >

Re: [Neo4j] ParameterNotFoundException - Cypher AJAX Request FAILURE (annoying)

2014-09-05 Thread David Bigelow
NADA! var query_PATHS = "match n where n.name =~'.*{myParam}.*' return n"; var cypherRequest = { statements : [{ statement: query_PATHS, parameters: 'myParam', resultDataContents: ["row", "graph"]

Re: [Neo4j] Neo4J and Javascript Graph Viewer

2014-09-04 Thread David Bigelow
I recall something about Alchemy.js adding support for adding nodes and relationships maybe a binding to editing node data - it would be needed, I do have concerns about SVG as the layer - D3 seems to bog down in some browsers with larger contexts... have you looked at Go.JS? Dave On Thursda

[Neo4j] ParameterNotFoundException - Cypher AJAX Request FAILURE (annoying)

2014-09-04 Thread David Bigelow
OK - This has been pounding my head all day. Here is a simple example that has been constructed from multiple help docs, various sites on the net -- but mainly from the neo4j docs. There is a BIG question of when you use the new Transaction vs Cypher URL Endpoints -- this is done in 2.1.3 and

[Neo4j] Find Disconnected Nodes

2014-07-17 Thread David Bigelow
I am completely stumped on this. Is there a way to find nodes that have NO connection to anything else in the graph?! I have tried several different ways - but nothing seems to be working. Any suggestions?! Dave -- You received this message because you are subscribed to the Google Groups "N