0
votes
0answers
3 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
1answer
26 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
0answers
17 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
62 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 ...
0
votes
2answers
35 views

DB2 select multi rows into one row

I have the following: UserID | Number 1 | 100 1 | 200 1 | 300 2 | 20 2 | 21 2 | 22 3 | 333 ...... ..... 1000| 23 ....... and I want to get the following result: UserID | Average 1 | 200 2 | 21 3 | ...
1
vote
2answers
62 views

DB2 Dependency table

Can you please mention DB2 Dependency catalog table, to find the dependency present between table and view, table and indexes and table and triggers with example. In Oracle I can use All_Dependencies ...
0
votes
1answer
33 views

Is there any way to use the table data as separate column in DB2 database

I want to use the table data as a separate column in DB2 database. For example, consider a table Employes contains EmpID, Address, DeptID, Hiredate. My question is, how to display particular hiredate ...
0
votes
1answer
33 views

Subtracting the result of one query from that of another in DB2

For School I need to subtract an average of values of a specific subset of entries in a table from the average of all of these values: I want to subtract SELECT AVG(gehalt) FROM mitarbeiter WHERE ...
0
votes
3answers
43 views

Connect by prior for DB2

I have a problem with hierarchical queries, the following query is working in Oracle, but not in DB2 It will retrieve the destination which can be possible if we start our journey from Chicago.. ...
-5
votes
2answers
45 views

To update the url in the database [closed]

I wanted to update the current url to new url for every user, there are some 2000 records which I should update, doing that in sql query is tedious job, so can i know how to update those url ...
0
votes
1answer
99 views

How to create New instance in db2 10.1 using IBM Data Studio

How to create new instance in db2 10.1 using command line db2icrt command with example or using data studio client. Anybody please reply. Thanks
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 ...
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
0answers
39 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
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.
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
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
0answers
61 views

Database table gets locked when executing the stored procedure

Whenenver the below stored procedure is called, I get table in use exception. Below is the code for stored procedure, CREATE PROCEDURE SP_BATCHFILE_REPORT_GET001 ( IN countryCode CHAR(2), IN ...
0
votes
1answer
90 views

DB2 update trigger

I am trying to create a trigger in a DB2 database that runs on the update of a column in one table, and then fills in another table with certain values. For example, there is a power unit table with ...
0
votes
1answer
32 views

make permutations impossible to insert db2

I would love to have some help with a small problem I have. Suppose I have a table called table0 with two columns, c and d. Suppose I do an insert such as 'insert into table0 values ('paco', sono') ...
1
vote
0answers
25 views

DB2- Compiling all storeprocedures

I'm working with a legacy DB which has 100 s of StoreProc, Views and Materialized views. Now I have to introduce a column in one of the table and want to check everything is working in order as ...
0
votes
1answer
154 views

Correcting DB2 stored procedure error

