Oracle 9i Uninstall query
Hi,
We are looking to upgrade our Oracle client from 9i to 10g.
The chap who re-packaged 9i decided for some reason to add a system search, this would terminate the install/uninstall if TNSNames.ora file was found anywhere on the system, which is obviously now come back to haunt me beacause I want to remove the product
I'm trying to think of the best way to get around this problem
Do I need to attempt an upgrade of the existing install? Or use some other method?
I use GPO for deployment.
Any guidance for this would be appreciated
Many Thanks
Jimmy
We are looking to upgrade our Oracle client from 9i to 10g.
The chap who re-packaged 9i decided for some reason to add a system search, this would terminate the install/uninstall if TNSNames.ora file was found anywhere on the system, which is obviously now come back to haunt me beacause I want to remove the product
I'm trying to think of the best way to get around this problem
Do I need to attempt an upgrade of the existing install? Or use some other method?
I use GPO for deployment.
Any guidance for this would be appreciated
Many Thanks
Jimmy
0 Comments
[ + ] Show comments
Answers (8)
Please log in to answer
Posted by:
anonymous_9363
16 years ago
I'm thinking that that's represents as powerful an argument against repackaging the Oracle client as I've seen. If the Oracle Installer had been used, this upgrade would be a snap. That doesn't help you now, of course.
If this were me, I'd be building a response file using the Oracle Installer, creating a wrapper for that and adding a call to that wrapper to uninstall the present package using the uninstall string from the registry.
If this were me, I'd be building a response file using the Oracle Installer, creating a wrapper for that and adding a call to that wrapper to uninstall the present package using the uninstall string from the registry.
Posted by:
jimmyx
16 years ago
Posted by:
jimmyx
16 years ago
Posted by:
anonymous_9363
16 years ago
Admittedly, I jumped the gun a bit there. Sorry about that.
Whether or not AppSearch affects an uninstall depends entirely on what the package does with the property populated by it. I'm willing to bet it does something like this (assuming the property's name is 'TNSNAMESFOUND')
Whether or not AppSearch affects an uninstall depends entirely on what the package does with the property populated by it. I'm willing to bet it does something like this (assuming the property's name is 'TNSNAMESFOUND')
If NOT Installed AND TNSNAMESFOUND
Cancel Installation
If so, it won't affect uninstalls since 'Installed' will be True.
Posted by:
jimmyx
16 years ago
Unfortuantley there is no install condition on the if statment so i've got:
if TNSNAMESSEARCH <> 0 then
Cancel Installation
So it happens on install and uninstall :-(
Maybe the best way forward is to have a startup script that checks for TNSnames.ora then removes it from the system before the oracle policy kicks in?
if TNSNAMESSEARCH <> 0 then
Cancel Installation
So it happens on install and uninstall :-(
Maybe the best way forward is to have a startup script that checks for TNSnames.ora then removes it from the system before the oracle policy kicks in?
Posted by:
anonymous_9363
16 years ago
Posted by:
jimmyx
16 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.