Cleaning unsuccessful installation

How i can clean the unsuccessful installation of RDBMS 10.2.0.1?
What is the script and or any notes at Metalink to manually clean it before installing it again?

It is easy to remove it if you are using unix.
stop the processes used by oracle, then remove the
folders used by oracle, such as $ORACLE_HOME.Add to that the /etc/oracle directory, the files /etc/oratab, /etc/oraInst.loc and the inventory directory which is given in /etc/oraInst.loc

Similar Messages

  • Trying to restore a Mountain Lion caldav.sql into a fresh/clean Mavericks installation

    Call me cynical, but upgrades and Migration Assistant were never my thing. I'm starting to experiment with migrating some of my Mountain Lion OS X Servers to Mavericks.
    Under OS X Server 2.2.x (Mountain Lion), I had a script that would individually backup the postgres_server databases, caldav, collab, device_management, etc.
    I'm now working with a clean Mavericks installation and trying to restore the caldav db. Through the help of ~morgen, I've worked out that caldav seems to have its own postgres instance and I can see and view the fresh caldav database there:
    /Applications/Server.app/Contents/ServerRoot/usr/bin/psql -U caldav -h /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9/ caldav
    So, I backed that up before proceeding with:
    /Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dump -U caldav -h /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9/ -c caldav | gzip -c > /Library/Server/Backups/PostgreSQL/caldav.sql.gz
    And then tried to use dropdb to drop it, so I could use createdb to re-create it and then use psql to suck in my Mountain Lion backup. The three intended commands in order would have been:
    /Applications/Server.app/Contents/ServerRoot/usr/bin/dropdb -U caldav -h /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9/ caldav
    /Applications/Server.app/Contents/ServerRoot/usr/bin/createdb -U caldav -h /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9/ caldav
    /Applications/Server.app/Contents/ServerRoot/usr/bin/psql -U caldav -h /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9/ -d caldav < /Library/Server/Backups/PostgreSQL/caldav.sql
    HOWEVER.... the first command failed:
    dropdb: database removal failed: ERROR:  database "caldav" is being accessed by other users
    DETAIL:  There is 1 other session using the database.
    Interestingly, even though neither Calendar nor Contacts server are running, there's quite a bit running under _calendar:
    _calendar         656   0.0  0.1  2471756   4412   ??  Ss    6:53pm   0:00.03 postgres: caldav caldav [local] idle                         
    _calendar         651   0.0  0.0  2471120   2228   ??  Ss    6:53pm   0:00.11 postgres: wal sender process caldav [local] streaming 0/422E020                         
    _calendar         650   0.0  0.0  2460732   2216   ??  S     6:53pm   0:00.07 /Applications/Server.app/Contents/ServerRoot/usr/bin/pg_receivexlog -h /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9 --no-password --directory /Library/Server/Calendar and Contacts/Data/Database.xpg/backup --verbose
    _calendar         649   0.0  0.0  2491744   1496   ??  S     6:53pm   0:00.02 /usr/sbin/distnoted agent
    _calendar         646   0.0  0.0  2465500    652   ??  Ss    6:53pm   0:00.19 postgres: stats collector process                            
    _calendar         645   0.0  0.0  2465500    416   ??  Ss    6:53pm   0:00.02 postgres: archiver process                            
    _calendar         644   0.0  0.0  2470988   2460   ??  Ss    6:53pm   0:00.12 postgres: autovacuum launcher process                            
    _calendar         643   0.0  0.0  2470856    560   ??  Ss    6:53pm   0:00.06 postgres: wal writer process                            
    _calendar         642   0.0  0.0  2470856   1240   ??  Ss    6:53pm   0:00.09 postgres: writer process                            
    _calendar         641   0.0  0.0  2470856   1056   ??  Ss    6:53pm   0:00.01 postgres: checkpointer process                            
    _calendar         639   0.0  0.0  2455256    400   ??  Ss    6:53pm   0:00.01 postgres: logger process                            
    _calendar         638   0.0  0.1  2470856   5272   ??  S     6:53pm   0:00.08 /Applications/Server.app/Contents/ServerRoot/usr/bin/postgres_real -c listen_addresses= -k /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9 -c shared_buffers=105 -c max_connections=70 -c standard_conforming_strings=on -c log_lock_waits=TRUE -c deadlock_timeout=10 -c log_line_prefix=%m [%p]  -c logging_collector=on -c log_truncate_on_rotation=on -c log_directory=/var/log/caldavd/postgresql -c log_filename=postgresql_%w.log -c log_rotation_age=1440
    _calendar         636   0.0  0.0  2492336   2832   ??  S     6:53pm   0:00.04 /System/Library/PrivateFrameworks/TCC.framework/Resources/tccd
    _calendar         634   0.0  0.2  2472760  16104   ??  S     6:53pm   0:02.17 /usr/bin/python /Applications/Server.app/Contents/ServerRoot/usr/bin/xpostgres -c listen_addresses= -k /var/run/caldavd/ccs_postgres_3d403b3009fe0c830944d87bd751fbe9 -c shared_buffers=105 -c max_connections=70 -c standard_conforming_strings=on -c log_lock_waits=TRUE -c deadlock_timeout=10 -c log_line_prefix=%m [%p]  -c logging_collector=on -c log_truncate_on_rotation=on -c log_directory=/var/log/caldavd/postgresql -c log_filename=postgresql_%w.log -c log_rotation_age=1440
    _calendar         630   0.0  0.0  2471388    900   ??  Ss    6:53pm   0:00.20 /sbin/launchd
    So, how can I gently get this mystical one user off of the DB in order to do this? OR, how can I start up calendar in such a way that this mythical user is not connected?
    If I unload this job:
    launchctl load /Applications/Server.app/Contents/ServerRoot/System/Library/LaunchDaemons/org.calendarserver.agent.plist
    I can no longer access the postgres instance in order to drop and create the db.
    Any other ideas / suggestions / solutions?

    If you knew your sql, I don't think it would be insurmountable to pull apart the full dump.
    As to the upgrades in place, here's some of the output in caldav's error log every startup:
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseSchemaStep#warn] Beginning database schema check.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseSchemaStep#warn] Required database key VERSION: 24.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseSchemaStep#warn] Actual database key VERSION: 24.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseSchemaStep#warn] Schema version check complete: no upgrade needed.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseSchemaStep#warn] Database schema check complete.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseAddressBookDataStep#warn] Beginning database addressbook data check.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseAddressBookDataStep#warn] Required database key ADDRESSBOOK-DATAVERSION: 2.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseAddressBookDataStep#warn] Actual database key ADDRESSBOOK-DATAVERSION: 2.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseAddressBookDataStep#warn] Addressbook data version check complete: no upgrade needed.
    2013-12-02 21:29:02+1000 [-] [txdav.common.datastore.upgrade.sql.upgrade.UpgradeDatabaseAddressBookDataStep#warn] Database addressbook data check complete
    To be clear, I don't believe its Server.app. Each of these services stores its schema version IN the database and its checked every startup, and it would appear, that each service knows how to perform that upgrade at each startup.

  • Clean (Custom) Installation of Windows 8.1

    Clean (Custom) Installation of Windows 8.1  
    I have HP Envy laptop which has Windows 8.1 pre-installed.
    Now I'm trying to clean install OS. But how to know the exact Windows 8.1 version.
    I'm trying to boot from pendrive & Its asking what version to install
    Windows 8.1 (Core) / OEM / KMS/OEM-Activated
    Windows 8.1 (Core) N / OEM / KMS/OEM-Activated
    Windows 8.1 (Core) Single Language / OEM / KMS/OEM-Activated
    Windows 8.1 Core Connected (with Bing) / OEM / KMS/OEM-Activated
    Windows 8.1 Pro / OEM / KMS/OEM-Activated
    Windows 8.1 Pro N / OEM / KMS/OEM-Activated
    Windows 8.1 Pro VL / OEM / KMS/OEM-Activated
    Windows 8.1 Pro N VL / OEM / KMS/OEM-Activated
    Windows 8.1 Pro WMC / OEM / KMS/OEM-Activated
    Windows 8.1 Enterprise / OEM / KMS/OEM-Activated
    Windows 8.1 Enterprise N / OEM / KMS/OEM-Activated
    Windows Embedded 8.1 Industry Pro / OEM / KMS/OEM-Activated
    Windows Embedded 8.1 Industry Enterprise / OEM / KMS/OEM-Activated
    ** In system properties it is showing Windows 8.1
    No sub version is shown                                                       

    Download and Belarc Advisor, it will give you all sorts of information about your computer including the OS
    http://www.belarc.com/free_download.html
    Please mark my post as SOLVED if it has resolved your problem. It helps others with similar situations.

  • HP Deskjet Ink Advantage 5525 - Unsuccessful installation for Windows 7 64-bit - Error 5

    Hi,
    during installation of HP drivers and software to Windows 7 64-bit I receive Error -5 - Installation unsuccessful - Unable to install HP monitor... I've download new software from HP webpage, but received same error.
    Could you please guide me trough this problem.
    Regards, Max.

    Hi @MaxN ,
    I see that you are getting a "error 5" when trying to install the printer software. I would like to help you out today.
    I would run the SFC on the computer to repair any damaged or corrupt windows files.
    Scannow to Repair Protected Windows Operating System Files.
    Right click on the installer and "Run as Administrator.
    If the issue persists, create a new Administrator Account and run the install from there. 
    User Accounts in Windows 7.
    If you need further assistance, just let me know.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Retry of unsuccessful installation of Photoshop Elements fails because it cannot find files which it believes to be present in order to remove them first.

    W7 CD of both Photoshop Element and Premiere Elements 12:  Could get the Organizer of Photoshop installed and working but could not install the editor completely; Premiere Elements seemed to install OK but I was at the time only interested in using Photoshop so did not verify this.  Read instructions in Troubleshoot Installation, and for convenience dragged the CD files to the C Drive.  I then re-ran the installation process, which initially tries to uninstall the existing installation but this failed as it stated that some files were in use.  I ended up uninstalling Premiere Elements because of the shared components but this made no difference.  I used Windows Remove Programs tool but it stated that some files were in use so could not be removed.  I used autoruns to search for and prevent from launching at Startup, all Adobe s/w, then searched for and tried to remove all Photoshop files but got the same message.  I have subsequently discovered that I need to remove them in a specific order, next I ran CCleaner to clear the registry.  Still the same problem, so tried the install from a Clean Boot.  Same problem, the wording is currently Error 2343 Specified Path is empty.  I re-installed Premiere Elements which appears again to be OK before try to re-install Photoshop Elements - the same error message appears.  The Start search box finds 3 register entries for Photoshop but no files.  The register entries date are from earlier installation attempts on different dates: cc_20141016_211910.reg     ......_141008.reg   .........._213127   Should these be manually deleted?  Any other suggestions?

    Thank you very much.
    I did uninstall Adobe Air, Adobe Reader XI and another Adobe product, rebooted, and after this the installation was possible with no problems!

  • Trying to reinstall existing CC on a new mac unsuccessfully- installer corrupted?

    i have the apps but no CC for updates- after downloading the installer, i'm getting this error: Adobe Creative Cloud is needed to resolve this problem. However, its missing or damaged. Please download and install a new copy of the Creative Cloud from www.adobe.com/go/adobecreativecloudapp.
    when i do this, its consistenly corrupted and wont install correctly.

    nevermind- contacted chat support and they walked me thru the cleaner tool, and a reinstall. very helpful

  • Adobe Reader 2.0 unsuccessful installation - bug

    Yesterday I discovered weird bug in installation of Adobe Reader for Pocket PC 2.0. Installation failed with message "installation was unsuccessful". After long investigation I found, that file "Adobe Reader User Guide.pdf" exists in "My Documents" folder (it was copied by ActiveSync synchronization). When I removed it, installation was successful. I hope it will help somebody.

    bayan ayakkabı modelleri
    Thanks
    topuklu ayakkabılar bayan botları bayan terlikleri spor ayakkabılar  erkek botları  klima fiyatları  led televizyon fiyatları saç şekillendirici

  • Replacing preinstalled Windows with "normal" and clean Windows installation (T500)

    Hello,
    is there any way, how to replace preinstalled Windows with my super-clean installation of Windows? I'm really not happy with partitioning (honestly, I'm using Linux, so I want just Win partition, Boot partition, Extended partition (with root, home, swap) --- no recovery partition, no foobar partition, which just make no sense for me), given features which I don't need etc. I would rather have clean setup of Windows 7 and have computer installed my way. Also I don't like such toolbar things, and crappy ware of Lenovo already installed.
    I can backup Windows 7 activation and restore it to new clean installation - so I don't need to buy new disc... But - where can I get that clean Windows 7 Ultimate shiny disc? Do anyone know? Is it possible to download it from MS site?

    The preloaded Windows 7 will probably run faster than a retail version due to the EE optimized drivers. Just uninstall Norton, the Office 2010 Starter trial, the additional media software, and you should be good to go.
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • Clean Win7 installation in infinite cycle

    I am attempting to downgrade from Win8 to Win7 Ultimate 64bit.   I have installed a new SSD and disconnected my old Win 8 drive.  The clean installation process started normally but eventually hung on the "Completing Installation".  I
    am running i7 and 6GB of RAM, so I assumed it was hung for good after nearly 2 hours and no apparent progress or DVD spin.  I hard rebooted as a last resort.  Maybe it was premature .. I don't know.  The computer now boots to Win7 with
    empty desktop except for a single model dialog that states something like "Installation is incomplete.  Please click the OK button and the computer will reboot to complete the installation".   The subsequent reboot ends exactly like
    the first.   When I boot from the DVD installation, it loads to a blank desktop (only background) and no ability to do anything.  I must hard reboot at this point too. 
    At this point, I am just looking for a way to fix this or wipe the drive and start anew.   I can't seem to figure out how to do either.   I am not a BIOS and boot disk guy, so if you are kind enough to help, would you please provide detailed
    instructions.  Please don't tell me to boot to DISKPART and expect me to understand :-)).   
    Thank you.

    Hi,
    Can you confirm you have set  boot from DVD as the first priority in BIOS?
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Clean air installation

    Why would I deploy all clean air APs that are single radio g/n only. Am I not losing the advantages of 802.11n by not having bonded channels. And if I am concerned enough about interferers to deploy all clean air APs, should I not have 5 GHz available to mitigate the interference?

    The Mavericks on the Air is probably machine specific since it came pre-installed, so it wouldn't work on your computer. See if your friend will let you access the App Store, where you can sign in using your Apple ID and download the installer. You can use this free program to copy the installer and update your computer.
    Bootable USB Flash Drive – Diskmaker X

  • Windows 10 clean ISO installation rather than upgrade

    Good moring I not upgraded to Windows10 yet. I read somewhere that Microsoft allow a fresh installation using ISO rather than using Microsoft Update.Since I already upgraded from 8 to 8.1, I think that performing a clean, fresh Windows 10 installation is the best option. Does someone have an idea of the steps reqired to download the ISO and installal a clean Microsoft10? And, more important, what's about Windows10 activation? It is automatic by reading my Bios Product KEY or what? Thank you  

    here is the link that i will share with you  and i use this and i did it from installing directly on the pc which i did not put on flash drive and disc and i did not have any problems on my 3 units except for my old laptop but it works all fine just the nvida error on the .dll which is 2 of it but my graphic and desktop looks fine and no viewing problems  other than that i can do what ever i need to do and just like a normal operation btw that old laptop has the upgrade of w7 from vista  here is the link https://www.microsoft.com/en-us/software-download/windows10  good luck  

  • Clean {re} installation when upgrading to C5.5?

    I am having some days ago problems with IDCS5 (usually preferences settings are lost or gets frozen)
    It is recommended to make a clean installation with Adobe Utility or simply upgrading should be just enough?

    It is just a coincidence. Upgrading arrived yesterday...
    I understand for the moment the cleanest steps should be:
    1 Uninstall
    2) Run the  Adobe Creative Suite Cleaner Tool
    3) Reinstall the actual Suite
    3) Install the upgraded shipped version of the Creative Suite
    Thanks you!.

  • Cannot copy/paste files from clone of Snow Leopard installation into clean Lion installation.

    I cloned my hard drive onto an external USB drive using disk utility and then erased the internal drive to install Lion onto. 70% of anything I copied from the clone of my 10.6 installation into its new home in Lion just disappeared as soon as I copied it. For example, I copied my old documents folder into its corresponding place in Lion, and the size reduced from ~3.5GB to ~1GB. Does anyone know why this is?
    For obvious reasons, I restored my clone to my internal hard drive using disk utility so I could use 10.6 again, so I can't reasonably do any real troubleshooting until I find time to commit to experimentation. Is this a known bug that will be worked out in 10.7.1?

    2009 with mountain lion isntalled
    The original disc that came with the Mac won't work with Mountain Lion v10.8 installed. Disk repairs are done via the internet using OS X Recovery.
    Since the Mac won't boot, restart while holding down the Command + R keys so you can access the built in utilities to repair the startup disk >  OS X Recovery

  • Firefox 5, downloaded to my Mac Powerbook G4 with a clean recent installation of OS 10.7, won't install. I am now getting the message that the application Firefox cannot be launched.

    error message: 10661

    benfrommaidenhead, were you able to solve your iTunes installation failed issue?
    I have the same problem; installed iTunes from dmg, deleted iTunes.app, attempted to reinstall. Get the same error every time.
    An interesting observation from your log file, is that both my installation and yours appear to be to an SSD?
    The three other updates in my house were to macbooks using traditional HDDs, and they had no issues.
    My problems now appear to have continued with the Mountain Lion Update v10.8.2 Combo Update...Update Failed??
    I restored my MacBook to pre 10.7, but still get the "Installation Failed"
    I am now in the process of downloading iTunes 10.6.3 and will attempt to instal it.
    Update: 10.6.3. reinstalled with no problems.....
    Message was edited by: gregfromsydenham

  • How many F20-136 backup disks i need for clean OS installation?

    Hi,
    I wish to clean off my laptop and start again due to a various amount of unwanted programs I've installed.
    I've found a Product Recovery disk (one) does anyone know if there is supposed to be any others and if so what they are called?
    Hopefully its just the one, I seem to remember another disk of somekind but cannot find it.
    Thanks
    Mike

    If you want to clean off your notebook install OS using delivered recovery DVD. On this way your Qosmio will have factory settings again. Before you do this install Qosmioplayer at first using delivered Qosmioplayer recovery CD.

Maybe you are looking for