Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to Uninstall apps11i

RE: How to Uninstall apps11i

From: Naveen Nahata <naveen_nahata_at_mindtree.com>
Date: Wed, 04 Jun 2003 03:24:39 -0800
Message-ID: <F001.005A9B01.20030604032439@fatcity.com>


Stop all oracle services.

Remove the whole directory structure under APPL_TOP. remove "admin" and "java" directories and also ORACLE_HOME.

Go to Program Files and remove folder Oracle if it exists.

Open the registry using regedit and remove the following

HKEY_LOCAL_MACHINE -> Software - Oracle (Delete full oracle tree) HKEY_LOCAL_MACHINE -> System -> CurrentControlset -> Services (delete all services starting with Oracle or Ora(just check once again to be sure they are related to Oracle))
HKEY_LOCAL_MACHINE -> System -> ControlSet001 -> Services (delete all services starting with Oracle or Ora(just check once again to be sure they are related to Oracle))
HKEY_LOCAL_MACHINE -> System -> ControlSet002 -> Services (delete all services starting with Oracle or Ora(just check once again to be sure they are related to Oracle))

Go to My Computer -> Properties -> Advanced -> Environment Vairables and remove entries related to oracle e.g. APPL_CONFIG, APPL_TOP, LOCAL, ORACLE_SID, NLS_LANGUAGE, NLS_DATE_FORMAT etc. From PATH and CLASSPATH remove the value which are pointing to non-existing directories (since you have already deleted the oracle directories)

Regards
Naveen

