Tagged Questions
The IBM DB2 Enterprise Server Edition is a relational model database server developed by IBM. It primarily runs on Unix (namely AIX), Linux, IBM i (formerly OS/400), z/OS and Windows servers.
11
votes
4answers
2k views
Cycle detection with recursive subquery factoring
Oracle SQL can do hierarchical queries since v2, using their proprietary CONNECT BY syntax. In their latest 11g release 2, they added recursive subquery factoring, also known as the recursive with ...
11
votes
7answers
3k views
Is Pylons enterprise-ready?
I am a developer who is looking for an Enterprise-ready web application framework for Python. My main concern is long-term support, extensive feature set and reliability.
I have been experimenting ...
8
votes
1answer
83 views
Are there any issues with always preparing SQL statements with PHP?
Is there any issue with always preparing SQL statements with PHP instead of executing them directly?
Not sure if database system matters, but it's DB2 on System i.
8
votes
2answers
7k views
Does DB2 have an “insert or update” statement?
From my code (Java) I want to ensure that a row exists in the database (DB2) after my code is executed.
My code now does a select and if no result is returned it does an insert. I really don't like ...
7
votes
2answers
6k views
SQL query of multi-member file on AS400
On AS400 in interactive SQL in a 5250 session,
select * from myfile
returns rows from one member only when myfile has more than one member.
How can I get rows from a specific member?
Important: ...
6
votes
8answers
4k views
Connect PHP to an AS/400
I've got an upcoming project wherein I will need to connect our website (PHP5/Apache 1.3/OpenBSD 4.1) to our back-end system running on a iSeries with OS400 V5R3 so that I can access some tables ...
5
votes
3answers
89 views
Is the PK of a DB2 table a clustered index by default?
This can be a silly question but I want to be sure 100%.
Is the PK of a DB2 table a clustered index by default?
5
votes
2answers
690 views
How do I install IBM DB2 Express-C on Mac OS X 10.7 Lion?
I was able to install and use IBM DB2 Express-C 9.5.2. beta in Mac OS X Snow Leopard with no trouble at all. In Mac OS X 10.7 Lion, though, installation using the db2setup script fails with:
...
5
votes
4answers
420 views
What does a timestamp in T-Sql mean in C#?
I'm trying to develop a model object to hold a Sql Server row, and I understand perfectly how to do this except for the T-Sql/SqlServer timestamp. The table is defined as:
CREATE TABLE activity (
...
5
votes
3answers
473 views
Query Validation using c#
I am looking for a query validator in c#, which allows me to parse the SQL Text from textbox and verify wether its correct or not before sending it for execution. (MS SQL or DB2 queries).
5
votes
3answers
195 views
Object Technolgy / Object-Oriented Technology implemented in Relational Databases
I am looking for some books/artices/blog post/discussions about "Object Techonolgy/Object-Oriented Technology implemented in Relational Database". I would like to have some more overview about history ...
5
votes
3answers
227 views
Is “LIKE ?” More efficient than LIKE '%'||?||'%'
Recently one of my colleagues made a comment that I should not use
LIKE '%'||?||'%'
rather use
LIKE ?
in the SQL and then replace the LIKE ? marker with LIKE '%'||?||'%' before I execute ...
5
votes
3answers
866 views
Is there a .net 4.0 provider for IBM DB2?
I can do any .Net development using v2 of the CLR (.net 2, 3, 3.5) but when I try to use .Net 4.0 then I get an error saying that the version of IBM.Data.DB2 is too old / out of date (it's compiled ...
5
votes
3answers
244 views
Is my understanding of “select distinct” correct?
We recently discovered a performance problem with one of our systems and I think I have the fix but I'm not certain my understanding is correct.
In simplest form, we have a table blah into which we ...
5
votes
3answers
411 views
Spatial SQL: Most suitable datatype for a square?
I have a spatially enabled database (DB2, in this case). I need to store a large number of squares in a table. Which standard spatial SQL datatype is most suitable?
I guess I could use an ST_polygon, ...
5
votes
2answers
4k views
iSeries DB2 - Is there any way to select the identity value from an insert statement?
I know we're rare, us poor folk that are using iSeries for DB2/AS400, but I'm hoping someone can answer this simple question. Is there any way to return the identity value from an insert statement ...
5
votes
7answers
7k views
SQL - How do you compare a CLOB
in a DB2 trigger, I need to compare the value of a CLOB field.
Something like:
IF OLD_ROW.CLOB_FIELD != UPDATED_ROW.CLOB_FIELD
but "!=" does not work for comparing CLOBs.
What is the way to ...
5
votes
6answers
2k views
Database Case Insensitive Index?
I have a query where I am searching against a string:
SELECT county FROM city WHERE UPPER(name) = 'SAN FRANCISCO';
Now, this works fine, but it doesn't scale well, and I need to optimize it. I ...
4
votes
3answers
66 views
Where's my php.ini?
So a few years ago I installed apache 2.2x and php 5.3.1 on a Linux server I maintain. I used .tar.gz's and built them as instructed (instead of rpms and what-have-you). And all was fine.
Today I ...
4
votes
2answers
135 views
Query fails when run via Visual Studio, works fine elsewhere
I receive this error:
[DB2/6000] SQL0952N Processing was cancelled due to an interrupt. SQLSTATE=57014
whenever I run a query via a visual studio project in vb.net. If I run the same query ...
4
votes
2answers
142 views
Ignore 'read-only' column in creates and updates in Ruby ActiveRecord
I'm looking for a solution to the following problem: I have an ActiveRecord entity that is backed by an updatable database view (in DB2 via the activerecord-jdbc-adapter gem). This view contains one ...
4
votes
3answers
429 views
Single hierachical query for both all ancestors/parents and children (DB2/SQLServer)
I have found the solution for Oracle using UNION ALL on two hierarchical CONNECT BY queries, one fetching the ancestors and another the children.
I want to achieve the same for both DB2 and SQL ...
4
votes
2answers
1k views
4
votes
2answers
224 views
Get Distinct property values from List
I am trying to get distinct FullNames from a list that contains FullNames and IDs then displaying these in a listBox control. Is there a simple way to do it? Thanks Ben
using (DB2DataReader dr = ...
4
votes
6answers
488 views
Hundreds of aliases/synonyms vs database tables' fully qualified names
Given hundreds of database tables in multiple schemas, when creating stored procedures and views, would you recommend using aliases/synonyms or fully qualified name? Given a few schema.table like so,
...
4
votes
1answer
394 views
DB2 JDBC broke spring named parameter mapping
We've got an application using spring for making calls to DB2 stored procedures.
The application was working fine with jdbc version 1.XX.XX (and DB2 V8). An recent upgrade to DB2 V9 moves us to using ...
4
votes
3answers
505 views
Can we assign custom Query Hints to JPA NamedQueries
We are required to append query numbers to each and every query our application executes.
EX: SELECT * FROM ... WHERE ... QUERYNO 123456;
OpenJPA supports query hints, but only for specific hints ...
4
votes
4answers
2k views
Equivalent of LIMIT for DB2
How do you do LIMIT in DB2 for iSeries?
I have a table with more than 50,000 records and I want to return records 0 to 10,000, and records 10,000 to 20,000.
I know in SQL you write LIMIT 0,10000 ...
4
votes
1answer
996 views
How to do a safe “SELECT FOR UPDATE” with a WHERE condition over multiple tables on a DB2?
Problem
On a DB2 (version 9.5) the SQL statement
SELECT o.Id FROM Table1 o, Table2 x WHERE [...] FOR UPDATE WITH RR
gives me the error message SQLSTATE=42829 (The FOR UPDATE clause is not allowed ...
4
votes
5answers
866 views
Converting SQL number into a time, to perform date comparisons
I am struggling with an SQL time comparison on two fields that have been set up as integers, rather than time stamps.
I have some performance metrics in a database that the developer originally set ...
4
votes
3answers
199 views
Which DBMSs offer index-organized tables?
My current knowledge:
Oracle does offer index-organized tables and defaults to heap-organized.
I heard that SQL-Server uses only index-organized tables
I am especially interested in answers for ...
4
votes
2answers
537 views
How do you get average of sums in SQL (multi-level aggregation)?
I have a simplified table xx as follows:
rdate date
rtime time
rid integer
rsub integer
rval integer
primary key on (rdate,rtime,rid,rsub)
and I want to get the average (across all times) ...
4
votes
5answers
1k views
Differences between DB2 and Oracle
We had a talk with colleagues about databases yesterday as we will have a DB2 education in few weeks. I'm wondering, what are the differences between DB2 and Oracle as two major enterprise solutions? ...
4
votes
6answers
351 views
Should we drop stored procedures and run database calls from java programs
I am fighting to keep the use of stored procedures in our company. There are a few people who say they are bad and we should not use them. We are using DB2 on the i-series.
Please help in my ...
4
votes
3answers
636 views
Should left outer joins be avoided in DB2
We are having a debate in our company. I use left outer joins quit frequently. I was told by another programmer that there is too much over head and I should not use them. Example, Lets say I have ...
4
votes
1answer
2k views
Any DB2 database project support for Visual Studio 2010?
Back at Tech Ed in 2008, Microsoft announced that:
IBM and Microsoft have agreed to work together to integrate IBM DB2 database access with Visual Studio Team System Database Edition.
-- ...
4
votes
3answers
769 views
What is the most critical feature PostgreSQL lacks compared with Oracle and DB2 for OLTP?
If you have to use PostgreSQL instead of Oracle or DB2, what feature would you miss the most? I'm specially interested in features which are important for high availability OLTP applications. Thanks!
...
4
votes
3answers
1k views
What is Type 4 XA driver?
In our application when we create the Datasource, we select the
Database Name DB2
Driver: BEA Type 4 XA DB2
But what i know is, there are only 4 types of Driver. Then what is Type 4 XA driver?
4
votes
6answers
6k views
Select the first row in a join of two tables in one statement
hi i need to select only the first row from a query that joins tables A and B, on table B exist multiple records with same name. there are not identifiers in any of the two tables. i cannt change the ...
4
votes
5answers
603 views
How can I copy a record, changing only the id?
My table has a large number of columns. I have a command to copy some data - think of it as cloning a product - but as the columns may change in the future, I would like to only select everything from ...
4
votes
4answers
3k views
Create DB2 History Table Trigger
I want to create a history table to track field changes across a number of tables in DB2.
I know history is usually done with copying an entire table's structure and giving it a suffixed name (e.g. ...
4
votes
5answers
13k views
IsNull function in DB2 SQL?
Is there a performant equivalent to the isnull function for DB2?
Imagine some of our products are internal, so they don't have names:
Select product.id, isnull(product.name, "Internal)
From product
...
3
votes
1answer
84 views
Excel to IBM DB2 Connection
I've been attempting to establish a connection with an IBM DB2 database with which I can extract the data.
The details I have are:
Server Name
Data Library
Username/Password.
I've tried two ...
3
votes
2answers
203 views
Relationship between catalog, schema, user, and database instance
To compare databases of different vendors (Oracle, SQL Server, DB2, MySQL, and PostgreSQL) how can I identify any object uniquely and do I need a catalog? For instance, In Java's DatabaseMetadata I ...
3
votes
3answers
104 views
How do you convert a decimal date to a date field in a where statement?
I have a field that is a decimal date (YYYYMMDD). I need to find all
records that are a year or less old. Since date are so easy, I am
trying to do:
WHERE DATE(SUBSTR(CHAR(A.CPADDT),1,4) CONCAT '-' ...
3
votes
3answers
190 views
DB2 Select Character Issues
I am trying to select data from a DB2 database managed by another person so I can insert it into my SQL database managed by me for data manipulation. I am using a java program to do this and the ...
3
votes
3answers
201 views
Tool to migrate from DB2 to MySQL
There was a MySQL migration toolkit can migrate from DB2 to MySQL, but the MySQL site says it's not available any more. However, I can't find a substitute for that in MySQL workbench CE.
Where is the ...
3
votes
3answers
112 views
Why does FETCH FIRST N ROWS not work in combination with WITH statement?
I have the following SQL statement which does not run on my DB2 database:
WITH a AS (
SELECT * FROM sysibm.systables
)
SELECT a.* FROM a
FETCH FIRST 10 ROWS ONLY
Without the FETCH statement it ...
3
votes
4answers
145 views
Is there an IBM Iseries/DB2 equivalent to SQL Profiler?
Subject says it all. Looking to capture sql submitted to DB2.
3
votes
2answers
114 views
Why is Hibernate ALTER ing my QUERY ? multiple columns with IN operator
If I debug, I can see that the string I'm building is
and ( property1 , property2 ) in ( values (0, 5) , (3, 4) )
but Hibernate thinks it's better to transform it like this
and (
(
...