0
votes
0answers
8 views

Hibernate Audit tables LOB field - ORA-24816:Expanded non LONG bind data after actual LONG or LOB column

I'm using hibernate version 4.2.1.Final with oracle10g, I am getting ORA-24816 after updating an entity that has audited lob column. I see there is a fix for this error in here ...
0
votes
1answer
25 views

Hibernate asks for collections using multiple selects instead of one, how to change it?

I am using HIbernate 3, Oracle and Java. I have an Employee class and this mapping: <set name="meetings" table="EMPLOYEE_MEETING" inverse="false" lazy="false" fetch="select" cascade="all" > ...
0
votes
0answers
39 views

how to get a first row of an updated record which is sorted asc by date using hibernate?

I am trying to display a record in my jsp based on the id, I have sorted the records in asc order by create_date, and updated a column which is having null value. So now my question is how to get an ...
0
votes
3answers
61 views

How to handle efficient database connection and performance in java?

I have 5000 records as search result and based on product number have to pull the related data associated with product number.that means seperate the 5000 product number and sending to database to ...
1
vote
1answer
22 views

Prevent Hibernate schema changes

I am new to Hibernate and am having some issue with its configuration. I am trying to setup a read-only connection to a preexisting Oracle database. I do not want Hibernate to execute any DML/DDL ...
-1
votes
0answers
32 views

Update with Select and rownum query using hibernate

I want to update a table with select query as follows using hibernate. String query = "UPDATE Order SET assignedTo='JAM', lastUpdatedDt=sysdate WHERE orderId = (SELECT orderId FROM (SELECT orderId ...
0
votes
0answers
39 views

Oracle ORDImage and EclipseLink || Hibernate

I'm trying to create ORM with EclipseLink in my Java EE + OracleDB application. The problem is that I don't know how to map ORDImage type from database. I tried to use @Struct but without a success. ...
0
votes
2answers
48 views

how to update data using hibernate query having parent property in where clause

I am working on java web application using hibernate and oracle.I have set two entities like this @Entity public class Student{ @Id Long id; String name; } @Entity ...
0
votes
0answers
25 views

Updating date field using Hibernate - Row not updated if date is the same, time is different

I have a situation where a table in the database has a date field defined as date where time also is important (for sorting later). At first, all times for the date where coming as 000000 but I ...
0
votes
0answers
44 views

Hibernate Audit log showing Entity ID as 0, for CREATE/INSERT audit logs

