0
votes
2answers
13 views

Unable to connect to DB2 server via db2cmd

I'm unable to connect to db2 server using db2cmd command db2 connect to mydb user myuser using password Getting the following message SQL8002N An attempt to connect to a host failed due to a ...
0
votes
1answer
54 views

ClassNotFoundException when using JDBC driver for DB2

I'm trying to connect to a DB2 database using JDBC. Therefore I downloaded the DB2 driver db2jcc.jar and added the path to the classpath while compiling and running my application (I'm not using an ...
0
votes
1answer
38 views

Store 10 UTF8 characters in database without failing the text character counter

there is text box of length size 10 characters and we are printing the text character counter also which display the no of character left in the text box. if we are using ascii or UTF8 charctaers ...
0
votes
2answers
40 views

Exception while connecting to DB2 in java using JDBC

I am trying to connect to a db2 database in Java. Below the driver and the connection string and the driver details i am giving Class.forName("COM.ibm.db2.jdbc.net.DB2Driver"); String ...
0
votes
0answers
33 views

DB2 DRDA Data Stream Syntax Error was detected. Reason: 0x2110

I am developing a web application using MVC structure with Java that will execute user selected queries from a webpage in a drop down menu and will display the data from the DB2 database that the code ...
0
votes
1answer
55 views

db2, fetch first 20 records if timestamp is older than 7 years

I'm working on a data purging app and using db2 database and wish to have have a select query which means this: "SELECT PAYMENT.PAYMENTID FROM PAYMENT fetch first 20 rows only WHERE ...
0
votes
0answers
105 views

DB2 Connection Error - Message: Insufficient data. ERRORCODE=-4499, SQLSTATE=08001

We are encountering the error only during times when there is no application that is connected to the db2 (When "LIST APPLICATIONS" is executed in db2 putty no entry is detected.). But once we logged ...
0
votes
1answer
54 views

com.ibm.db2.jcc.c.SqlException: DB2 SQL error: SQLCODE: -444, SQLSTATE: 42724

need urgent help on below issue . I'm getting below error when calling stored procedure XXXX written in Mainframe DB2 . In this stored procedure, we have 'GRAPHIC' & 'LONGGRAPHIC' parameter for ...
0
votes
0answers
75 views

DB2 SQLSTATE 42601 while executing query

