0
votes
0answers
33 views

Hibernate custom Order bean and XMLQUERY

i am using a custom Order bean to be able to use xquery on an DB2 database for sorting purposes. Below is the bean: package de.uta.wws.kibr.monitoring.dataAccess.dao; import org.hibernate.Criteria; ...
0
votes
4answers
47 views

import databse from xml

I am using IBM DB2 v9.1 and want to export all database to xml file and them import it back when needed. There are 9 tables in my database. I am using java and hibernate. What I have done so far is: ...
0
votes
1answer
121 views

db2jcc4.jar Invalid parameter: Unknown column name

I previously asked the following question: DB2 query Unknown column name ERRORCODE=-4460, SQLSTATE=null We have since learned that changing from db2jcc4.jar (JCC) from db2jcc.jar (UNIVERSAL) solves ...
1
vote
0answers
48 views

DB2 Hibernate paging on an SQL query

We are using hibernate with DB2. Our method needs to page to support a front-end. We use the setMaxResults and setFirstResult methods. This works with HQL, but when we try to turn the SQL into a ...
0
votes
1answer
55 views

DB2 JDBC Driver Truncates Decimal

DB2's JDBC driver appears to be truncating the precision of Numeric/Decimal fields. I have the following field defined in a SALES table: AMOUNT AS DECIMAL(16,16) I then do the following insert ...
0
votes
1answer
126 views

hibernate one to many with a error, the foreign key was wrong

I have two tables, orders and order_items. The relationship between them is One-to-Many. Order_items.fk_orders is the foreign key. Orders.ID is the primary key. I first save the orders and then the ...
0
votes
0answers
9 views

Cannot control BLOB length for DB2 dialect using hibernate [duplicate]

I'm trying to control the length of a BLOB column using the DB2 schema. My final goal is to have hibernatetool generate the SQL file for a 10M long BLOB column, and given the files pasted down here I ...
0
votes
0answers
84 views

DB2 Hibernate Not Launching Configuration

We use DB2 in our project on eclipse. We created our tables and database and we want to use Hibernate to create .java classes of our database. We did all hibernate configurations and there is no error ...
0
votes
0answers
30 views

CCSID at hibernate config/properties

I got a question about hibernate. Is there a way to force DB to use specified CCSID every time when new table is being created? I'm using DB2 database, database has default ccsid = 37, but I added ...
0
votes
1answer
53 views

SENSITIVE cursor “SQL_CURSH200C1” cannot be defined for the specified SELECT statement.. SQLCODE=-243, SQLSTATE=36001, DRIVER=4.13.127

For a query as simple as this one, DB2 is throwing SQL error for no reason when used in hibernate. I think i have all the settings of DB2 for hibernate properties right, cause some other queries are ...
0
votes
3answers
1k views

Invalid operation: result set is closed. ERRORCODE=-4470, SQLSTATE=null

I am retrieving the certain data from table using key. I am using hibernate query to retrieve the data. I am able to retrieve the data for particular key . But for some other keys i am getting error ...
0
votes
0answers
149 views

WS-AT, Spring, Hibernate in RAD & WebSphere

I have been tasked within our org to start developing web services that can participate in the local transaction and be rolled back yada yada. I can write REST services, but they obviously aren't ...
0
votes
1answer
134 views

Hibernate query causing error 181 on DB2 for Dates

I am using Hibernate 4 on DB2 v9 with JPA 2's CriteriaBuilder to build a query on the fly that can filter by date. The relevant part of the predicate is... ...
0
votes
2answers
386 views

Illegal conversion exception after passing Enum List to namedQuery.setParameter() in Hibernate

