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
1answer
58 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 ...
2
votes
4answers
202 views
How to return query results containing apostrophe from search string not containing apostrophe
I have a simple application that allows users to enter a string to search for a name in a database. The server side is ColdFusion 7. The issue I'm having is that a query such as "obrien" does not ...
2
votes
0answers
64 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 ...
1
vote
2answers
57 views
How do you explicitly show rows which have count(*) equal to 0
The query I'm running in DB2
select yrb_customer.name,
yrb_customer.city,
CASE count(*) WHEN 0 THEN 0 ELSE count(*) END as #UniClubs
from yrb_member, yrb_customer
where ...
0
votes
1answer
31 views
multple indexes same column sql
For DB2 database, Consider Table tbl (colA, colB, colC) and queries as
select *
from tbl
where tbl.colA = 1234.
select *
from tbl
where tbl.colA =1234
and tbl.colB = 73874
Will it help if we ...
0
votes
1answer
216 views
DB2 query Unknown column name ERRORCODE=-4460, SQLSTATE=null
A co-worker has baffled us all with a query that is failing for reasons we can't divine. I can confirm that ENOTE.EN_FILTER_VALUE_L.FILTER_VALUE_DECODE does exist in the database. At least three ...
0
votes
1answer
45 views
how DB2 transaction works exactly in concurrent situation
here are 2 tables employee(empID int,empName varchar,age int) and salary(salID,empID,...).
insert into employee
select ...
where not exists (select 1 from employee where empID = :employeeID)
insert ...
0
votes
1answer
103 views
Inserting in postgresql table from db2 trigger
My problem is the following one:
I have a db2 database and a postgres database. They are in different servers. Every time i add a new record into a db2 table, it should be added immediately to the ...
0
votes
1answer
69 views
DB2 trigger after update error
This is my first time using a trigger on my website using php. What I'm trying to achieve is when the condition and location field (located in inventory table) is updated, the trigger will insert a ...
2
votes
4answers
82 views
Max() in sql query
I have some records in my Table.
I want to select a record having Maximum Age
If i write below query it's working fine.
Select MAX(Age)
From Table
It's working fine. But If i write like this,
...
0
votes
2answers
119 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 ...
3
votes
1answer
45 views
How can I limit the display length of a field returned in DB2 CLP (z/OS)?
I'm a Unix hack, so I've got a script I run whenever I want to run some SQL. I call DB2 with my query and dump stdout to a file. Very neanderthal, but it works.
I've got a table with a varchar(28672) ...
0
votes
0answers
40 views
db2: loading ebcdic data from mainframe into Linux to stay ebcdic
I need to load tables coming from a mainframe DB2 (i.e with data encoded into EBCDIC) onto a Linux DB2 and keep them EBCDIC in Linux.
I tried to play with the TERRITORY and CODEPAGE parameters on the ...
0
votes
1answer
26 views
How do I update a subset of values in DB2 based on related tables?
I am trying to remove the last 10 characters from a CLOB field in a DB2 database. I can do so using:
UPDATE report
SET comment = LEFT(comment, (LENGTH(comment) - 10))
However, I want to limit ...
0
votes
1answer
34 views
Can the results in a cursor be used on a secondary cursor query?
I'm having trouble figuring the correct way to use the results from cursor1 in cursor2. Can this be done? I had read that they can be stored in a declared VARCHAR(8000), however that throws an ...
0
votes
3answers
62 views
SQL DB2 query using EXCEPT
The following is a query for "List customers who own items in all the available colours.
That is, for every available colour, the customer owns some
item in that colour."
Item is a table of items ...
0
votes
1answer
77 views
SQL explain plan shows very time-consuming FETCH operation
I'm working on some queries for a landing page that are assembled based on user selection of multiple values and fires them off to a DB2 database. I'm trying to tune them up to be as fast as possible ...
0
votes
1answer
46 views
DB2 Database + verification
So Im new to databases and Im trying to learn the ropes. I have a DB2 database that Im getting familiar with. I was assigned a task where I need to write a method that does a search on the database. ...
0
votes
1answer
34 views
Insert x00 into char field using insert statements
How to insert ascii value x00 to char fields in a table using insert query.
0
votes
0answers
18 views
rpg iSeries / .Net shows special char in param values
I am calling a stored procedure in DB2 from a .net iSeries prodvider.
It seems like the value in the call is prepended with '\02' (STX).
is this a normal behavior when calling a stored procedure in ...
0
votes
3answers
49 views
SQL - Problematic OR clause wrecking query times
I'm working on some queries for a landing page. This page will have a variety of search options for the user. The queries will be constructed from various pieces depending on what the user has ...
-1
votes
2answers
68 views
SQL DB2 Subquery Count [closed]
I am trying to write a subquery that counts the number of A's in a course but only lists if the grade count is over 1. Using data from assignment (grade), course section, and course (course name) ...
1
vote
2answers
58 views
Column or global variable not found with nested subqueries
I have a db2 database with two tables; let's call them order and order_comment.
What I want is to retrieve the date of the most recent comment along with the order information.
On sql server 2005, ...
0
votes
2answers
75 views
Db2 mainframe commands
I am naive in mainframe and my question would sound silly. However, I want to know where do we write or issue db2 commands,say diplay database command. Under which option do we issue these commands. ...
0
votes
2answers
47 views
Optimize DB2 SQL SUM query
I'm trying to add a row that indicate the total for a bunch of data. For example:
ISAAC 25000
Jane 18000
-----------------
TOTAL 43000
My current way of achieving this is using a ...
1
vote
1answer
69 views
Efficient DB2 query pagination and show total pages?
This post shows some hacks to page data from DB2:
How to query range of data in DB2 with highest performance?
However it does not provide a way to show the total number of rows (like MySQL's ...
0
votes
1answer
54 views
UNION in a subquery throwing the numbers
I'm working on a project for a landing page. Basically, there are multiple criteria that the user can select that will run a query on a DB2 database and return the results. The queries are broken down ...
0
votes
2answers
151 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
1answer
84 views
How to show only 1 row given 1 column has the same value in SQL
I have a sample output of this right now: Let's call it table X and attributes x.name, x.title, x.best x.lowest
NAME TITLE BEST LOWEST
...
0
votes
0answers
46 views
Failed to find or load the registered .Net Framework Data Provider - DB2 + .NET
I am using IBM DB2 9.5.3 with .NET 2.0 applications on windows 7 machine.
When this error troubled me for windows applications I found out that this is due to difference in 64 bit and 32 bit ...
1
vote
3answers
71 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
1answer
25 views
db2 difference between table and typed table
Below link classifies types of table in DB2.
DB2 Table Types
T = Table (untyped)
U = Typed table
V = View (untyped)
W = Typed view
What is the difference between these and which are the ...
2
votes
1answer
85 views
Perl DBI - DB2 : fetchrow failing for 0 records
I'm migrating AIX scripts to Linux.
In a particular script
$sql_stmt6 = "SELECT CHAR(DATE(MAX(TIMESTAMP)),USA) FROM SCHEMA.TABLENAME WHERE COL1 = 194 and COL2 ='P'";
$sth6= ...
0
votes
1answer
42 views
Entity Framework with Multiple DB Engines
We have a few .Net application that we would like to start using Entity Framework 5.0 but the problem is that our customers can choose to use one of any of the following database engines:
SQL Server ...
0
votes
0answers
22 views
FNH Mappings with DB2 GeneratedBy Identity
I am trying to map a table with an identity key field.
When I try to save I get the error SQL0803 Duplicate key value specified
INSERT INTO libpjk/Audit (AuditId, AuditDate, UserId, Keys, ValBefore, ...
0
votes
1answer
91 views
DB2 error Improper use of a string column, host variable, constant, or function
I'm trying to search all tables and columns for a certain value and I'm using php connection to IBM DB2 database. I was wondering if the error is cause because of multiple usage of union.
This is my ...
0
votes
0answers
24 views
How to create view db2/iseries with not default permissions?
Everytime I create a new view I have to change the permissions to all, and it's quite painfully to do a lot of times the same thing.
I also ask if is possible to change some default options in the ...
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 ...
0
votes
0answers
89 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 ...
0
votes
2answers
185 views
Db2 - how to assign value to a variable with EXECUTE statement in db2
I'm tring to execute query in a db2 procedure:
CREATE OR REPLACE PROCEDURE TEST (IN indbnm VARCHAR(30), IN intblnm VARCHAR(30))
LANGUAGE SQL
BEGIN
DECLARE statmnt2 VARCHAR(1000);
DECLARE ...
0
votes
1answer
103 views
Complex multi row aggregate SQL query [closed]
I'm looking for a way to aggregate by the existence of the same foreign keys across multiple rows.
E.g., ID numbers 1 and 2 should be aggregated together because they both have the same exact foreign ...
1
vote
1answer
51 views
Torque box - deploy additional jar file (rvm)
I have Jruby on rails application connected with DB2 C-Express. My problem is that the torquebox is not able to find the additional jar driver which I am using to connect the database and the ...
0
votes
2answers
57 views
Grails update() cannot locate record, show() and edit() can
I've got a fairly simple Grails app against a DB2 database. Everything works fine except when I try to update a record. show() and edit() are able to find the record , but the update fails saying that ...
0
votes
1answer
42 views
securitylablelcomponentelements and securitylabels mapping in db2
DB2 allows user defined LBAC security policies. For creating the required labels and authorizations, I followed the steps provided here. So far so good. However, retrieving these policies is a big ...
3
votes
1answer
166 views
Is there a way to change user password on IBM System i (aka iSeries / AS400) using SQL?
I have a C#.NET application that must be able to change the user password on an IBM System i (iSeries / AS400) machine. I am currently using the following code to perform this operation using IBM's ...
0
votes
2answers
60 views
db2 equivalent of MySql REPLACE INTO
I very useful statement I like of MySql is REPLACE INTO table that is 'REPLACE a value if-exist OR INSERT INTO table If-Not-Exist'.
The documentation of db2 REPLACE is for a function operating on ...
1
vote
1answer
338 views
DECLARE GLOBAL TEMPORARY TABLE Vs CREATE GLOBAL TEMPORARY TABLE in DB2
am creating a GLOBAL TEMPORARY TABLE in DB2. and when i surfed i got a two way to create
1. Declare
2. Create.
1. DECLARE GLOBAL TEMPORARY TABLE SESSION.TEMP_EMP
(EMPNO CHAR(6) NOT NULL,
...
0
votes
1answer
24 views
DB2 Recover Database
I Accidentaly deleted the instance of a Database, is there any way to recover the data?
I’ve created it again..
sudo ./db2icrt -u db2fenc1 db2dtest1 (same old name)
Database name : TESTDB1 ...
1
vote
2answers
74 views
Perl - best way to trap exit status and capture log for an external command
need to run and external command, write output to a logfile and trap exit status
my $cmd = "db2 \"insert into schema.tablea (id, name, city) values (99, 'Micheal', 'London')\" ";
open my $log, ">", ...
0
votes
0answers
35 views
Insert abnormal characters from a view to a table in db2 sql
I am using DB2 i5/OS version. I have a salesview ready which looks like this:
ORGNNAME SHIPTONO ITEMNO
Landoll Corporation 00000001 ...


