[orientdb] Re: How to create properites using ETL process

2016-08-17 Thread eswar reddy
sorry no use .same issue coming... On Wednesday, August 17, 2016 at 6:33:22 PM UTC+5:30, user.w...@gmail.com wrote: > > Hi, > > you have to use > > "dbAutoCreateProperties": true > > see my example: > > "loader" : { > "orientdb" : { > "dbURL" :

[orientdb] How to create properites using ETL process

2016-08-17 Thread eswar reddy
hi I am trying to load data

[orientdb] What is the stable version for production?

2016-07-28 Thread eswar reddy
may I know which version is stable version for Production environment -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[orientdb] Re: How to write code for orientdb performance tuning

2016-06-29 Thread eswar reddy
thanks. can you explain how to use JMX in orient db . with few examples thanks On Friday, June 24, 2016 at 4:47:54 PM UTC+5:30, Francisco Reyes wrote: > On Friday, June 24, 2016 at 2:44:28 AM UTC-4, eswar reddy wrote: > > Hi Eswar.. New to OrientDB here.. but figure would mention

[orientdb] How to write code for orientdb performance tuning

2016-06-24 Thread eswar reddy
Hi I am trying to write java code for performance tuning in orinent db but I am getting CPU details so how can I get only orient db details like : memory , utilizations , executions time I have read the ordb site JMX is there but how to write code they didn't mention thanks -- ---

[orientdb] Re: find vertex name

2016-05-27 Thread eswar reddy
hi Iterator it = outEdge.iterator(); *while*(it.hasNext()) { System.*out*.println(graph.getVertex(target.getId())+"--->"+it .next().getLabel()); } using above logic I can able to get the vertex name and label of the edges then I want get properties of that

[orientdb] Re: How can i achive Traversing using java

2016-05-26 Thread eswar reddy
thank for quic response can I mention class name vertex rather than using rid? On Thursday, May 26, 2016 at 5:44:55 PM UTC+5:30, eswar reddy wrote: > > <https://lh3.googleusercontent.com/-iCR4LKVCDhg/V0bofXDUeyI/AEU/yBhhsv1sPIc8YO8ihgVKrmX1jEg3zDqmgCLcB/s1600/edges.png> &

[orientdb] How can i achive Traversing using java

2016-05-26 Thread eswar reddy
Hi I have vertex connection that vertex containing multiple edges . how can I retrieve all in and out relations. how can I get above pic using java code -- ---

[orientdb] orientdb-community-2.2.0 startin issue

2016-05-26 Thread eswar reddy
HI I have download "orientdb-community-2.2.0" and I set JAVA_HOME and ORIENTDB_HOME I run the server.bat the command prompt is blink and gone any one help me is there any mistake done by me thanks -- --- You received this message because you are subscribed to the Google Groups

[orientdb] EDGES creations at RUN time

2016-05-13 Thread eswar reddy
I have two vertex V,V1. I have inserted data and created edges . after long time I got new requirement i.e I want insert some more data to the vertex the how the edges are created for that one any one help me please thanks -- --- You received this message because you are subscribed to the

[orientdb] Re: Insertion Excep

2016-05-02 Thread eswar reddy
thanks for your suggestions but if I use transactional graph it didn't rollback. when I use wrong query ( graph.command(new OCommandSQL(query).execute()); but the data is inserted into table On Monday, May 2, 2016 at 5:47:54 PM UTC+5:30, alessand...@gmail.com wrote: > Hi, > you must replace

[orientdb] Insertion Excep

2016-05-02 Thread eswar reddy
when I am trying to insert with the following query OrientGraphNoTx graph = factory.getNoTx(); * try* { String query = "INSERT INTO SuperMarket (Item,Code,Quantity) VALUES('banana',12.33,50)"; graph.command(*new* OCommandSQL(query).execute()); graph.commit(); } *catch* (Exception e) {

[orientdb] Re: Can i Establish a Connection between Orient DB and Geoserver?

2016-04-19 Thread eswar reddy
Hi Luca could you please look into my problem that Geo server connection . lake of this feature we are not able to use OrientDB . could you please give suggestions . On Tuesday, March 8, 2016 at 3:06:02 PM UTC+5:30, eswar reddy wrote: > I have configured a connection to load the file f

[orientdb] Can i Establish a Connection between Orient DB and Geoserver?

2016-03-08 Thread eswar reddy
I have configured a connection to load the file from Spalite and Oracle, like that i want to configure a connection between Geoserver and Orient DB. -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop

[orientdb] Re: Insert Multiplke data from file

2016-03-02 Thread eswar reddy
Hi Luca sorry to say that was not working *public* *static* *void* main(String[] args) { OrientGraphFactory factory = *new* OrientGraphFactory( "remote:localhost/Test", "root", "user"); OrientGraph graph = factory.getTx(); *try* { OClass F = graph.createVertexType("table1", "V");

[orientdb] Re: Insert Multiplke data from file

2016-03-02 Thread eswar reddy
Sorry Luca its not working .I have tried this On Wednesday, March 2, 2016 at 4:18:00 PM UTC+5:30, Luca Son wrote: > Hi Eswar, > > I tried your case and I found that the reason is that you have to create > the class 'table1' before inserting the records. > > If you change your code in this way

[orientdb] Insert Multiplke data from file

2016-03-02 Thread eswar reddy
HI I have a text file that file contains multiple records like INSERT INTO table1(nodeno,name) VALUES (29,21) INSERT INTO table1(nodeno,name) VALUES (30,22) INSERT INTO table1(nodeno,name) VALUES (31,23) INSERT INTO table1 (nodeno,name) VALUES (32,24) INSERT INTO table1(nodeno,name)

[orientdb] Best Approch For GUI?

2016-03-01 Thread eswar reddy
how to insert and fetch the data from GUI . what is the bets way . -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[orientdb] Re: Insert data from user end

2016-03-01 Thread eswar reddy
Thanks Luca On Tuesday, March 1, 2016 at 2:16:32 PM UTC+5:30, Luca Son wrote: > > Hi Eswar, > > you could use a loop to insert multiple records. Here's my code: > > BufferedReader reader = new BufferedReader(new > InputStreamReader(System.in)); > System.out.println("Insert the number of record to

[orientdb] Insert data from user end

2016-02-29 Thread eswar reddy
hi i have cretes schema type student i.e vertex.createProperty("NAME", OType.STRING); vertex.createProperty("ID", OType.INTEGER); vertex.createProperty("ADDRESS", OType.STRING) and i am inserting data from keyboard suing scanner class like Scanner scanner=null; scanner =new

[orientdb] How to iterate Multiple records

2016-02-29 Thread eswar reddy
I have fire a query the employee have multiple records. While iterating the values are not printing on console please help on this String query = String.*format*("select * from Employee"); OSQLSynchQuery qr = *new* OSQLSynchQuery(query); Iterable *vertices* = graph.command(qr).execute(); how

[orientdb] Re: CURD operations using gremlin in java

2016-02-25 Thread eswar reddy
OrientGraphFactory factory = *new* OrientGraphFactory( "remote:localhost/OrientDB", "root", "user").setupPool(1, 10); OrientGraph graph = factory.getTx(); OClass department = graph.createVertexType("DEPRT", "v"); department.createProperty("name", OType.*STRING*);

[orientdb] CURD operations using gremlin in java

2016-02-25 Thread eswar reddy
hi I have created a table in Orient DB in java code with the help if Gremlin API But I am not able to set multiple properties and how to insert records through Gremlin API lest example: OrientGraphFactory factory = *new* *OrientGraphFactory();* OrientGraph graph=factory.getTx(); *try*{

[orientdb] EDGE creation using Gremlin api in java

2016-02-24 Thread eswar reddy
I have wrote a snippet code for edge creation in java using gremlin like bellow: OrientGraphFactory factory = *new* OrientGraphFactory( "remote:localhost/OrientDB","root","user").setupPool(1,10); Graph graph=factory.getTx(); Vertex v = graph.addVertex("class:BUS"); v.setProperty("Name",