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
14 views
IBM DB2 issue connecting to remote instance
I am using the Python ibm_db & idm_db_dbi module to connect to a DB2 instance.
dsn = "DRIVER={IBM DB2 ODBC DRIVER};DATABASE=%s;HOSTNAME=%s;PORT=%s;PROTOCOL=TCPIP;UID=%s;PWD=%s;"\
...
0
votes
0answers
18 views
Fluent NHibernate: mapping property “Length” ignored when inserting or updating
we are trying to (slowly) migrate all our programs from Delphi to C#, and its our first time with an ORM, so please forgive if the question may be silly. ;-)
We are using:
DB2 Version 9.7.5
...
2
votes
0answers
29 views
strange behavior accessing DB2 database from VB.NET project
We have a test environment and a production environment with DB2 database and VB.net projects. We have recently added 4 columns to a 74 column table, giving a total of 78 columns. We have had this ...
0
votes
0answers
17 views
Using Play framework 2 with DB2 (AS400 or LUW)
is there anyone who sucessfully used Play framework with IBM DB2 for AS00 or DB2LUW. I was trying to run the Zentasks example against a DB2 db on AS400, but I got this exception:
Internal server ...
0
votes
1answer
15 views
Is there a way to connect to DB2 on z/os using a jdbc driver
Am evaluating options other than either Sybase's DirectConnect or IBM's DB2Connect to connect to DB2 running on z/OS. From what our findings have shown us so far, we need to connect and also do format ...
0
votes
1answer
13 views
How to use SQL XML and XMLAGG to return multiple xmlelements
In SQL, I need to create xml code that looks like this:
<Phone>
<PhoneTypeCode tc="12">Mobile</PhoneTypeCode>
<Area>801</Area>
...
0
votes
3answers
48 views
SQL select query to return only if a record has a field of a single value
I have built my query here thus far:
SELECT POLICYNUMBER, FPLAN, FEFFYY, FEFFMM, FEFFDD, FINSTP, CLIENTNUM, FIRSTNAME,
MIDNAME, LASTNAME, BIRTHDATE FROM PFCASBENE
INNER JOIN CMRELATN ON ...
1
vote
1answer
24 views
SQL : DB2 run a “sql” if its within particular time
We are using DB2 in our company and we have a scheduling program (which I don't have access to) which runs set of SQL files every 5 mins. I have the control on the SQL statements though
one of the ...
0
votes
2answers
31 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
3answers
34 views
How to get all rows from a table inserted in a particular date.
I am trying to write a query that gets all the rows of a table for a particular date.
SELECT * FROM MY_TABLE WHERE COLUMN_CONTAINING_DATE='2013-05-07'
However that does not work, because in the ...
0
votes
0answers
11 views
How to distinguish Sqlcode between row not found for update and row not found for fetch row
How to distinguish if Sqlcode returned was 100 because the cursor fetch row was done or if no row was found to update . I am using update statement in loop of cursor.
0
votes
1answer
25 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
2answers
19 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
1answer
27 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
3answers
44 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
31 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
25 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
71 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
22 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
32 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
3answers
26 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
18 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
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, ...
0
votes
1answer
31 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
68 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
41 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
40 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
24 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
66 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
87 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
70 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
47 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
42 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
33 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
31 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
32 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
57 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
49 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
29 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
36 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
23 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
42 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
45 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
59 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
36 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 ...





