Re: [Neo4j] RDBMS to neo4j migration

2014-12-09 Thread Michael Hunger
The question is: what is your use-case. That drives your graph model. Do yo have an example for your table? Is it a big denormalized table? On Tue, Dec 9, 2014 at 8:12 PM, Nikhil Rathi wrote: > Hi, > we have a RDBMS table where each column is a code to something meaningful. > The complete row

Re: [Neo4j] Tinkerpop 2.6 and Neo4j 2.1.5

2014-12-09 Thread Michael Hunger
Yes it should suffice, perhaps you can send it back to the tinkerpop repository as a pull request? Thanks a lot Michael On Wed, Dec 10, 2014 at 5:18 AM, Nipa Shah wrote: > Hi, > > I was looking at the pom for Neo4j implementation file and my observation > is that it depends on neo4j version 2.

[Neo4j] RDBMS to neo4j migration

2014-12-09 Thread Nikhil Rathi
Hi, we have a RDBMS table where each column is a code to something meaningful. The complete rows is unique in the Table. Each column in row must be connected to other in the same row. The graph model must retain the exact rows. I can see that the graph out of a table would be a cyclic graph with

[Neo4j] Tinkerpop 2.6 and Neo4j 2.1.5

2014-12-09 Thread Nipa Shah
Hi, I was looking at the pom for Neo4j implementation file and my observation is that it depends on neo4j version 2.0.1 community edition. What I am looking is to use the enterprise edition of Neo4j and potentially the latest version such as 2.1.5 or 2.1.6. Have you certified Tinkerpop 2.6 to

[Neo4j] Re: UpdatePuller generating approximately 300Mb of garbage each cycle

2014-12-09 Thread Eric Pederson
PS. I am planning on going to the NYC Neo4j Graph Days later this week. Will there be someone there who I can talk about these types of questions? On Monday, December 8, 2014 6:20:22 PM UTC-5, Eric Pederson wrote: > > Hi there - > > We are running Neo4j 2.1.6 HA. We are noticing that on an o

Re: [Neo4j] 'Using Periodic Commit' throws a invalid syntax exception

2014-12-09 Thread Michael Hunger
Hi, your email format seems to be off, I can't read it. What is it you want to do? Periodic commit is now limited to LOAD CSV and can't be used outside of it anymore (since 2.1.0) Cheers, Michael On Mon, Dec 8, 2014 at 4:57 PM, wrote: > Hi, I'm trying to use the query that Michael wrote: >

Re: [Neo4j] 'Using Periodic Commit' throws a invalid syntax exception

2014-12-09 Thread lara
Hi, I'm trying to use the query that Michael wrote: MATCH (a) LIMIT 1 OPTIONAL MATCH (a)-[r]-() DELETE a,r RETURN count(*); And it doesn't work: Invalid input 'I': expected 'o/O' (line 2, column 2) "LIMIT 1" What can I do? I'm using the version 2.1.5 Fran On Tuesday, 17 June 2014 1

Re: [Neo4j] Neo4j 2.2.0.M01 - NoSuchMethodError

2014-12-09 Thread tobias . lindaaker
Hi Florent, Thank you for reporting this. As Chris said, this was not a planned incompatible, nor was it a necessary one. It has been fixed for future releases of Neo4j 2.2 (as part of this change set ). Cheers, T

Re: [Neo4j] How to modify the search criteria

2014-12-09 Thread Sukaant Chaudhary
Michael, Actualy, my requirement was only MATCH (program:Program) WHERE program.genre =~ '(?i).*(*coo*).*' RETURN program.genre; And this is for explaining the possibilities *coo|coc|tail|ler* I guess the above query wont be slow. -Sukaant Chaudhary