> -----Original Message-----
> From: Senthil Kumar D [mailto:senthilkumard_at_summitworks.com]
> Sent: Wednesday, June 04, 2003 3:47 PM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: How to Uninstall apps11i
>
>
> Hi stephen,
>
> Thanks.
>
> I'm using Win2K. I want to remove all the oracle products,
> including my
> apps.
>
> I need to prepare a installation doc with the snapshots. So I need to
> reinstall all the oracle products.
>
> TIA,
> Senthil.
>
> -----Original Message-----
> Stephen
> Sent: Tuesday, June 03, 2003 11:10 PM
> To: Multiple recipients of list ORACLE-L
>
>
> Senthil:
>
> When you say you want to uninstall, do you want to
> completely remove the
> software from the machine?
>
> What is the OS you have the software configured upon? Are
> you upgrading to
> another release of 11i?
>
> Please be a bit more specific.
>
> Thank You
>
> Stephen P. Karniotis
> Product Architect
> Compuware Corporation
> Direct: (313) 227-4350
> Mobile: (248) 408-2918
> Email: Stephen.Karniotis_at_Compuware.com
> Web: www.compuware.com
>
> -----Original Message-----
> Sent: Tuesday, June 03, 2003 9:02 AM
> To: Multiple recipients of list ORACLE-L
> Subject: How to Uninstall apps11i
>
> Hi Group,
>
> How do I uninstall apps 11i.
>
> any specific procedures are there to uninstall???
>
> thanks
> Senthil.
>
> -----Original Message-----
> Gogala
> Sent: Tuesday, June 03, 2003 5:10 PM
> To: Multiple recipients of list ORACLE-L
>
>
> Well, I was talking about cursors, sort areas and hash areas.
> I probably
> did confuse "GA stuff".
> On 2003.06.02 22:27 Tim Gorman wrote:
> > Almost. It is the UGA areas (not the PGA) for Shared Server (a.k.a.
> > multi-threaded server) that are re-located to the Large Pool, if it
> exists.
> > Otherwise, they reside in the Shared Pool and all hell breaks loose,
> > performance wise...
> >
> > Also, if DBWR_IO_SLAVES > 0, then those IPC queues will
> reside in the
> Large
> > Pool, if it is configured. Otherwise, these reside in the
> Shared Pool,
> and
> > if you think having UGAs from Shared Server in the Shared
> Pool play hell
> > with performance, then wait until you are pushing all of
> your I/O to the
> > datafiles through the Shared Pool... :-)
> >
> >
> >
> > on 6/2/03 2:24 PM, Gogala, Mladen at MGogala_at_oxhp.com wrote:
> >
> > > Nope, it's not accurate. PGA areas for shared server
> sessions are also
> > > allocated from the large pool.
> > >
> > > Mladen Gogala
> > > Oracle DBA
> > > Phone:(203) 459-6855
> > > Email:mgogala_at_oxhp.com
> > >
> > >
> > > -----Original Message-----
> > > Sent: Monday, June 02, 2003 4:35 PM
> > > To: Multiple recipients of list ORACLE-L
> > >
> > >
> > > for some reason we have 100MB large pool. I dont think we
> need it at
> all. I
> > > read that its only used by RMAN or Parallel server. Is
> that accurate?
> > >>
> > >> From: DENNIS WILLIAMS <DWILLIAMS_at_LIFETOUCH.COM>
> > >> Date: 2003/06/02 Mon PM 03:39:42 EDT
> > >> To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
> > >> Subject: RE: question about large pool
> > >>
> > >> Use the large pool to store what? I can think of 3 aspects of a
> > > transaction:
> > >> - Rollback (you've probably read about SET TRANSACTION)
> > >> - SQL statements, execution plans (more an issue with
> bind variables)
> > >> - Data blocks
> > >> It sounds like you might be thinking of data blocks. You
> didn't mention
> > > your
> > >> Oracle version, but from 8i on you can define 3 buffer pools. The
> normal
> > > one
> > >> is DEFAULT. You can also define a KEEP and RECYCLE pool.
> Someone on
> this
> > >> list (sorry I can't recall who) pointed out that there
> isn't anything
> > > magic
> > >> about those labels. If your transaction uses different
> tables from the
> > > other
> > >> transactions, you could create what is needed for those
> tables in one
> of
> > >> those pools, assign the tables to that pool, and this
> would minimize
> the
> > >> interference. If all the transactions hit pretty much
> the same tables,
> > > then
> > >> Oracle is probably reusing the blocks anyway. Hope this
> responds to
> your
> > >> question.
> > >>
> > >> Dennis Williams
> > >> DBA, 80%OCP, 100% DBA
> > >> Lifetouch, Inc.
> > >> dwilliams_at_lifetouch.com
> > >>
> > >>
> > >> -----Original Message-----
> > >> Sent: Monday, June 02, 2003 1:40 PM
> > >> To: Multiple recipients of list ORACLE-L
> > >>
> > >>
> > >> I think I read this somewhere, but I cant find it. Is it
> possible to
> use
> > > the
> > >> large pool for a specific transaction? We run alot of
> large batch DML
> > >> statements over night. We have one that involves an 8GB
> table. The
> blocks
> > >> from this table are being knocked out of the buffer
> cache by shorter
> and
> > >> quicker batches.
> > >>
> > >> Id like to find to store this transaction in memory
> without having to
> > > worry
> > >> about them getting knocked out of memory.
> > >> Cache wont do it. It will stick get pushed out.
> > >>
> > >> --
> > >> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > >> --
> > >> Author: <rgaffuri_at_cox.net
> > >> INET: rgaffuri_at_cox.net
> > >>
> > >> Fat City Network Services -- 858-538-5051
> http://www.fatcity.com
> > >> San Diego, California -- Mailing list and web
> hosting services
> > >>
> ---------------------------------------------------------------------
> > >> To REMOVE yourself from this mailing list, send an E-Mail message
> > >> to: ListGuru_at_fatcity.com (note EXACT spelling of
> 'ListGuru') and in
> > >> the message BODY, include a line containing: UNSUB ORACLE-L
> > >> (or the name of mailing list you want to be removed
> from). You may
> > >> also send the HELP command for other information (like
> subscribing).
> > >> --
> > >> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > >> --
> > >> Author: DENNIS WILLIAMS
> > >> INET: DWILLIAMS_at_LIFETOUCH.COM
> > >>
> > >> Fat City Network Services -- 858-538-5051
> http://www.fatcity.com
> > >> San Diego, California -- Mailing list and web
> hosting services
> > >>
> ---------------------------------------------------------------------
> > >> To REMOVE yourself from this mailing list, send an E-Mail message
> > >> to: ListGuru_at_fatcity.com (note EXACT spelling of
> 'ListGuru') and in
> > >> the message BODY, include a line containing: UNSUB ORACLE-L
> > >> (or the name of mailing list you want to be removed
> from). You may
> > >> also send the HELP command for other information (like
> subscribing).
> > >>
> > >>
> >
> > --
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > --
> > Author: Tim Gorman
> > INET: tim_at_sagelogix.com
> >
> > Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> > San Diego, California -- Mailing list and web
> hosting services
> >
> ---------------------------------------------------------------------
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from). You may
> > also send the HELP command for other information (like subscribing).
> >
>
> --
> Mladen Gogala
> Oracle DBA
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Mladen Gogala
> INET: mgogala_at_adelphia.net
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Senthil Kumar D
> INET: senthilkumard_at_summitworks.com
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
>
>
> The contents of this e-mail are intended for the named
> addressee only. It
> contains information that may be confidential. Unless you are
> the named
> addressee or an authorized designee, you may not copy or use
> it, or disclose
> it to anyone else. If you received it in error please notify
> us immediately
> and then destroy it.
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Karniotis, Stephen
> INET: Stephen_Karniotis_at_compuware.com
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Senthil Kumar D
> INET: senthilkumard_at_summitworks.com
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
>

DISCLAIMER:
This message (including attachment if any) is confidential and may be privileged. Before opening attachments please check them for viruses and defects. MindTree Consulting Private Limited (MindTree) will not be responsible for any viruses or defects or any forwarded attachments emanating either from within MindTree or outside. If you have received this message by mistake please notify the sender by return e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change and MindTree shall not be liable for any improper, untimely or incomplete transmission.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Naveen Nahata
  INET: naveen_nahata_at_mindtree.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Wed Jun 04 2003 - 06:24:39 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US