Tagged Questions
0
votes
0answers
15 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
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
1answer
45 views
Declaring a cursor in DB2 with other activity results in failed deployment
After looking around all over the Internet, I have to come back to SO :).
Summary:
DB2 stored procedure doesn't deploy when 3 lines are uncommented, otherwise it works perfectly fine. Any guesses ...
2
votes
1answer
24 views
Error while executing sql statement
I am using IBM RAD.
I am executing following query.
Conn.prepareStatement("update UPLOAD set STATUS='Decrypted' WHERE PATH ='"+path+"'");
the datatype of PATH in DB2 is VARCHAR.
i am getting ...
0
votes
0answers
165 views
Entity Framework 5 IBM DB2 EntityException The underlying provider failed on ConnectionString
I am using Visual Studio 2012 to build a web application. The application uses webforms, Entity Framework 5 with an IBM DB2 database server. I have the latest IBM Drivers v10.1.2 installed on both my ...
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 ...
-1
votes
2answers
70 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
1answer
24 views
Having the millenium digit on a separate column from the rest of the date. Why would they do that?
I'm working on this old application from the 80's. It runs on a DB2 backbone and I just noticed something weird on several tables: The date is split in two columns with one column having only the ...
-1
votes
2answers
61 views
Differences beween 'set' and 'select into' in IBM DB2 SQL PL
When developing in SQL PL, what is the difference between 'set' and 'select into'?
set var = (select count(1) from emp);
select count(1) into var from emp;
Are they completely equivalent? where ...
2
votes
1answer
136 views
IBM .net driver cannot find db2locale.dll
I'm trying to pull a Git repository of my .net solution over to another folder on the same machine (just to make sure it works).
In the project I use that creates IfxConnections, when I try to create ...
1
vote
2answers
34 views
Is there a way to mock a DB2Exception that has no public constructors?
I'm writing unit tests and I want to simulate the scenario where a DB2Exception gets thrown.
The problem is that it has no public constructors, so I can't create it, and most unit-testing frameworks ...
2
votes
1answer
124 views
How to put SELECT inside trigger in IBM DB2
I want my database to show the table every time while I insert a new row. My code is able to compile but It don't show the table after I insert a new row.
Below is my code :
create trigger show_all ...
0
votes
3answers
302 views
IBM DB2 - Can't Set Schema
I am trying to use the command, SET SCHEMA. However, it does not appear to be working, I get an error message. I am able to use the schema if I use Schema.Tablename, but this can be tedious. I am ...
-1
votes
1answer
130 views
IBM DB2 - Find first unused primary key in user specified range [closed]
I am trying to find the first available primary key in a range that the user specifies. For example, if the user enters a range of 8000 to 8100 and I have a table with the following values [...8000, ...
-1
votes
2answers
43 views
How to submit bug to IBM [closed]
I'm using unixODBC with libdb2 driver to connect to IBM DB2 database, unfortunately valgrind reports huge amount of errors (both memcheck and helgrind). I would like to report that to IBM.
First of ...
2
votes
1answer
138 views
DB2 and Report Studio: convert string date to numeric
I have a date in this format: Jan 1, 2013 (taken from the date prompt in report studio)
I want to convert it to a timestamp using sql(db2) or a report studio command, the output should look like ...
0
votes
1answer
79 views
How many concurrent sessions in IBM DB2 9.7 are normal?
I am using the db2top command to profile my DB2 9.7 database. It shows around 1000 sessions, but I can't get any sense on about what those sessions are. We have a few concurrent testers testing the ...
0
votes
1answer
800 views
DB2 - CLI0108E Communication link failure. SQLSTATE=40003
I keep getting the following error message when I try to reun a query against IBM DB2 9.1 version.
CLI0108E Communication link failure. SQLSTATE=40003
The query is updateinglarge set of ...
0
votes
1answer
107 views
IBM DB2 9.7, what tablespace do CLOBs utilize?
In DB2 9.7:
what 1) tablespace do CLOBs use?
And
2) are tablespaces a restricting factor at all if an inline length is not defined at all?
0
votes
1answer
183 views
IBM DB2 SQL | Obtain Sunday and Monday Date from YEAR and WEEK NUMBER
In IBM DB2, using only SQL, I would like to obtain a Sunday Date and a Monday Date using the YEAR and WEEK NUMBER.
I am new to IBM DB2.
0
votes
0answers
179 views
Using CLOBs in IBM DB2 9.7 and best practices
I would have a few questions about CLOBs in DB2 9.7, I really appreciate any help.
We currently define CLOBs in our tables to be maximum, i.e. they are defined as "CLOB(2147483647)" Is this too ...
0
votes
2answers
369 views
How to select first row and update it in IBM DB2 9.7
One can do magic in T-SQL with common table expressions, but how can this be done in DB2 9.7?
1. select the first row in a table
2. Update that specific row
Both steps must be performed within one ...
0
votes
1answer
369 views
IBM DB2 9.7 common table expression with update
I am trying to:
Select a row and name it CTE
update some columns for that table CTE
I am implementing this using common table expression, but I cannot get it to work.
Begin
With CTE AS
(select * ...
1
vote
1answer
159 views
Altering the IBM DB2 9.7 STMTHEAP
How can I get the current value of my DB2 9.7 DB's STMTHEADP, and how can I alter it?
0
votes
1answer
87 views
DB2 IN-list access , Index Scan, TS scan
I am studying about IBM DB2 and I got a question about access Type.
I am not really sure the way to decide IN-list access , Index Scan, TS scan in the query.
for example, we have
SELECT * FROM T
...
0
votes
1answer
40 views
Pivoting on a field?
I use IBM DB2 SQL.
Here is my current query:
select
EXSHPE as "Shape",
EXDLVY as "Delivery",
Sum(Case When EXSURF = 'Print' Then EXRLTO Else 0 End) As Retail_Print,
Sum(Case When EXSURF = ...
0
votes
1answer
553 views
C# IBM.Data.DB2.dll wrong version
I used IBM.Data.DB2 version=9.7.4.4 and everything worked perfectly.
But I couldn't use a performance profiler and the support told me I should try
with new IBM version = 10.1. I installed it and ...
1
vote
2answers
600 views
How to execute compound sql in DB2
I am facing a challenge trying to understand DB2 sql (note, I am coming from MS SQL Server) :P.
Here is a scenario, I have got 2 tables one has IDs and other details, second one has lot of other info ...
0
votes
0answers
92 views
Use python db2.py module connect db2
I am trying to connect db2 use db2.py module like this
conn=DB2.connect("{IBM DB2 CLI DRIVER};database=aaa;hostname=aaa;port=aaa;protocol=tcpip;",uid='aaa',pwd="aaa")
got error:
...
0
votes
1answer
103 views
Setting property for named parameters in IBM DB2
I'm just getting into IBM DB2 and I have some fairly complex queries to create that will be based on user input in a Java webapp. The thing is, these queries will be put together with multiple ...
0
votes
2answers
132 views
How to install PDO_IBM on Linux [closed]
I've been trying to install PDO_IBM for weeks to no avail.
I downloaded and installed Express-C and Data Server Client from IBM.
I installed php-pdo.
I tried to run pecl install PDO_IBM and it tells ...
0
votes
2answers
182 views
DB2 - migrate schema from v9.5 to v10.1
I have a schema in a DB2 v9.5 database, which has 20 tables under it. Now I need to migrate all the tables under this schema to a new DB2 v10.1 database. What is the easiest way to achieve this?
...
0
votes
1answer
91 views
How do I find the table for an ItemType in IBM Content Manager 8.4
Given the item type name how do i find the underlying table on the IBM Content manager 8.4 Library Server database?
The database name is usually ICMNLSDB and the Scehma name is usually ICMADMIN
1
vote
0answers
168 views
JRuby database.yml file configuration to use IBM DB2
I have installed:
JRuby (1.7.0.preview2)
Rails (3.2.8)
IBM DB2 Express C (1.01)
active-record-jdbc-adapter (1.2.2)
How should I change the database.yml file in order to my rails application to ...
0
votes
0answers
104 views
IBM DB2: How to loop through updated columns in a trigger
I have created an UPDATE trigger that references the OLD and NEW changed rows. I need to loop through the columns that have changed in the row. How can I make such a loop? Note that I don't ...
0
votes
1answer
171 views
IBM DB2: How to retrieve table name in which the trigger is created in?
I am working with IBM DB2 database. I have created a trigger in a table. I need to know, from within the trigger, in what table the trigger resides in. Any ideas? Thanks!
2
votes
0answers
68 views
IBM Infosphere Data Architect: How to debug SQL query execution
I am writing/running fairly complex SQL queries in Infosphere Data Architect for IBM DB2 9.7. Is it possible to somehow debug the execution? Printing out debug information line-by-line is sufficient, ...
2
votes
1answer
75 views
How to get list of updated columns from within a trigger in IBM Db2 9.7?
I am using DB2 9.7 enterprise edition on Windows 7. I have created a trigger and now I need to know which columns have been updated, from within the trigger. In MS SQL 2008 there is a function called ...
0
votes
0answers
110 views
IBM DB2 issue when declaring global temporary tables within BEGIN ATOMIC
I am converting some triggers and stored procedures from SQL Server 2008 to IBM DB2 9.7. In SQL Server, a trigger is created (update) that creates a few temporary tables AND accesses "inserted" and ...
0
votes
1answer
448 views
get the list of db2 tables which have been changed since a particular timestamp say since 20120801185856 timestamp
Is there any way in IBM DB2 to get the list of tables which have been changed(updated/added/deleted) since a specific timestamp?
The problem i am facing is i have restored one backup on 25 July in ...
1
vote
1answer
227 views
Datetime field overflow with IBM Data Server Client v9.7fp5
Using EntityFramework v4.1 and IBM Data Server Client v9.7fp5, DB first generated code based on a pre-defined DB2 table which has DATE columns. The DB2 DATE columns are mapped to .NET DateTime data ...
0
votes
1answer
132 views
Copy a DB2 row to history table with a trigger (contains XML)
I want to copy a row that contains an XML column to a history table. Seems it is not possible to do that?!
What I have tried:
CREATE TRIGGER MARTIN."Pages_I" BEFORE UPDATE OF "tstamp" ON ...
1
vote
1answer
1k views
IBM.Data.DB2.DB2Exception: ERROR [08001] [IBM] SQL30081N A communication error has been detected.
My application works with IBM DB2 via their .net provider(FP5). When i left application for a long time and after that try to get anything from database- i get the following error:
---> ...
0
votes
1answer
2k views
Where is DB2 control center located in IBMDB2 Express-C 10.1?
I had installed IBM DB2 Express - C (full) edition in my windows PC, I couldn't find DB2 Control Center application, where is it located?
2
votes
2answers
392 views
IBM DB2 administration server already active , but says not
I am working with IBM db2 v 9.7.I tried creating a DDL script using the Control Center , it gives an error saying the db admin server is inactive.However,when i tried starting it using db2admin start ...
0
votes
1answer
130 views
Strange DB2 Scopes
Create two tables with some ids overlapping.
create table outer_table (
id integer,
overlap_in smallint default 0
);
create table inner_table (
inner_id integer
);
Next, populate them ...
3
votes
3answers
96 views
take only one record of select
I need to fetch only first record (because I need last date) of resultset, at the moment I have this resultset from this sql tring:
SELECT BCACC,FLDAT
FROM ANAGEFLF
ORDER BY FLDAT DESC
and I see ...
0
votes
2answers
266 views
mainframe practice on Mac machine
Is there a way to use mainframe on Mac machine. I want to practice mainframes(COBOL, JCL, DB2) on MAC or windows, preferably MAC. Please advise.
Thanks
0
votes
1answer
393 views
Comparing MySQL varchar and IBM DB2 varchar dataype
I've a small doubt about MySQL varchar data type. As we all know.
char is a fixed-length data type. So, the storage size of the char value is equal to the
maximum size for the column. But, in case ...
0
votes
1answer
633 views
Converting IBM DB2 IXF file to CSV or XML
How do I convert an exported IXF file (using db2 export) to a human-readable format, like CSV or XML? I am comfortable with doing it in Python or .NET C#.