[orientdb] Re: How to store polygon data through browser

2016-12-01 Thread user . work111
Hi, can you provide more information? which verision are you using? which is your structure? can you post the exception? Thx in advance Regards, Michela -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and

[orientdb] How to store polygon data through browser

2016-12-01 Thread thulaseeswara reddy gajjala
hi any one can help me below query how to store a polygon data in orientdb through browser I have tried this:

[orientdb] Re: Orientdb studio give error "server might offline" while executing some queries.

2016-12-01 Thread Amee
Its not occasional.. but its strange..query working on console perfectly but not in studio. On Thursday, 1 December 2016 21:09:03 UTC+5:30, Oleksandr Gubchenko wrote: > > Is it an occasional behaviour? > Also use the latest 2.2.13 version. > > Il giorno giovedì 1 dicembre 2016 12:51:46 UTC+1,

[orientdb] Re: Can't select data from connected document

2016-12-01 Thread Ivan Mainetti
well, getProperty returns something very similar actually System.out.println("3 " + d.getProperty("account.@rid")); System.out.println("3 " + d.getProperty("account")); 3 v(Account)[#25:0] 3 v(Account)[#25:0] But! I've found this! String query = "select name, in('Employs')[0] as account,

[orientdb] Re: Good query for for edges regarding start and end vertex.

2016-12-01 Thread Ivan Mainetti
not sure if this may work for you, but you could query via sql something like select from E where out contains [, , ] and in contains [, , ] and = "something" Il giorno mercoledì 30 novembre 2016 15:19:24 UTC+1, Ray Neiheiser ha scritto: > > I have some performance problems with reading

[orientdb] Re: Can't select data from connected document

2016-12-01 Thread Borov
I did, but it doesn't work. It pulls the entire 'account' object. System.out.println("acc rid = "+ d.field("account.@rid")); System.out.println("acc rid = "+ d.field("account")); acc rid = Account#25:0{...} acc rid = Account#25:0{...} On Thursday, December 1, 2016 at 1:34:04 PM UTC-8, Ivan

[orientdb] Re: Can't select data from connected document

2016-12-01 Thread Ivan Mainetti
Did you try with one of these? d.field("account.@rid") d.field("account") Il giorno giovedì 1 dicembre 2016 20:36:01 UTC+1, Borov ha scritto: > > Hi Ivan, > > In my original logic "d" is of type ODocument ( >

[orientdb] Re: Can't select data from connected document

2016-12-01 Thread Borov
Hi Ivan, In my original logic "d" is of type ODocument (http://orientdb.com/javadoc/2.2.x/com/orientechnologies/orient/core/record/impl/ODocument.html) and it doesn't have .getProperty(...) method. Can I get the account.@rid from the SQL API and not the Graph API? On Wednesday, November

[orientdb] Re: Good query for for edges regarding start and end vertex.

2016-12-01 Thread Ray Neiheiser
Exactly, I need to find edges knowing start and vertices and it's possible that I know edge label and property sometimes as well. Am Mittwoch, 30. November 2016 20:19:45 UTC-2 schrieb Ivan Mainetti: > > please help me understand, you need to search edges knowing start and end > vertices? > > >

[orientdb] Re: Orientdb studio give error "server might offline" while executing some queries.

2016-12-01 Thread Oleksandr Gubchenko
Is it an occasional behaviour? Also use the latest 2.2.13 version. Il giorno giovedì 1 dicembre 2016 12:51:46 UTC+1, Amee ha scritto: > > Hi > i am using orientdb 2.2.10-SNAPSHOT version. > This error comes while i was fetching specific record with one specific > class only. > 2 clusters are

[orientdb] Re: [HELP] find document inside list

2016-12-01 Thread Oleksandr Gubchenko
Try this one: select from EHR where 'composition' in compositionList.class Il giorno giovedì 1 dicembre 2016 15:03:58 UTC+1, Oleksandr Gubchenko ha scritto: > > What is a type of compositionList? Is it an embedded list? > > Il giorno giovedì 1 dicembre 2016 14:27:12 UTC+1, Academia Learning

[orientdb] Re: [HELP] find document inside list

2016-12-01 Thread Oleksandr Gubchenko
What is a type of compositionList? Is it an embedded list? Il giorno giovedì 1 dicembre 2016 14:27:12 UTC+1, Academia Learning Centro de inglés y de formación ha scritto: > > Hi, I want to look for a document within a list, but I can not find the > way, I'm trying this but it gives me error > >

[orientdb] [HELP] find document inside list

2016-12-01 Thread Academia Learning Centro de inglés y de formación
Hi, I want to look for a document within a list, but I can not find the way, I'm trying this but it gives me error *select from object where compositionsList traverse ( class = 'composition' ),* but this not working { "object" :{ "compositionList" : [ {"class" : "composition"},

Re: [orientdb] Re: Mass insertion of vertices very slow, is it necessary Performance Tuning?

2016-12-01 Thread Aceitunas y encurtidos Quijote
If I am doing searches to add edges and I do not have indexes El jueves, 1 de diciembre de 2016, 13:02:09 (UTC+1), l.garulli escribió: > > Are you doing lookups and in this case, do you have indexes defined on the > lookup fields? > > Best Regards, > > Luca Garulli > Founder & CEO > OrientDB LTD

Re: [orientdb] Re: Mass insertion of vertices very slow, is it necessary Performance Tuning?

2016-12-01 Thread Luca Garulli
Are you doing lookups and in this case, do you have indexes defined on the lookup fields? Best Regards, Luca Garulli Founder & CEO OrientDB LTD On 1 December 2016 at 08:48, Aceitunas y encurtidos Quijote < encurtidosquij...@gmail.com> wrote: > Hello, you are finished

[orientdb] Re: Orientdb studio give error "server might offline" while executing some queries.

2016-12-01 Thread Amee
Hi i am using orientdb 2.2.10-SNAPSHOT version. This error comes while i was fetching specific record with one specific class only. 2 clusters are connected with this class. I was thinking like when that specific record created it was connected with one node and now may be other node is online.

[orientdb] Import RDF Triples into OrientDB

2016-12-01 Thread Johann Höchtl
I would like to import RDF-Triples NT into OrientDB but the information available after googling is at best sketchy. https://www.w3.org/TR/n-triples/ Please provide a meaningful step-by-step guide which components are involved, is Tinkerpop/SAIL required and how to set things up accordingly.