DB2 is a database server developed by IBM. It runs on z/OS (formerly OS/390), Linux, UNIX, and Windows (referred to collectively as DB2 for LUW), and IBM i (formerly OS/400 or i5/OS). Originally designed as a relational engine, IBM has expanded DB2's capabilities on some platforms to include native ...

learn more… | top users | synonyms

3
votes
0answers
30 views

PHP - db2_bind_param Describe Param Failed

The Code $options = array('autocommit' => DB2_AUTOCOMMIT_OFF); $stmt = db2_prepare($connection, "CALL LABLIB2.AR0011CL('?','?','?')"); $connection = db2_connect ( AS400_DATABASE, IS_USER_NAME, ...
2
votes
0answers
65 views

Query quirks with DB2, no-op coalesce halves the runtime

I'm working on optimizing some queries for a DB2 database. Most of them are running fine, but a few with rather large returned datasets (up to 30k rows or so) are giving me some trouble. There's ...
2
votes
0answers
64 views

IBM DB2 and Symfony - generate Entities from an Existing Database

i am trying to develop an application with the symfony framework. The entities are stored in an existing DB2 database. http://symfony.com/doc/2.1/cookbook/doctrine/reverse_engineering.html I tried ...
2
votes
0answers
85 views

Can't use IBM DB2 Entity provider with F# TypeProviders

I'm trying to test out the new F# Type Providers, but I can't get it to work nicely with our DB2 database. This is my builder: ...
2
votes
0answers
404 views

Using CLOB datatype in SQL stored procedure

I am calling an DB2 SQL stored procedure (which is in mainframes) with a CLOB datatype as out parameter among other parameters. CREATE PROCEDURE ACT_GETAUDIT01 ...
2
votes
0answers
260 views

How to handle ibm.data.db2.iseries exceptions

I have this code: con = new iDB2Connection(connectString); try { con.Open(); } catch (iDB2ConnectionTimeoutException ex) { Console.WriteLine(ex.Message); } catch (iDB2DCFunctionErrorException ex) { ...
2
votes
0answers
246 views

.NET access to DB2 in windows 8

In windows 7 I was able to connect to DB2 using IBM's DB2 driver, however this doesn't seem to work with windows 8. The installation of the client drivers fails with the following: MSI (c) (0C:18) ...
2
votes
0answers
68 views

IBM Infosphere Data Architect: How to debug SQL query execution

I am writing/running fairly complex SQL queries in Infosphere Data Architect for IBM DB2 9.7. Is it possible to somehow debug the execution? Printing out debug information line-by-line is sufficient, ...
2
votes
0answers
6k views

ERRORCODE=-4461, SQLSTATE=42815 in DB2

I have exported some data from schema A (table x)to XML and I am reading the XML and inserting the data into schema B(table y). while inserting the data after 20000 records it says ...
2
votes
0answers
4k views

iReport to DB2 connection ERRORCODE=-4499, SQLSTATE=08001

I am using Jasper iReport. When I try to connect to IBM DB2 I get an error: "Permission denied: ERRORCODE=-4499, SQLSTATE=08001" I am using the same driver to connect as Razor which I also use and ...
2
votes
0answers
193 views

DB2 Entity Framework Transaction Isolation “WITH UR”

I am trying to make use of "WITH UR" in every query that goes to db2. does anybody know how to use transaction isolation in db2 ef4? i want linq to create me a following query: SELECT EmployeeID FROM ...
2
votes
0answers
111 views

How to “Reset” the UDF DETERMINISTIC reponses?

IN DB2 V5R4, When you modify the functionality of a DETERMINISTIC UDF It returns the cached response for a while... There are any way to reset the cached responses? Thanks in advance.
2
votes
0answers
272 views

Symfony2 / Doctrine2 can't connect to IBM DB2 database using ibm_db2 client

I'm having an issue with Doctrine2 that seems like a bug but I can't find anyone else on Google with the same problem. I'm hoping somewhere here has experienced this problem and knows how to solve it. ...
2
votes
0answers
333 views

Using “cursor with hold” on .NET towards SQL Server

In connection with a migration project, migrating data from DB2 to SQL Server I have run into a problem with the way the .NET provider towards DB2 uses (data) cursors. Today the client is executing a ...
2
votes
0answers
474 views

DB2 Distinct + xmlagg Query

I want equivalent to GROUP_CONCAT functionality of MySql in DB2. I have tried XML Aggrigate functon of DB2 for cocating murows. SELECT a.ID, substr(xmlserialize(xmlagg(xmltext( concat(',', ...
1
vote
0answers
56 views

CCSID errors querying a DB2 for IBM i stored procedure through dbExpress

Background I'm using RAD Studio XE2 with dbExpress, trying to retrieve a result set from a stored procedure residing on a DB2 for IBM i (AS/400). Has dbExpress driver for AS/400 I use Peter ...
1
vote
0answers
60 views

Multiple alter column statements in a single alter table statement causes 'row length exceeded limit'

I use DB2 in version 9.7.0.2. I have a table created with the following DDL: CREATE TABLE atable ( id int PRIMARY KEY NOT NULL, int1 int NOT NULL, int2 int NOT NULL, smallint1 ...
1
vote
0answers
51 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 ...
1
vote
0answers
52 views

PHP alternative to mysql_data_seek for ODBC

I am converting a PHP-mySQL application to a PHP-ODBC application. ie getting the database migrated from mysql to DB2. While using mysql i used mysql_data_seek function so as to reset the recordset ...
1
vote
0answers
71 views

using Dapper with '?'

I'm attempting to use Dapper to communicate with a DB2 server. The DB2 server doesn't support named parameters out of the box. It expects a question mark in the query for each parameter. Is there a ...
1
vote
0answers
25 views

DB2- Compiling all storeprocedures

I'm working with a legacy DB which has 100 s of StoreProc, Views and Materialized views. Now I have to introduce a column in one of the table and want to check everything is working in order as ...
1
vote
0answers
148 views

OpenJPA SynchronizeMappings in persistence.xml only to the managed tables

I have read many tutorials about the SynchronizeMappings options in persistence.xml. The configuration I have concluded is this one: <property name="openjpa.jdbc.SynchronizeMappings" ...
1
vote
0answers
128 views

DB2 SQL Error Code -255

I've never seen this error code before, nor can I find any documentation on it. Here's the query: WITH QUERY AS ( SELECT rrn(T1), blah, bleh, ROW_NUMBER() OVER (order by bleh desc) AS ...
1
vote
0answers
80 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 ...
1
vote
0answers
199 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
78 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(); ...
1
vote
0answers
73 views

Infinite loop in DB2 JDBC driver

I'm using a Spring Batch, DB2 with JDBC v9.5 FP0 driver sometimes in any step where the process read from database I get the next error org.springframework.batch.core.step.AbstractStep execute ...
1
vote
0answers
55 views

How can the origin of SQL in DB2's Dynamic Statement Cache be identified

In an effort to optimize dynamic sql statements sent to DB2, we are saving them to a custome DSN_STATEMENT table. Each record has PROGRAM_NAME, COLLID and STMT_ID, which in static SQL are enough to ...
1
vote
0answers
104 views

DB2 via ODBC memory management issues

I'm developing software that uses DB2 database via ODBC (unixodbc). The issue is that running test suite with valgrind produces massive amount of errors. Let alone one connect and disconnect generates ...
1
vote
0answers
62 views

db2 SYSIBM tables in oracle

please, has anyone an idea, how could be this db2 statement rewritten into oracle database? SELECT * FROM SYSIBM.SYSPLANDEP WHERE BNAME = 'TABLE1' AND DNAME = 'PLAN1' I think the oracle table ...
1
vote
0answers
285 views

How to select CLOB data type data from db2

SELECT CAST (ATTCH_BODY AS CLOB(30720)) INTO :WS-ATTCH-BODY FROM NBASRDOCUM 05 WS-ATTCH-BODY SQL TYPE IS CLOB(32K). When I am trying to select clob data using above query, it shows all zeros (0) ...
1
vote
0answers
128 views

CreateSprocAccessor parameter issue with DB2

I'm using Enterprise Library 5.0 and can get the CreateSqlStringAccessor to work fine with a custom parameter mapper, but I get: ERROR [42884] [IBM][DB2] SQL0440N No authorized routine named ...
1
vote
0answers
95 views

What's the proper way to generate evolutions table in DB on Play Framework 2.0.3?

So, I started testing the Play Framework to see if it works on our next project. Biggest issue really was getting the DB in proper shape. I was running DB2 on my localhost and following the tutorial ...
1
vote
0answers
341 views

Difference between Excel 2010 VBA DB2 functionality and Access 2007 DB2 functionality?

SOLUTION: It turns out that I was merely using the wrong criteria in my WHERE condition. There are many variations of the LOCATION I am trying to exclude, and I did not see the difference. Thanks to ...
1
vote
0answers
212 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 ...
1
vote
0answers
168 views

JRuby database.yml file configuration to use IBM DB2

I have installed: JRuby (1.7.0.preview2) Rails (3.2.8) IBM DB2 Express C (1.01) active-record-jdbc-adapter (1.2.2) How should I change the database.yml file in order to my rails application to ...
1
vote
0answers
224 views

Command timeout with db2

I am trying to set timeout for a dbcommand, and test it that is why timeout is set to 1. This is the code I am using but timeout never fires, am I doing something wrong? NOTE: DbConnection is used ...
1
vote
0answers
241 views

Issue with Linq-to-Entities, parameters and DB2 9.5.3

First, some background info about the environment... There are two machines: Windows “client” and Linux “server”. Windows 2008 R2 x64 • IIS 7.5 • NET 3.5 • SharePoint 2010 • Visual Studio ...
1
vote
0answers
53 views

Meaning of field: Number of buffer pool pages for an index performing explain analysis

I am analysing the access plan of a SQL statement in IBM Data Studio using the explain tool. I have added a new index which drasticllay improves the costs my SQL statement. I am interesting in the ...
1
vote
0answers
173 views

db2 v10 z/os native sql stored procedure called via mq v6

I am trying to call z/os db2 v10 native sql stored procedure via the builtin mq listener i got very close to making it work however the response message payload is always empty, even when i simply ...
1
vote
0answers
132 views

Is there any way to obtain an XAConnection or XAResource object from WSJdbcDataSource object?

I have tried in vain multiple approaches to obtain an XADataSource from Websphere doing a JNDI lookup..I have previously asked that qn in a different discussion. However, I realise i do not need to ...
1
vote
0answers
214 views

Calling DB2 stored procedure from Entity Framework

I am trying to call DB2 Stored procedure from entity framework. I have created Store schema and conceptual schema based on the SP. I have specified an Entity as a return type to get the data back ...
1
vote
0answers
247 views

PHP and DB2 connection troubleshooting

I need to pull some data from a DB2 database to display on my drupal site. So far i have: setup wamp have php 5.3.8 running have drupal running and downloaded ...
1
vote
0answers
156 views

Deleting all combinations of data from a table with a composite key in DB2 database

I have to delete data from DB2 tables which have composite keys. I can delete with a query like : delete from <table> where <col_1> in (...) and <col_2> in (...) etc..etc.. However ...
1
vote
0answers
210 views

create arcsde service, “The ArcSDE administrator user (sde) must have DBADM authority to install or upgrade ArcSDE for DB2.”

arcsde10 is installed in windows7 pc as a pcA, db2 9.5 is installed in windows server 2003 pc as pcb. in pcb,there is a "sde" user in "db2admin","db2user" and "administrator" group. in pcA, execute ...
1
vote
0answers
591 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 ...
1
vote
0answers
271 views

how to create database pool in websphere to connect to db2

I am participating in ibm tgmc 2011. For that project I need to work on ibm products websphere(Community Edition),db2-express c edition,eclipse. I want to know how to create database pool in ...
1
vote
0answers
62 views

Text Search inside XML nodes with a specific Attribute in DB2 express-C

Have installed DB2 express-C 9.7 on Win7, and am using the DB2 Text Search engine. I have one requirement to search inside all XML nodes having a specific attribute. Have tried these options: ...
1
vote
0answers
364 views

SSIS Failure To Connect To DB2 database on AS400 [COMException (0x80040E14)]

I have setup a connection to a DB2 database on an AS400 using the .NET OLEDB Provider. When I test the connection, I get a successful message. but when I try to use the connection through a data ...
1
vote
0answers
178 views

How to edit a View in DB2 IBM iseries instead of deleting and then create it again?

How can I alter or edit a view in DB2 through System i Navigator? I don't know how, as it deletes other views built on it.

1 2 3 4 5 13