I have an Class: @Entity @Table(name = "XX_code", schema = "YYYY") @Audited public class XXCode { @NotEmpty(message = "XX.name.required") @NotBlank(message = "XX.name.required") @Length(max = 40, ...
0
votes
1answer
72 views

Updating clob column in oracle with CLOB value

i want to update a column is CLOB type, the method is below; public boolean formVeriGuncelleSil(String sql) throws VeritabaniException { try { Session session = ...
0
votes
1answer
23 views

Error when use PropertyNotInList in Grails + Oracle + CLOB

I'm trying to retrieve all objects from oracle 11g database except some objects that contain an especial value in a property. The code: //Retrieve thoughts def thoughts = ...
0
votes
1answer
116 views

How to call store procedure when it has out parameter in oracle?

I have one store procedure which has 3 input parameters and one out parameter named 'TEST(name1 IN VARCHAR2, name2 IN VARCHAR2, name3 IN VARCHAR2, result OUT VARCHAR2)' How can i call this stored ...
0
votes
0answers
29 views

Hibernate : expecting “end”, found '/' SQL Exception

I am trying to run a query which looks as follows SELECT INV.SKU_NUM as skuNum , ITM.REG_DES as des, ITM.DFLT_WHS_UOM as uom, CASE WHEN ITM.BILL_QTY IS NULL THEN NULL ELSE (CASE WHEN ...
2
votes
1answer
65 views

Grails Domains: Get by Id not found

I have a Job (using Quartz) A Service method wich uses get (for a Domain class) The problem is: sometimes (1 in a 1000) the domain's get(X) method returns null even if the row with id X exists. If ...
3
votes
1answer
99 views

BoneCP shuts down automatically in the middle of the work

We have an Oracle 11g database, a web service that uses hibernate. We recently switched to BoneCP for connection pooling but there seems to be something wrong and the BoneCP shuts down in the middle ...
3
votes
0answers
29 views

Oracle 11g delete by unique key slow [migrated]

We have been plagued by a deadlock issue for quite some time that relates to deletes and inserts on the same table. It happens sporadically, but had been increasing in frequency. It would manifest ...
0
votes
1answer
39 views

Hibernate sequence, use the specific sequence

Today my DB responsible boss told me that I'm using a wrong sequence, in JPA/Hibernate, but I weren't so I checked up on why my generated table entries had a higher ID than the normal(trigger) ...
1
vote
0answers
26 views

How can I get Hibernate to ONLY use Oracle Sequence

I really hope someone can help! I have successfully used a Spring/Hibernate web-based application (Tomcat 6x) to insert records into an Oracle database. The Oracle database table that I am writing ...
0
votes
0answers
40 views

Not able to store large String in Clob

Not able to store large size String in CLOB String which contains xml data . the size of String is greater than 19000. I am able to store small string but getting null value in database for large ...
0
votes
1answer
62 views

Named Query, Native Query or Criteria API

I need to report data from 3 different tables in form of a report. The various search combinations a user can search with are.. INS_USER_ID and DateRange CUST_ACCT_ID CUST_ACCT_ID and DateRange ...
0
votes
1answer
25 views

Unable to criteria search for matching map column (MapKeyColumn) in Oracle

I have this entity and want to find any entities with the same property set. @Entity public class PropertyResource { @ElementCollection @MapKeyColumn(name = "property_key") @Column(name ...
0
votes
0answers
56 views

Passing arrays to stored procedure using hibernate

I am new to hibernate can anyone please explain how can i pass arrays to stored procedure using hibernate? I tried using session.doWork() as below, however it is throwing connection related exception ...
0
votes
1answer
48 views

Oracle Listener keeps crashing and getting unresponsive

We have a restful web-service that uses hibernate and Glassfish to access an Oracle database. However, after a few simple transactions (a few simple queries and retrieving some data), the Oracle ...
0
votes
2answers
60 views

How to retrieve records based on two equals condition for the same column?

I have a table with columns ID(primary key,number), name(varchar), value(number) and key(number).I want to retrieve all the records which have key=1 and key=2. I can write the query using not equals ...
2
votes
1answer
80 views

Does OO fit this?

I have this process where in one table we have a series of item movements that are to be applied to the other table with items & stocks. Basically, the item movements table is mapped by the ...
0
votes
0answers
35 views

ejb3 named query that uses IN (“string1”,“string2”,…)

I wrote ejb3 named query: @NamedQuery(name = "findProductWhereNameIn", query = "SELECT f FROM product f, SubProduct s WHERE f.id = s.product.id AND s.subReference = :reference AND f.productName IN ...
0
votes
1answer
58 views

Hibernate mappings not found when deployed to Oracle app server?

I'm having an issue with Hibernate resources not being found when deployed within an jar file on Oracle application server. I have some hibernate mapping files defined in LocalSessionFactoryBean as ...
0
votes
1answer
138 views

SQLGrammarException: ORA-00904 (“invalid identifier”)

I'm getting an Oracle error / org.hibernate.exception.SQLGrammarException when I run a JUnit test against a Java class which uses JPA and Spring: ORA-00904: "ALIAS"."COLUMN_NAME": invalid identifier ...
0
votes
0answers
38 views

How to lock the same object twice with Hibernate?

I do consequently retrieve the same object from DB. Both times with DB-level locking. All within single session/transaction. funk() funk() def funk() { def account = Account.withCriteria { ...
0
votes
1answer
25 views

switch oracle instance in hibernate dynamically

We are using Spring , tomcat , hibernate and oracle 11.0.2. Is there a way i can switch between 2 oracle instances say(ins1 and ins2) with out restarting the application layer? Is there any setting in ...
0
votes
2answers
169 views

How to convert query with decode to a query in Hibernate (HQL)?

I want to convert the following query in Oracle to a Hibernate HQL query select SYSTEM, sum(decode(trim(XAXIS),'HIGH',YAXIS,0)) H, sum(decode(trim(XAXIS),'MEDIUM',YAXIS,0)) M, ...
1
vote
2answers
85 views

The greatest row per group - further combining the result set with left join with other related table in Hibernate - HQL. Is it possible?

There two tables in my Oracle database product and product_image. They have one-to-many relationship from product to product_image. Therefore, the relationship can be mapped in Hibernate something ...
0
votes
1answer
151 views

Hibernate Criteria setMaxResults with Oracle 11G giving org.hibernate.exception.SQLGrammarException: ORA-00918: column ambiguously defined

We are using Hibernate 4.0 with JBoss 7 against an Oracle 11G database. The java pojo class has these two properties (in addition to others). Please note that the SalesPerson class has a ...
0
votes
1answer
41 views

MySQL query calling other SQL files to execute in order

so I have a Java EE application and I use hibernate. I have created import.sql file which is loaded each time i start the application. My issue is that the database is quite big, so I have the ...
0
votes
1answer
340 views

org.hibernate.ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations)

I have 3 tables in Oracle (10g). Zone Weight ZoneCharge Where ZoneCharge has a composite primary key(zoneId, weightId) which references to primary keys of the Zone and the Weight tables. I need ...
0
votes
4answers
62 views

Error in query ORA-00979: not a GROUP BY expression

I have a query that worked for me when I was using Mysql. Now I get this error on Oracle : ORA-00979: not a GROUP BY expression This is the query: SELECT o.neNesId, COUNT(o) FROM ParNe AS o ...
0
votes
0answers
46 views

Streams type cannot be used in batching hibernate

Am trying to insert strings of very big size into Oracle DB using Hibernate. Am trying to insert it in the form of Blob. The mapping file contains the datatype as blob and have created the necessary ...
1
vote
0answers
45 views

JPA Cast is not working in Oracle

I have a table person{id,personName,birthDate}. In the table I have to get all the person details by their birthDate with out comparing its time. I have the following query Query q = ...
0
votes
1answer
54 views

columns to rows hibernate

I have tables called PATIENTINFO and MEDICATIONINFO with columns as mentioned below PATIENTINFO PatiendId Disease ------------------------ 1000 Fever 1001 Cold ...
0
votes
1answer
138 views

Hibernate: same code on different db

I've done my first little "hello world" with hibernate, inserting some data in my SQLServer db. Now I'm trying to switch db without change the annotation on my domain classes, and I'm having problems. ...
1
vote
0answers
108 views

How to pass user name to the DB Connection during connection establishment by Hibernate?

I need to pass currently logged username to the DB Connection, because I want to trace user changes and store it in Oracle DB with correct user name. I am using Hibernate on my JBoss 5.1 and Oracle ...
0
votes
0answers
77 views

Hibernate column mapping and collection lazy loading

There is a Hibernate 3.5.2 application, which I would like to be able to connect to either Postgres or Oracle. The two schemata are similar, but in Oracle, table and column names are chopped to 30 ...
0
votes
3answers
356 views

Connection cannot be cast to oracle.jdbc.OracleConnection

Why java.sql.Connection cannot be cast to oracle.jdbc.OracleConnection in code below? My main goal is to pass to Oracle connection new user name and save it in 'SESSION' table in for example 'osuser' ...
1
vote
1answer
60 views

Complicated reports for huge amount of data in oracle

I'm using oracle 11g to store huge set of data (around 1kk records). My schema looks like (simplified): Client table: --------------------------------------- |id | firstName | lastName | ...
0
votes
0answers
108 views

Why sql union is not working?

Could you tell me please, why after run query below I am receiving response only from first select? Second select after UNION statement is not taken into account. Do you know why? SELECT new ...
4
votes
3answers
81 views

Simplifying Hibernate's Query

I have the following code which perfroms a simple query from a single table of an Oracle database. entityManager.createQuery( "SELECT a FROM " + Person.class.getSimpleName() + " a ...
3
votes
2answers
145 views

Hibernate pagination or batch processing

Question: How can I process (read in) batches of records 1000 at a time and ensure that only the current batch of 1000 records is in memory? Assume my primary key is called 'ID' and my table is called ...
0
votes
1answer
73 views

Unable to fetch parent data in hibernate

Hi I have an issue with hibernate with many to many relation. I have two tables having many to many so i introduced one more table which holds the relation between the two tables. In my ...
1
vote
1answer
638 views

Saving data into Clob using hibernate in Oracle 10g

I have a table with a java.sql.Clob column in hibernate hbm file: <class name="com.model.ClobModel" table="table1"> <id name="id" column="id"> <generator ...

1 2 3 4 5 12