I am using Hibernate over DB2. When I create a NameQuery with the parameter being a List of enum values, getResultList() throws Illegal converation exception. @NamedQuery( ...
1
vote
1answer
168 views

JPA, Hibernate, DB2: JPQL-Query and char column

I'm using JPA with hibernate and have some trouble with the following JPQL query: final Query query = getEntityManager().createQuery( "select u from User u where u.username = :username") ...
1
vote
1answer
390 views

How to map BigInteger in Hibernate to DB2

I've got a class that is generated through JAXB that I am trying to use as an entity in Hibernate. There are numeric fields that are defined as Java BigIntegers. No matter what I define the column as ...
0
votes
2answers
117 views

DB use an excessive amount of CPU - 95%

I am using Spring MVC + hibernate in my application. Application server is IBM WebSphere v7. While restarting and after restart application, Db2syscs process makes CPU usage 99% and consumes memory ...
1
vote
2answers
390 views

Export large data from DB to CSV

I need to export a Table into a CSV File and serve it to download via my JSF/Icefaces Webapplication. How can I do that? I have a Table with 20+ Columns and over 10 MIO rows. At the moment, I use a ...
0
votes
1answer
139 views

IBM DB2 9.7 Error code 840, select statement list is too large

We are using Hibernate with IBM DB2 9.7. The database gives error about Hibernate generated too large select statement list (including a lot of joins). The error code is 840. Can something be done to ...
1
vote
1answer
346 views

Hibernate date operations

I use hibernate with DB2 and have the following problem. The table/entity "Customer" has the fields first_name, last_name, birthday(java.util.Date). I need do write a query which will retrieve all ...
1
vote
0answers
209 views

Why failed to instantiate Configuration class?

I am using DB2, Tomcat 7, Hibernate 3, JAVA 1.6, Dynamic web module 3.0, and JSF 2.0 in my development. When my program trying to load up HibernateUtil class, the code failed at instantiating ...
0
votes
0answers
188 views

Copying data from table to another table in different schema using hibernate (or) db2

I follwing requirement to copy data from table A,B in schema s1 to table A,B in schema s2 Technologies used : Hibernate , DB2 Possible alternatives i thought HIbernates Interceptor ( Not pretty ...
1
vote
1answer
232 views

HQL to retrieve the records for last 365 days

In my DB2 database, I've a table where I store some employee information along with a timestamp to store the record insertion time. By using HQL, I need to retrieve the records created for past 365 ...
1
vote
1answer
2k views

JPA automatic BigDecimal conversion

We are generating our jpa access layers with MyEclipse. Afterwards we have the generated models and data layer access services. We ran into some problems for some fields with a defined precision. ...
1
vote
1answer
492 views

setting currentSchema using URL for DB2 in AS400

With DB2 JDBC type 4 driver (com.ibm.db2.jcc.DB2Driver), the URL to use in the configuration to connect to a DB2 database is: jdbc:db2://HOST:PORT/DATABASE:currentSchema=SCHEMA; this is working ...
1
vote
1answer
254 views

Hibernate prepared statement is replacing values with question mark

We are using Hibernate 3 with WebSphere v6 and DB2. We are having strange issue with wrong SQL prepared statements issued by Hibernate and causing syntax issues. Good query issued by Hibernate: ...
0
votes
3answers
400 views

JPA + DB2 can't execute simple query

Edit1: When Hibernate connected to MS-SQL, all columns and tables are scanning. Logs But when Hibernate connected to DB2, it is trying to make out (render) again all tables and columns which include ...
1
vote
1answer
663 views

Hibernate exception: deadlock

Exception "org.hibernate.exception.LockAcquisitionException: could not insert" appears sometimes in the following code: Question questionClone; try { questionClone = (Question) ...
3
votes
1answer
4k views

Spring 3 The matching wildcard is strict, but no declaration can be found for element 'jee:jndi-lookup'

So I am having an issue similar to here... Spring 3.0 Error: The matching wildcard is strict, but no declaration can be found for element my pom looks like this <beans ...
1
vote
1answer
459 views

Hibernate can't instantiate id generator in Spring project with multiple data sources

I have a Spring project using Hibernate with two data sources (db2 and sql-server). As soon as I add @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SOME_SEQ") to a column field ...
0
votes
1answer
52 views

Possible to hide tables depending on deployment configuration?

We will support several clients, and some DB tables should not be visible to all clients. We would however like to have identical schema for all clients due to ease of deployment. 1) Is it possible ...
3
votes
2answers
347 views

Joining two tables from two different libraries using java, DB2, spring and hibernate

I’m using DB2 on AS400 (iSeries), hibernate 3, spring 2.0 and Java 6 and I have two tables (physical files) on two different libraries like this: Library1/TableA and Library2/Table2, so normally I ...
0
votes
2answers
3k views

Specified JDBC Driver com.ibm.db2.jcc.DB2Driver class not found

I have spent considerable time researching and trying to figure out where I have gone wrong with my configuration but am completely stuck. From the posts I have been reading the implication is that my ...
0
votes
2answers
2k views

Hibernate create alias on many to many list

I have four class; UserGroup, UserAccount, Role, UserGroupRoleRelation and my db is IBM DB2 @Entity @Table(name = "USER_GROUP") public class UserGroup implements Serializable { @Id ...
0
votes
2answers
103 views

Hibernate DB2 revoke STATEMENTs for User

I have DB2 databases persisted with Hibernate. I'd like to revoke DROP TABLE permissions for all TABLES in all databases for a concrete "user". So the ordinary "user" cannot DROP TABLES in any DB2 ...
0
votes
1answer
492 views

DB2 GENERATED IDENTITY HIBERNATE

I am using DB2 GENERATED IDENTITY to auto-increment value for a column. The column is not a primary key column. I am not sure how to configure the field in the hibernate mapping class. Please help.
0
votes
1answer
339 views

Hibernate HQL DB2 Sequence

We are using Spring MVC/Hibernate. I have a non-id column in the database which stores an unique id. We are using a DB2 sequence to generate the id. How do i get the sequence's next val ...
1
vote
0answers
585 views

How to call db2 database functions with literal arguments using the JPA Criteria Api?

I have a DB2 database function declared as follows: CREATE FUNCTION MYDB.FN_ISNEWSCOVERAGE(NEWS_ID INTEGER, USERID VARCHAR(50)) RETURNS INTEGER ... which contains some complex SQL logic and returns ...
0
votes
2answers
254 views

Hibernate Pojo Generator for IBM DB2

I used Hibernate Pojo Generator to generate hibernate stuff. I done it successfully with MySql, but when I tried to generate classes with DB2 it fails. I check ...
1
vote
3answers
3k views

What is the DB2 jdbc driver or where can I get it from?

Hello guys I want to ask a few things for DB2 Hibernate configuration. I searched it google, but I couldn't find.First of all,I want to get Maven dependency of DB2 JDBC driver.And then Which dialet ...
1
vote
1answer
3k views

Error while Querying : The value of a host variable in the EXECUTE or OPEN statement is too large for its corresponding use

On trying to use a select query statement. The input variable has 8 characters just as expected. I dont know why this error comes for select query because for a select query it will query and if its ...
0
votes
1answer
2k views

The database returned no natively generated identity value

I am using IBM DB2 V 9.1.0.356. I am using DB2 JDBC driver version 9.7. I am using these technologies for my application. Spring MVC, Hibernate, DB2, Websphere In my Create Table script; ID column ...
0
votes
3answers
601 views

Pessimistic locking with Hibernate and DB2 (and Derby)?

Having the following code: @Transactional // Spring annotation public void doStuffWithPayments(...) { List payments = getCurrentSession().createQuery("select distinct p from Payment p .....") ...
1
vote
1answer
861 views

Hibernate DB2 ROW_NUMBER() error

Im having problems in Hibernate when I'm using the ROW_NUMBER() of DB2 it says QueryException: undefined alias: ROW_NUMBER. What to do? Thanks String strQuery= " SELECT c_.name, c_.id, ...
0
votes
4answers
3k views

Hibernate: @GeneratedValue(strategy = GenerationType

I am using DB2 for my application. I run some insertion script after creating database. That insertion script generates records in table with id's given in insertion script. Suppose for abc table ...
3
votes
2answers
406 views

Why is Hibernate ALTER ing my QUERY ? multiple columns with IN operator

If I debug, I can see that the string I'm building is and ( property1 , property2 ) in ( values (0, 5) , (3, 4) ) but Hibernate thinks it's better to transform it like this and ( ( ...
0
votes
1answer
246 views

generate id for self referencing table hibernate mapping

Hi I have a table on DB2 database as follows: id (PKey) doc_id(FKey pointing to id) not null This is a strange legacy table that I cannot change. I cannot write/modify triggers either. I am trying ...
1
vote
2answers
875 views

Error SQL7008 while updating a DB2 for iSeries table

I have a Java Web application using Hibernate and DB2 for iSeries and during update of a table I get he following error:- Error SQL7008 while updating a DB2 for iSeries table
0
votes
1answer
1k views

How to Call StoredProcedure using Hibernate?

Hi I want to Call a stored procedure in db2 using hibernate.Can you please give complete example without using CallableStatement.
2
votes
1answer
316 views

how to disable generator when db trigger creates id

Currently when I try to insert new records I am getting an error: [ERROR] 05/12/11_09:44:20.54 [org.hibernate.event.def.AbstractFlushingEventListener] - Could not synchronize database state with ...

1 2