472,791 Members | 1,428 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,791 software developers and data experts.

DB2 Admin client failing

I'm trying this again, after no response the first time. Any help will
be greatly; appreciated.

The db2 windows administrative client v8.1 fails after installation
(without error, on XP Pro)) whenever I try to start it in either Set-up
Tools/Configuration Assistant or Set-up Tools/First Steps with the
following message:

'The procedure entry point
?create@OSSHIPCQueue@@QAEIBPVOSSIPCQueResID@@I@Z could not be located in
the dynamic link library db2osse.dll.'

What did I miss?

Google has only three references to db2osse, none of which appear applicable

Nov 12 '05 #1
5 4193
"Robert Stearns" <rs**********@charter.net> wrote in message
news:10*************@corp.supernews.com...
I'm trying this again, after no response the first time. Any help will
be greatly; appreciated.

The db2 windows administrative client v8.1 fails after installation
(without error, on XP Pro)) whenever I try to start it in either Set-up
Tools/Configuration Assistant or Set-up Tools/First Steps with the
following message:

'The procedure entry point
?create@OSSHIPCQueue@@QAEIBPVOSSIPCQueResID@@I@Z could not be located in
the dynamic link library db2osse.dll.'

What did I miss?

Google has only three references to db2osse, none of which appear applicable

Why don't you uninstall it and then install the latest version, which is
Fixpack 6.
Nov 12 '05 #2
Mark A wrote:
"Robert Stearns" <rs**********@charter.net> wrote in message
news:10*************@corp.supernews.com...
I'm trying this again, after no response the first time. Any help will
be greatly; appreciated.

The db2 windows administrative client v8.1 fails after installation
(without error, on XP Pro)) whenever I try to start it in either Set-up
Tools/Configuration Assistant or Set-up Tools/First Steps with the
following message:

'The procedure entry point
?create@OSSHIPCQueue@@QAEIBPVOSSIPCQueResID@@I @Z could not be located in
the dynamic link library db2osse.dll.'

What did I miss?

Google has only three references to db2osse, none of which appear


applicable

Why don't you uninstall it and then install the latest version, which is
Fixpack 6.

Thank you. That did the trick, but it dropped all the connections I'd
made with quest, which had to be restored.

What is the trick to setting username/password in the select database
dialogue in Command center interactive rather than having to type them
in on a connect statement? Control Center does prompt for them. Is there
a better source of documentation/help than "help" which is installed
with the product?

Another question: Is there a simple way to create a table like or
similar to an existing table? The predefined columns are all good and
well if you are doing traditional applications, but (and I'm sure you've
never heard this before :-) my application is non-traditional. Of course
there are some traditional components, but they're secondary.

Nov 12 '05 #3
> Thank you. That did the trick, but it dropped all the connections I'd
made with quest, which had to be restored.

What is the trick to setting username/password in the select database
dialogue in Command center interactive rather than having to type them
in on a connect statement? Control Center does prompt for them. Is there
a better source of documentation/help than "help" which is installed
with the product?

Another question: Is there a simple way to create a table like or
similar to an existing table? The predefined columns are all good and
well if you are doing traditional applications, but (and I'm sure you've
never heard this before :-) my application is non-traditional. Of course
there are some traditional components, but they're secondary.

Not sure about your password problem. But I think that if you grant the
authority needed in DB2 to your current Windows userid, then you may be able
to avoid keying it in when you connect.

There is a CLI command to create a table like another table, but you cannot
change any of the columns definitions:
CREATE TABLE table_name_2 LIKE table_name_1
See the SQL Reference manual.

Many years ago in the DB2 GUI, you could do a create table "like" another
(without actually creating the table) and then modify the columns you want
different in the GUI, and then finish the table create. Unfortunately that
feature (and many other GUI features) were dropped (I believe starting in
release 5), because they were written with native calls to DB2, and the DB2
call interfaces changed, so they dropped the old GUI completely.

You might want to try the db2look command that will produce the DDL for an
existing table or other object, make the changes you want and recreate
another table using the modified DDL. Unfortunately, this is not using the
GUI, just a DB2 command. See the Command Reference manual for details.
Nov 12 '05 #4
Mark A wrote:
Thank you. That did the trick, but it dropped all the connections I'd
made with quest, which had to be restored.

What is the trick to setting username/password in the select database
dialogue in Command center interactive rather than having to type them
in on a connect statement? Control Center does prompt for them. Is there
a better source of documentation/help than "help" which is installed
with the product?

Another question: Is there a simple way to create a table like or
similar to an existing table? The predefined columns are all good and
well if you are doing traditional applications, but (and I'm sure you've
never heard this before :-) my application is non-traditional. Of course
there are some traditional components, but they're secondary.


Not sure about your password problem. But I think that if you grant the
authority needed in DB2 to your current Windows userid, then you may be able
to avoid keying it in when you connect.

There is a CLI command to create a table like another table, but you cannot
change any of the columns definitions:
CREATE TABLE table_name_2 LIKE table_name_1
See the SQL Reference manual.

Many years ago in the DB2 GUI, you could do a create table "like" another
(without actually creating the table) and then modify the columns you want
different in the GUI, and then finish the table create. Unfortunately that
feature (and many other GUI features) were dropped (I believe starting in
release 5), because they were written with native calls to DB2, and the DB2
call interfaces changed, so they dropped the old GUI completely.

