0
votes
2answers
13 views
Is it mandatory to use an ALIAS when we are doing some operation on the column?
Folks,
Is it mandatory to use an ALIAS when we are doing some operation on the column?
Ex: select upper(col1) from table1
when i am trying to retrieve the resultset by rs.getStrin …
0
votes
0answers
12 views
Doing an INSERT from a C DB2 scalar UDF
Is it possible to do an INSERT statement inside a scalar C-language UDF in DB2? I know it sounds weird to have an UDF with side effects like this, but there's a good reason for it. …
0
votes
1answer
17 views
com.ibm.db2.jcc.b.SqlException: Invalid argument: unknown column name COL1
Hi,
i was getting this error com.ibm.db2.jcc.b.SqlException: Invalid argument: unknown column name COL1 when trying to access my resultSet with rs.getString("COL1").
My SQL Query …
2
votes
2answers
22 views
Can DB2 tell a web-app when a table data is updated?
I have a table of non trivial size on a DB2 database that is updated X times a day per user input in another application. This table is also read by my web-app to display some info …
0
votes
3answers
37 views
How to put a constraint on two combined fields?
I'd like to put a constraint, a check or a foreign key, on two combined fields from table1 to another field in table2. Here is what I tried, but both gave me errors:
ALTER TABLE t …
4
votes
4answers
75 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 th …
0
votes
1answer
19 views
Odd GROUP BY output DB2 - Results not as expected
If I run the following query:
select load_cyc_num
, crnt_dnlq_age_cde
, sum(cc_min_pymt_amt) as min_pymt
, sum(ec_tot_bal) as budget
, case when ec_tot_bal > 0 then 'Y' else …
0
votes
3answers
25 views
AS400 DB2 Journals search
I am new to DB2 administration on AS400, could you point me to the best practices/tools to search for errors in the DB2 journals?
So far I use the DSPJRN command but I am unable t …
1
vote
1answer
34 views
Odd WHERE NOT EXISTS performance on DB2
I am experiencing very odd performance on DB2 version 9.1 when running the query below:
select a.CYCL_NUM
, a.AC_NUM
, a.AUTHS_DTE
, a.PL_ID
, a.APRVD_RSPN_CDE
, a.AUTH …
1
vote
4answers
39 views
Tossing out certain result rows in a left join
In DB2, using the following left join
select a.deptno, a.deptname, b.empno
from #dept a
left join #emp b
on a.deptno = b.workdept
on two tables, gets me a list like:
dpt name …
0
votes
2answers
53 views
How do I select min/max dates from table 2 based on date in table 1 (without getting too much data from sums)
Related to a question I asked earlier here, I've found a problem which is eluding me (obviously).
The original question was how to select a min and max date from a daily table bas …
0
votes
2answers
32 views
Adding one primary and one foreign key adds total four keys
Hi All,
I am trying to alter table to add one primary key and one foreign key in a table. However when I am running the alter table query, I always get four values, two primary ke …
0
votes
3answers
61 views
How to write the SQL for the following problem?
I have to find, if there is any row in the table for which value of col2 is duplicate. Like in the specified scenario row 1 and 2 are duplicate as value of col2 is same.
Table
--- …
0
votes
3answers
48 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 …
1
vote
1answer
33 views
Free alternative to DB2 for localhost development
I am looking for free DBMS options for a localhost environment, which will support migrating data and database objects (e.g. stored procedures, table definitions) to a DB2 9.5 inst …
