[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Configuring oracle JDBC resource

2007-04-17 Thread kuruma45
http://www.onjava.com/pub/a/onjava/2004/02/25/jbossjdbc.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037864#4037864 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4037864

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - ORA-01031: insufficient privileges, grant requirements

2007-04-17 Thread kuruma45
Hi I have some problems to deploy EJB3 on JBOSS 4..0.5, abd a Oracle8i databse. DATABASE I have one instance of my database, and two schema SCH1 and SCH2, I'm log on SH1 and each Schema has any table. but I have to create a ejb entity SCH2_TABLE1, TABLE1 is a table of SH2, in the TABLE1

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: ORA-01031: insufficient privileges, grant requirements

2007-04-17 Thread kuruma45
I have ask to DB admin to put the sys privileges to SCH1 schema... I have a problem to bind my entity and table, i'm newbie on Oracle database, in my entity : @Entity @Table(name=SCH2_TABLE1) public class SCH2_TABLE1 implements java.io.Serializable { ...it works in some case, but there are

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: ORA-01031: insufficient privileges, grant requirements

2007-04-17 Thread kuruma45
it was simple, but hard to find the soluce : @Entity @Table(name=SCH2_TABLE1, schema=SCH2) public class SCH2_TABLE1 implements java.io.Serializable { I hope it will help somebody.. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037972#4037972 Reply to the