You might want to try the db2look command that will produce the DDL for an
existing table or other object, make the changes you want and recreate
another table using the modified DDL. Unfortunately, this is not using the
GUI, just a DB2 command. See the Command Reference manual for details.

Thanks for the quick reply. I thought that might be the password
problem. I'll try to create a windows user id like the db2 one on the
server and see if that works. It does seem a little odd that it works
properly in one function but not in the other.

I thought that might be the case with tables; it's not impossible, quest
can do it. How powerful is the GUI alter processor? Could you use it
after generating the base table, to make all your changes, or are you
limited to the SQL alter capability, even on an empty table?

Nov 12 '05 #5

"Robert Stearns" <rs**********@charter.net> wrote in message
news:10*************@corp.supernews.com...
Mark A wrote:
Thank you. That did the trick, but it dropped all the connections I'd
made with quest, which had to be restored.

What is the trick to setting username/password in the select database
dialogue in Command center interactive rather than having to type them
in on a connect statement? Control Center does prompt for them. Is there
a better source of documentation/help than "help" which is installed
with the product?

Another question: Is there a simple way to create a table like or
similar to an existing table? The predefined columns are all good and
well if you are doing traditional applications, but (and I'm sure you've
never heard this before :-) my application is non-traditional. Of course
there are some traditional components, but they're secondary.


Not sure about your password problem. But I think that if you grant the
authority needed in DB2 to your current Windows userid, then you may be able to avoid keying it in when you connect.

There is a CLI command to create a table like another table, but you cannot change any of the columns definitions:
CREATE TABLE table_name_2 LIKE table_name_1
See the SQL Reference manual.

Many years ago in the DB2 GUI, you could do a create table "like" another (without actually creating the table) and then modify the columns you want different in the GUI, and then finish the table create. Unfortunately that feature (and many other GUI features) were dropped (I believe starting in release 5), because they were written with native calls to DB2, and the DB2 call interfaces changed, so they dropped the old GUI completely.

You might want to try the db2look command that will produce the DDL for an existing table or other object, make the changes you want and recreate
another table using the modified DDL. Unfortunately, this is not using the GUI, just a DB2 command. See the Command Reference manual for details.

Thanks for the quick reply. I thought that might be the password
problem. I'll try to create a windows user id like the db2 one on the
server and see if that works. It does seem a little odd that it works
properly in one function but not in the other.

I thought that might be the case with tables; it's not impossible, quest
can do it. How powerful is the GUI alter processor? Could you use it
after generating the base table, to make all your changes, or are you
limited to the SQL alter capability, even on an empty table?

The DB2 Control Center GUI Alter is limited to what SQL can do. In DB2 LUW
the only change to columns you can make via SQL is to alter the length of a
varchar, even if there is no data in the table. This may change in version
8.2 (Stinger), but I don't recall the details.

Be forewarned that Quest very recently lost a major copyright infringement
lawsuit to CA (via their purchase of Platinum) and the Quest product for DB2
can no longer be purchased and licenses will not be renewed.
Nov 12 '05 #6

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

Similar topics

5
by: Neil Truby | last post by:
Hi I'm getting a bit confused in the IBM download sites ... I've downloaded DB2 UDB v8.1 ESE for Linux and installed it without incident (except: on SuSE 9 I couldn;t use db2setup due to some...
6
by: Chuck | last post by:
What's the difference between using "catalog node" and catalog admin node"? -- Chuck Remove "_nospam" to reply by email
1
by: Robert Stearns | last post by:
Fails after installation (without error, on XP Pro)) whenever I try to start it in either Set-up Tools/Configuration Assistant or Set-up Tools/First Steps with the following message. 'The...
2
by: lauren quantrell | last post by:
Ok, so maybe this is way off the wall...and I realize this is more of a MS Windows question than an Access question, but here goes... Is there a way to grant an Access application itself admin...
2
by: tooper | last post by:
Hello, I'm failing to register a python based COM component without having admin rights... Using the usual hello world COM server that exist in many books/tutorial, and works perfecty when...
2
by: aj | last post by:
Can I install the v8.2 FP4 (aka v8.1 FP11) LUW Admin client on a Wix XP box that *also* has the v8.1 FP5 Admin client installed? Will both admin clients coexist on the same PC at the same time?...
1
by: Sue | last post by:
Hi, I have the following version of DB2 installed on a server: FP9a_WR21350_WSE.exe I have 2 client computers with the DB2 Admin version FP9a_WR21350_ADMCL.exe I need to install the DB2...
7
by: buzzluck68 | last post by:
Hello, I have an in house application that we developed, but everyone who needs to use the program are not allowed to be local admins on their PCs. I was wondering if there was a way to code...
1
by: beena | last post by:
Hi All, I inherited an AIX box (5300-06) with Client install... (I think it's only client). How do I check the type of Client (Admin vs Runtime vs Application development ) on AIX ? I have to...
6
by: DevX | last post by:
Hello, I have a big intranet that I run with IIS 6.0. I need to log the client's machine names, and I found on the web istruction on how to use REMOTE_HOST server variable while enabling...
0
by: Rina0 | last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.