I am creating a stored procedure inside my DB2 database, here is my stored procedure codes: CREATE OR REPLACE PROCEDURE PWDCHANGE (UNAME IN VARCHAR(32), ...
2
votes
1answer
105 views

Database Data Difference Tool to Compare Data in Common Tables in Different Databases [closed]

I have a source DB and a target DB and I am migrating some data from one to another. After the process I want to compare the 2 Databases against changes if any in schema as well as the existing data. ...
1
vote
1answer
41 views

Moving data from Mysql to Db2 [closed]

Has anyone worked on moving data from MySQL to Db2, I am looking for options to move data from mysql to Db2. Any help is much appreciated.
0
votes
1answer
100 views

How to make a java interface that can open an image file and save it to database and resize it?

Say I have a code like this: import java.awt.*; import java.awt.event.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import ...
-1
votes
1answer
151 views

How to get a value from DB2 database and assign it to a string value? [closed]

I'm working with my java application connected to a DB2 database. What I want to do is to get a value from the DB2 table that I've queried and assign it to a string value in java, can you please teach ...
0
votes
0answers
76 views

DB2 SQL Replication on Remote Servers

I am new to IBM DB2. I want to replicate data between databases. I followed the tutorial of replication from here. It works nice in two local databases. Now, I want to put each database on remote ...
0
votes
1answer
45 views

db2 Stored proc - usage of default null gives error

Consider following proc: CREATE PROCEDURE XYZ.ABC ( IN V1 DATE, IN V2 VARCHAR(50) DEFAULT NULL ) ...
0
votes
3answers
91 views

Bitmap index support in different databases [closed]

Could someone tell which database implementations currently support bitmap indexes? The only answer I know for sure is Oracle and probably DB2. Please provide supporting references.
2
votes
2answers
48 views

Who triggered my trigger?

My situation: I want to make a historical table of the use of a truly sensitive table I have in db2. That table is being accessed by a generic user through some static plans (already compiled). What ...
1
vote
1answer
51 views

which is better ? Reduncancy with faster access of data , or no redundancy and slower data access

i want to create a database for a forum website... All the users of the forum website will be stored in a table named USERS with the following fields : user_name user_ID (and additional details) ...
0
votes
1answer
153 views

create db2 non clustered index

Can you please tell me how to create a nonclustered index in DB2 ?I am not able to find any commands for that. I want to create one index on three columns. I tried: CREATE INDEX ...
0
votes
1answer
59 views

db INDEX on ORDER BY FIELD in very simple query does not help - still slow response?

I have very simple query which returns 200K records very slow (20 seconds). SELECT * FROM TABLE ORDER BY ID DESC If I do just SELECT * FROM TABLE it returns quick result. I created INDEX on ...
0
votes
1answer
188 views

dealing with a CLOB column in db2 import and export command

I have a source table and destination table in different databases Both tables have the same column structure. Some of the columns are of type CLOB. I am using db2 export command to export the ...
0
votes
1answer
106 views

Db2 data movement across different linux machines

We are planning to move to a new server, and we have installed db2 9.7 on it. Which is the best option to move all the data from the db in the old server to the new server. Both the servers have ...
0
votes
3answers
466 views

How to convert VARCHAR to TIMESTAMP in DB2

I have a varchar value in BD2 Table like below format 121226145503+0530 I want to convert this varchar value to time stamp format like below 2012/12/26 14:55:03
0
votes
1answer
38 views

Plugin or tool for eclipse that can show the connectivity between tables in a graphical pic format

I use to connect to database through eclipse database explorer perspective and I can see all the tales of my database ,Please advise is there any plugin or tool by which let say I have connectivity ...
0
votes
2answers
133 views

Inserting values into a table via a stored procedure

I'm trying to create a stored procedure that inserts some data into a table when the first table get update. Explanation: I have two identical tables, Table1 and Table2. I would like that when the ...
0
votes
1answer
93 views

DB2 sort the result by coumn which is not mention in query

Result of following query is weird to me, (I' m new to DB2). It sorted the result by column in the table which I didn't mention in the query. WITH RESULT AS ( SELECT T1.*, ROWNUMBER() OVER() AS ...
1
vote
3answers
179 views

Which is the best method to store files on the server (in database or storing the location alone)?

In my project (similar to mediafire and rapidshare), clients can upload files to the server. I am using DB2 database and IBM WAS web server and JSP as server side scripting. I am creating my own ...
3
votes
1answer
238 views

Connect db2 via odbc C#.net

Could some one please help me with this problem. ERROR [IM004] [Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_ENV failed Description: An unhandled exception occurred ...
0
votes
1answer
474 views

Cannot create database/run other commands in DB2 Command Line Processor

I'm unable to create database using DB2 Command Line Processor (DB2 Express C). I wrote a simple operation to create a database : db2=> create database wiki It's showing me an error : ...
0
votes
1answer
49 views

Is there any method in Triggers to skip update/insert from particular user in DB2?

I don't have much knowledge in TRIGGERS, below is my doubt kindly suggest any answers. SYSTEM: I have a table called A with Triggers, it designed in such a way if any update/insert happens it will ...
2
votes
2answers
265 views

create db2 schema using jdbc

What is the correct syntax or what are the correct steps for creating a schema in DB2 using JDBC? When running create schema test1 or create schema test1 authorization db2admin as db2admin, I ...
0
votes
1answer
88 views

getting max value from alias in DB2

I wanna searching for max value in my alias. this is my query SELECT DISTINCT IPK.NIM,IPK.NAMA,IPK.IPK FROM MAHASISWA M, PENILAIAN P, MATA_KULIAH MK, KRS K, (SELECT M.NIM,M.NAMA, ...
0
votes
4answers
49 views

Rewriting Joins as Subqueries in this query

Can you guys pls help me rewrite this using a subquery SELECT S.DENUMIRE, M.DENUMIRE, AN FROM SPECIALIZARE S JOIN MATERII M ON S.CODSPEC = M.CODSPEC ORDER BY S.DENUMIRE
0
votes
0answers
116 views

DB2 Error: Assignment of NULL value to not null column “ ” is not allowed?

I'm trying to do an insert on a table, and it's throwing this error. However, it isn't showing me the column affected. Does anyone know whats going on here?
-2
votes
1answer
43 views

How to get all children and all parents using stored procs

I had parent and child table parent child 1 2 2 3 2 4 3 5 3 ...

1 2 3 4 5 6