I have an sql-query stored in file. Here is the beginning of the query: merge into SCHEMA.TABLE as A using ( values (599999991, '2012-12-31',...... I have a Java-application and ...
1
vote
2answers
65 views

How to run a PLSQL function with return and in out parameter using java in DB2?

I created a PLSQL function in DB2 and tried to execute it using java. But I am receiving an error code of -440 stating no matching stored procedure is found. Please see the code snippet below. Java ...
0
votes
3answers
118 views

DB2 Connection Authorization Faliure Occured Reason: Security Mechanism not supported in Java

I am trying to configure DB2 connection with DB2JDBC Type4 drivers. But I am getting this error. ** Exception in thread "main" com.ibm.db2.jcc.am.SqlInvalidAuthorizationSpecException: ...
0
votes
1answer
45 views

Possible solutions for a SQLNonTransientException

I am very new to database connections with Java and am having a difficult time connecting to the database I was provided. So far I've learned that installing the correct DB2 drivers may have been an ...
2
votes
1answer
78 views

Java Update Sql statement error

I am trying to update a Db2 database using Java and the following code: String sSqlString = "UPDATE P6DEVCDB00.P6OSTAPF SET STATVAL = '" + sStatVal + "' WHERE OPIID = '" + sOperationsitemid + "' ...
-1
votes
1answer
63 views

JPA child doesn't persist when parent persist method is called

This child entity is not persisted along with the parent when em.persist is called @Entity @Table(name="Z_PARENT") public class Parent { @Id @TableGenerator(name="parentIDGen", ...
0
votes
1answer
189 views

DB2 SQL Error: com.ibm.db2.jcc.b.SqlException: SQLCODE: -204, SQLSTATE: 42704, SQLERRMC: DB2ADMIN.DATAMODEL

I have a tomcat server in which I have configured my datasource as below: <Context debug="0" docBase="/myapp" path="/myapp" reloadable="true"><Resource auth="Container" ...
1
vote
2answers
77 views

Timeout updating DB2 table

I am doing an update to a DB2 table like this (java code): // Some code ripped out for brevity... sql.append("UPDATE " + TABLE_THREADS + " "); sql.append("SET STATUS = ? "); sql.append("WHERE ID = ...
0
votes
1answer
30 views

Calling a RPGIV function from SQL stored proc on DB2

Hi im trying to call a RPGIV function from a stored proc: CREATE PROCEDURE "VEN60115"."TESTJCALL1" (IN ADUI CHAR(20), OUT PRODOPIID1 CHAR(20)) DYNAMIC RESULT SETS 1 LANGUAGE RPGLE READS SQL DATA ...
0
votes
1answer
201 views

Insert BLOB using java for both DB2 and Oracle

I am currently validating an application developed on Oracle for DB2. Since we don't want to maintain two separate sources, I need some query to insert blob into a field, that works in both oracle and ...
2
votes
1answer
45 views

IBM DB2 JDBC over ODBC: SQLException thrown when running delete on empty table

I'm accessing IBM DB2 datatable available as ODBC datasource, using sun.jdbc.odbc.JdbcOdbcDriver driver. The problem that I've encountered is, when I'm executing DELETE FROM table using ...
1
vote
3answers
55 views

Using DB2 and jdbc on Mac OS X

i'm using Mac OS X Snow Leopard and IBM's DB2. I have it up and running, i already imported a schema.sql and can manipulate the database via SQL-Commands. For connecting to the db in java i need the ...
0
votes
1answer
90 views

Issue in DB2 or Java - Handling CLOB data type

I need to pull comma-separated values from DB2 exactly as in this question, so after quick googling I found the solution by using following functions in my select clause: SUBSTR(XMLCAST(XMLGROUP(', ' ...
0
votes
1answer
54 views

Java connecting to DB2 Hangs

I am trying a pilot project to query and write to a DB2 database. I have seen many examples on StackOverFlow, and the web. But for some reason my application just hangs when connecting to the ...
0
votes
2answers
161 views

Select record in batches Spring JDBCTemplate

I have a table which has around 5 million records. I want to read all the records from this table and do some processing on them. Now I want to query these records in batches say 1000 in one go, ...
-5
votes
2answers
46 views

To update the url in the database [closed]

I wanted to update the current url to new url for every user, there are some 2000 records which I should update, doing that in sql query is tedious job, so can i know how to update those url ...
0
votes
4answers
52 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
39 views

Error SQLCODE -138 when doing a trigger in DB2

I get the following error trying to create a stored procedure in DB2 Error report: DB2 SQL error: SQLCODE: -138, SQLSTATE: 22011, SQLERRMC: null My trigger is the following one: CREATE TRIGGER ...
0
votes
1answer
227 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 ...
0
votes
5answers
124 views

Select query with multiple where clauses

I have a list of serial numbers: 111111, 222222, AAAAAA, FFFFFF and I want to return a corresponding value or null from a table depending on whether or not the value exists. Currently I loop through ...
0
votes
2answers
164 views

DB2 Error SQLCODE=-103, SQLSTATE=42604

I am trying to update a table, but it isn't working and giving this sql error. //Updating Buy Table Integer stkbid = Integer.parseInt(request.getParameter("stockBid")); System.out.println("stock buy ...
0
votes
2answers
169 views

SQL Deleting from multiple tables in different databases without common elements

What I have are 7 tables, one of which is a master list and the other 6 are archives. Also, the archives are on another database. I need to go through the archive tables and delete rows, by checking 3 ...
1
vote
3answers
74 views

How can i refresh my primary key column?

Till recent time i was using hibernate @Entity annotation to map to database tables.All the primary keys are annotated with @GeneratedValue(strategy = GenerationType.IDENTITY) I got a scenario where ...
0
votes
0answers
99 views

How can I convert file content (output.xml) to XML datatype and store in db2 database

I am trying to convert the xml file generated to XML column and store it in database. My table column is XML column. When I try to run the below code as right click -> Run as->Java Application, a pop ...
3
votes
1answer
105 views

Update exception using JDBC on DB2

The code that causes the exception is the following: for (int i = 0; i < updateParams.size(); i++) { s = con.prepareStatement(sSQL); params = (String[][]) updateParams.get(i); ...
5
votes
2answers
242 views

Insert 15 million lines in DB2 database [closed]

I have to load around 15 million lines of data in a DB2 database - using java. To keep things simple, I am not going to talk about the format of the file, or the number of tables in the database. ...
0
votes
1answer
147 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
1answer
685 views

com.ibm.db2.jcc.am.SqlException: Invalid operation: result set is closed. ERRORCODE=-4470, SQLSTATE=null

I have rather a simple portlet which displays the number of visitors of portal (online, daily, weekly, monthly, annually). In the portlet class in doView method firstly I call one method which do an ...
-1
votes
1answer
215 views

How to get a value from DB2 database and assign it to a string value? [closed]

I'm working with my java application connected to a DB2 database. What I want to do is to get a value from the DB2 table that I've queried and assign it to a string value in java, can you please teach ...
0
votes
1answer
273 views

Need help optimizing very slow DB2 SQL query touching millions of records

I'm trying to optimize the following SQL but my knowledge of SQL optimization is rather green and I'm not making much headway.(I generalized the columns and other identifiers due to company policy) In ...
0
votes
1answer
55 views

How to add series of keys on an Entity? Openjpa

I have this entity named product. Is there a way to add a series of multiple keys? Like A key for Serial Number, a key for Serial Number and Model, a key for Model etc. How can you do this? Thank you ...
0
votes
0answers
39 views

setMaxActive works for less than default value but not for more

In following code: When I set initialize as 1 and setmaxactive as 1 it shows results and only 1 connection is popped out of the connection pool. But when I set both of them to 20 it goes till 8 and ...
1
vote
0answers
84 views

AbstractMethodError when calling setClientInfo using DB2 and myBatis

Using DB2 and myBatis. Some background: I have a trigger on a table that should fire when a row is deleted and insert the row into a history table, and I want the user that deleted the row (not the ...
0
votes
2answers
193 views

JDBC DB2 can not connect (SQLSTATE=08S01)

I want to connect both Oracle and DB2 databases for some reason using JDBC. In main class when I try to connect Oracle, Connection is successfull but DB2 connection is NOT successfull giving this ...
1
vote
2answers
390 views

DB2 Sequence value usingJava

I need to get the next value from a DB2 sequence. This is one approach I've tried stmt = con.createStatement(); rs = stmt.executeQuery("db2 VALUES NEXTVAL FOR <sequence_name>"); rs.close(); ...
1
vote
0answers
260 views

DB2 java connection driver

I've just installed DB2 Express-C version 10.1 (the newest) and I've tried to make a connection to a SAMPLE database. I've already done t through db2.exe, all done normally. here is my java code ...
1
vote
0answers
85 views

InvalidAlgorithmParameterException

I wrote a GUi java program which brings data from db2 and shwos into a JtextArea when click a Jbutton. I have used encription for ID/PAssword as below code Properties properties = new Properties(); ...
0
votes
1answer
113 views

SQLException after connection left idle

I am using DB2 with JDBC and the below code throws SQLException when I try to run for the first time after I left the connection idle for a few minutes. From the second time onward it would work ...
1
vote
3answers
194 views

What will be the faster in Java: DB2 INSERT/SELECT or File Write/Read

While working on a application, on parsing a large number of text files (e.g. 4000 files); found time delay in storing/reading the parsed data into DB2 using JDBC as INSERT/SELECT Prepared Statements. ...
0
votes
1answer
66 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
0answers
24 views

Modules Performance issues

I have two modules witch run on different JVMs but use the same database (DB2). When two different modules of different users try to perform search operations on different tables everything's fine. ...
4
votes
2answers
143 views

Speedup a Java application

How to Speedup a Java application? I am working on an Java application, which parse Cobol files line by line, extract the necessary data from them and populate into DB2 database. If there are more ...

1 2 3 4 5 6