473,466 Members | 1,313 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Problems with performing db2updv8 on database in db2

Hi

I am trying to create a federated database using information
integrator. When I tried creating wrapper on by right clicking on
"Federated database objects" which appears under every database, I get
the following error:

[IBM][CLI Driver][DB2/NT] SQL0444N Routine
"SYSPROC.GET_WRAP_CFG_C"
(specific name "GET_WRAP_CFG_C") is implemented with code in
library or path
"\db2dsproc", function "getWrapperXMLFiles" which cannot be
accessed. Reason
code: "4". SQLSTATE=42724

The federated database has not been updated to the current
version.
Use the db2updv8 utility to update this database.

I performed db2updv8 command on the database, restarted the db2admin
and also did db2start but I still keep getting the same error.

Any suggestions as to what I may be doing wrong?

I am using the following on Windows XP machine.
================================================== ==========
About DB2 Administration Tools Environment
================================================== ==========
DB2 administration tools level:
Product identifier SQL08020
Level identifier 03010106
Level DB2 v8.1.7.445
Build level s040812
PTF WR21342
================================================== ==========
Java development kit (JDK):
Level IBM Corporation 1.4.1
================================================== ==========

Thanks
Mahesh

Apr 19 '06 #1
10 1952
Mahesh S wrote:
Hi

I am trying to create a federated database using information
integrator. When I tried creating wrapper on by right clicking on
"Federated database objects" which appears under every database, I get
the following error:

[IBM][CLI Driver][DB2/NT] SQL0444N Routine
"SYSPROC.GET_WRAP_CFG_C"
(specific name "GET_WRAP_CFG_C") is implemented with code in
library or path
"\db2dsproc", function "getWrapperXMLFiles" which cannot be
accessed. Reason
code: "4". SQLSTATE=42724


I've seen this error message before and it occurred when someone tried to
use federated features on a DB2 Personal Edition - where it is not
supported. Which DB2 edition are you running? (db2licm -l will tell you
that)

--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Apr 19 '06 #2
Hi Knut

Thanks for the information. Yes, I am using DB2 PE. Guess I will have
to get some other version. Any suggestions? Could you please suggest
the version that I need to use to get the federated features definitely
working?

Thanks a lot

Mahesh

Apr 20 '06 #3
In article <11**********************@v46g2000cwv.googlegroups .com>,
ma********@gmail.com says...
Hi Knut

Thanks for the information. Yes, I am using DB2 PE. Guess I will have
to get some other version. Any suggestions? Could you please suggest
the version that I need to use to get the federated features definitely
working?


Db2 Express-C is the free DB2 version with federated db support.
You can download it from
http://www-306.ibm.com/software/data.../download.html
Apr 20 '06 #4
hey

thanks..

i assume that i will still need to download and install information
integrator seperately.. or is it included in this version of db2?

thanks
mahes

Apr 20 '06 #5
In article <11**********************@e56g2000cwe.googlegroups .com>,
ma********@gmail.com says...
hey

thanks..

i assume that i will still need to download and install information
integrator seperately.. or is it included in this version of db2?

thanks
mahes


For defining wrappers to DB2 UDB LUW (Linux, Unix, Windows) you don't
need DB2 II. I'm not sure about DB2 z/OS.
Apr 20 '06 #6
Mahesh S wrote:
hey

thanks..

i assume that i will still need to download and install information
integrator seperately.. or is it included in this version of db2?


If you want to access DB2 or Informix databases only, then you don't need
II.

--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Apr 20 '06 #7
OK.. At this point, I am looking at accessing only DB2 databases. So,
thats good news.

Any tutorials available for bringing together multiple DB2 databases
with the same structure (but present in multiple locations) under one
roof?

I apologise for troubling you.

Cheers
Mahesh

Apr 20 '06 #8
Hi Gert

I do have one more query. Hope I am not troubling you too much.

I have successfully created wrappers for two db2 databases located in
different locations. The thing is, they have the exact same structure
but storing different data. I have a table named Patient which stores
patient details pertaining to that location. What I would like to do
is have a single table that would combine records present in the two
db2 tables located in different locations. I am not talking of a join
here but more of sticking records from one table at the end of records
from another table. How do I go about doing that?

Thank you for your time.

Regards
Mahesh

Apr 20 '06 #9
Mahesh S wrote:
Hi Gert

I do have one more query. Hope I am not troubling you too much.

I have successfully created wrappers for two db2 databases located in
different locations. The thing is, they have the exact same structure
but storing different data. I have a table named Patient which stores
patient details pertaining to that location. What I would like to do
is have a single table that would combine records present in the two
db2 tables located in different locations. I am not talking of a join
here but more of sticking records from one table at the end of records
from another table. How do I go about doing that?


You have to create two nicknames. One points to the table in database A and
the other to the table in database B. Then you create a view over both
nicknames and UNION the results:

CREATE NICKNAME n1 FOR server1.schema.table
CREATE NICKNAME n2 FOR server2.schema.table
CREATE VIEW v AS
SELECT * FROM n1
UNION ALL
SELECT * FROM n2

If you still want to distinguish where the data came from, just put this
into the view definition (this is just plain and simple SQL):

CREATE VIEW v AS
SELECT 'n1' AS source, n1.* FROM n1
UNION ALL
SELECT 'n2' AS source, n2.* FROM n2

--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Apr 20 '06 #10
thats great man.. it worked.. thanks a lot..

Apr 20 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: MBS | last post by:
Yeah, read the previous posts...I did that. None answer my question. I just installed PHP 5.0.4, Apache 2.0.54, and MySQL 4.1.13 a few days ago on WinXP SP2. My goal is to learn to use these...
1
by: uthuras | last post by:
I'm having strange problem after upgrading my database using db2updv8 utility. The database reside on AIX 5.2 box. I'm using DB2 V8.1 FP 4a. My developer use DataStage 7.0 to access the database...
6
by: Mark A | last post by:
On the forum at ibm.software.db2.udb it was mentioned that one should run db2updv8 after installing fixpack 9 (or 9a). But there is no mention of db2updv8 in FP9a installation readme file. Anyone...
6
by: Ababo | last post by:
Hi everyone. I've only really just started using php and I've been trying to use it in conjunction with mysql. I keep getting an error though when trying to access the result set returned by...
1
by: Giovanni | last post by:
Dear Friends, I am having problems with the following: I have added a Login control to a web page. In the Login control's Authenticate event, I am performing additional validation against our...
0
by: andrejf | last post by:
After upgrading from v7 fp11 to v8 fp12 and migrating the databasase, db2updv8 fails. The routine IS visible in the catalog. On other databases i can rerun db2updv8 when they have the routine...
1
by: Asphalt Blazer | last post by:
I am running db2updv8 -d databasename and i get this error exec(): 0509-036 Cannot load program db2updv8 because of the following errors: 0509-022 Cannot load module...
3
by: Carl | last post by:
I'm a relative newbie to DB2. I need to move a database from a windows server to a linux server. I have already identified and resolved an issue with schema names, but I now have a vexing...
2
by: aj | last post by:
DB2 LUW 8.2 FP15 When going from FP14 to FP15, is it necessary to issue the db2updv8 command for each database? Is this only intended to be used when moving from 8.1 to 8.2 (ie FP7), or is it...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.