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 ...
0
votes
0answers
4 views
use of Index over function SUM in DB2
I had a Query as Below,
SELECT SUM(SOLD_QTY_CNT) AS QUANTITY, DENOM_AM, SUM(LIN_AM) AS LINE_AMT,
LIN_AM AS O_LINE_AMT, ORD_DTL_ID
FROM MyTable GROUP BY ORD_DTL_ID, LIN_AM, DENOM_AM
...
0
votes
0answers
3 views
How to create or execute a Stored Procedure within another Stored Procedure in IBM DB2?
How to create a Dynamic Stored Procedure using a Stored Procedure in IBM DB2 9.7 for Windows ?
Example below is my dynamic generated stored procedure:
CREATE PROCEDURE DB2ADMIN.INSERT_A (inputVar1 ...
-1
votes
0answers
12 views
db2 connection error [IBM][CLI Driver] SQL1042C
[2013-05-22 12:29:03,659]**[WARN]**[main]**[SettingsFactory:103]:Could not obtain connection metadata
org.jboss.util.NestedSQLException: Could not create connection; - nested throwable: ...
0
votes
1answer
18 views
Populating a MySQL database from a DB2 database
I currently have a script for populating a MySQL database from a DB2 server. It works, but it seems to be inserting the rows into MySQL at an extremely slow rate. The server process is executing at ...
0
votes
1answer
25 views
DB2 Before Update Trigger Behavior
Wondering if someone can help me understand how a DB2 before insert trigger behaves. I have a Grails app that inserts rows to a DB2 database. The table in question has a before insert trigger that ...
0
votes
1answer
22 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
0answers
56 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 + "' ...
0
votes
1answer
18 views
How to detect ODBC DB2 connection encoding (code page)
Is it possible to check which db2 code page is used in communication between ODBC connector and db2 database from c program using ODBC api?
-1
votes
1answer
28 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
2answers
24 views
What is best tool to compare two different Database ,the first database is Ms Sql and another is DB2
I have two database ,
First Db is Microsoft SqlServer (version 2008 R2) and second database is DB2
i need a tool for comparing schema and tables in both ot them ?
is every body have idea or ...
0
votes
1answer
15 views
Configuring IBM DB2 ODBC - Changing the Host IP / Alias already exists
I've created an IBM ODBC connection to my server via Microsoft's own ODBC Administrator. After initially finding difficulties on where to put in the IP Address (otherwise, the ODBC uses my local ...
-2
votes
1answer
15 views
SQL0104N error in DB2 while executing the query [closed]
select
a.partnumber id,
trim (e.name) title,
a.mfname brand,
active_status,
f.stringvalue as size,
g.stringvalue as ...
3
votes
0answers
29 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, ...
0
votes
1answer
28 views
DB2 Performance CASE vs COALESCE
I'm modifying an existing statement that joins user information in one table so that the user info can come from another table. One is a permanent table and the other is temporary (records get moved ...
0
votes
1answer
66 views
Alternative to GROUP BY to consolidate repeating values in single column
I'm using DB2 which apparently doesn't let you use the GROUP BY clause when it's returning more than one column. I have records that have repeating values for ID and name, for example:
EmpID | - ...
0
votes
1answer
39 views
How to code SQL statements from generated Crystal
Here we have generated Crystal SQL and I need to make these same on AS/400 db2 for performance reasons. How do you code these in AS/400 SQL?
TodaysDate
like and
<>
-1
votes
1answer
39 views
Default permissions for new objects in the schema
I'm working on a DB2 for i database (aka DB2/400), on a schema (library) named S.
Inside schema S, I create database tables, procedures etc. with user A. I need that also user B has all privileges on ...
0
votes
1answer
16 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" ...
0
votes
2answers
60 views
Not able to run SQL queries in AS400, run into Invalid Token errors
In AS400, how can i perform arithmetic operations (like +, -) on fields.
For the query Select id, sum(field1+field2) as Total from table
group by id, getting the following error msg in German ...
0
votes
1answer
29 views
How to check which tablespaces is user granted in DB2 v9 z/os?
On DB2 for linux platform I can check it in the SYSIBM.SYSTBSPACEAUTH table. For example:
SELECT * FROM SYSIBM.SYSTBSPACEAUTH WHERE GRANTEE=....
How can this be done on z/os since there is no ...
0
votes
2answers
84 views
Convert SQL Server date to As400 date
I have a date in SQL Server in this format: 1/1/2013 14:15:16
I want to convert it to 2013-1-1-14.15.16.000000
I did this in C# by doing something like this
...
2
votes
3answers
59 views
SQL -302 on OPEN cursor in SQLRPGLE
The problem
I've got a SQLRPGLE program that executes queries that look like this:
SELECT orapdt, oraptm, orodr#, c.ccctls, orbill, b.cuslmn, b.cusvrp, orocty, orost, o.cubzip, o.cucnty, ordcty, ...
0
votes
1answer
18 views
Query DB2 using collation
Is it possible to perform a query in DB2 and specify a collation to use?
In SQL Server it's fairly common to do
SELECT Column1
FROM Table1
WHERE Column1 COLLATE Latin1_General_CS_AS = 'casesearch'
...
0
votes
1answer
44 views
Convert Rails Sqlite3 db to Oracle or Db2 or MS SQL Server [closed]
i have a rails application with sqlite3 as default database. I want to switch my sqlite3 to another db between DB2, ORACLE or Microsoft SQL SERVER.
Can i only replace the database without touch the ...
1
vote
2answers
38 views
Error while importing file into DB2 from python script
Getting the below error while trying to import a ^ delimited file into a DB2 database using python 2.4.3.
Error:
Traceback (most recent call last):
File "C:\Python25\Usefulscripts\order.py", line ...
1
vote
1answer
29 views
IBM CLI Driver - Invalid argument value
I've recently setup an IBM DB2 Express C on my 64-bit server machine (Windows Server 2008). Before this, I've also set up the same thing on my 32-bit local machine (Windows 7).
I have a program on my ...
0
votes
1answer
30 views
Dynamic way of counting number of previous rows in a table that satisfy some condition, over certain columns in the table
As a specific example say I have a table T with columns customer and date indicating days on which individual customers have made purchases:
customer | date
----------------------
A | ...
0
votes
1answer
28 views
How to populate a single-dimension array with result of a query FOR DB2?
I need to populate a single-dimension array with a result set from a select query.
I have created the array type using:
create or replace type UR.array_traveler_id as BIGINT array[];
and in the ...
1
vote
0answers
48 views
DB2 will not INSERT into Created Temp Table that I created [migrated]
I normally use SQL Server but for this project I'm having to learn DB2. If I can get the below code to work I'm set for the whole project. Below is a elementary example of what I cannot get to work. ...
1
vote
2answers
55 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
3answers
48 views
SQL Optimization for DB2
If you have a situation where you are doing a Union All on two result sets, and the each result set is derived from an inner join with the same filtered subset of a master table does the query engine ...
0
votes
1answer
25 views
db2 - already created table still undefined name
Ok, I'm gonna explain the environment so you can understand my problem.
I'm using IBM Data Studio to connect and edit my DB2 database which
is named [dgsmdb]
I connect to the database using the ...
0
votes
1answer
33 views
Using the db2 variable “DB2DBDFT” to connect to default schema with user / using
I am trying to write a bash script that does some db2 work. I am facing the issue whereby subshells require db2 connections to be reconnected.
Unfortunately, reconnecting every time is dog slow, as ...
0
votes
1answer
20 views
call db2 list db directory from c# application
I would like to get all the database name inside 1 db2 instances through c# application?
Besides calling 'list db directory', is there any other alternative?
How can i invoke db2cmd from my c# ...
2
votes
2answers
40 views
Looking for DB2 SQL query
I am not very familiar with SQL and I hope some expert here can show me suitable and efficient query for what I want to achieve. I am using DB2 by the way.
Below is a screenshot of a sample data. ...
0
votes
0answers
43 views
unable to create one-to-one relationship
I'm unable to create one-to-one relationship in multiple databases ( mysql, db2).
here is my declaration:
--<ScriptOptions statementTerminator=";"/>
CREATE SCHEMA "mydb";
CREATE TABLE ...
-4
votes
0answers
50 views
DB2 SQL Error: SQLCODE=-286, SQLSTATE=42727, SQLERRMC=8192;DB2INST1, DRIVER=4.13.127 [closed]
I try to execute sql:
create table ACT_RE_MODEL (
ID_ varchar(64) not null,
REV_ integer,
NAME_ varchar(255),
KEY_ varchar(255),
CATEGORY_ varchar(255),
CREATE_TIME_ timestamp,
...
0
votes
1answer
14 views
granting db2 credentials for HADR
I want one of my db2 user to be able to issue queries on a primary database that are replicated to a secondary database via HADR.
That user on my linux box is called EUSR.
Now logged as user ...
1
vote
1answer
35 views
Database Application Server connection association
I am having the following idea to investigate and find out if it possible to work. I am having a db2 server in a linux machine and two kinds of application servers, geronimo and websphere. I would ...
0
votes
0answers
17 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
69 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 ...
0
votes
1answer
17 views
RPG/DB2 Cursor as a resultset being cleared
I have an RPG program/stored procedure that returns a resultset to a .net program. Everything is working fine until the RPG is added some code after
... RETURN to CLIENT CURSOR C1...
// New Line Of ...
0
votes
1answer
28 views
db2 alter column length named:“Group”
"GROUP" is used as a column name wity 'CHAR' type.
I have to increase the column length, but I get this following error message.
ALTER TABLE "DB2.FAQA_GROUP" specified attributes for column "GROUP" ...
-2
votes
1answer
50 views
IBM Worklight database connection
I have installed Worklight Server and with DB2 database, and now I try to migrate an application that has a MySQL database which is obviously not working. Is there any workaround? Do I have to use an ...
0
votes
2answers
34 views
IBM DB2 9.7 archiving specific tables and columns
I would like to periodically, e.g. once a year, archive a set of table rows from our DB2 9.7 database based on some criteria. So e.g. once a year, archive all EMPLOYEE rows that have a creation date ...
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 ...
0
votes
1answer
26 views
catalog on different versions of db2
I am trying to use my local DB2 Express-C edition to access remotely a db2 database running on a remote machine at IP 192.168.48.189. The remote machine is running a DB2 Workgroup Server edition.
...
1
vote
3answers
97 views
Converting IBM iSeries DB2 decimal date types into DateTime object
I'm working on a program to import data from an IBM iSeries server into an MSSQL 2008 R2 database. Unfortunately, some developer long ago decided to store dates as a decimal type, effectively breaking ...
0
votes
0answers
16 views
QDB2 wont compile
How to insert/install QDB2 plugin? (SQLDriver for Qt, for connecting to IBM DB2).
I tried
cd $QTDIR/plugins/src/sqldrivers/db2
qmake -o Makefile "INCLUDEPATH+=$DB2DIR/include" "LIBS+=-L$DB2DIR/lib ...
0
votes
3answers
61 views
DB2: Purge large number of records from table
I am using DB2 9.7 FP5 for LUW. I have a table with 2.5 million rows and I want to delete about 1 million rows and this delete operation is distributed across table. I am deleting data with 5 delete ...






