Uninstall Oracle TDP Linux

GregE

ADSM.ORG Senior Member
Joined
May 12, 2006
Messages
2,089
Reaction score
31
Points
0
Website
Visit site
I need to uninstall v5.5 TDP Oracle from Linux (RedHat). One question. How?

<edit>
Got it:
To get package name:
rpm -qa | grep -i ora

To remove:
rpm -e <pkgname>
 
Last edited:
Yes, you should remove the package in given order

for example:
ldeberdb21:/tmp # rpm -qa |grep TDP
TDP-Oracle-5.5.2-0
TDP-Oracle.Utility-5.5.2-0
ldeberdb21:/tmp # rpm -ev TDP-Oracle.Utility-5.5.2-0 TDP-Oracle-5.5.2-0
 
Back
Top