How to uninstall oracle components silents using oracle universal installer in oracle client 11.2.0.3.0?

Hi,
I have installed oracle client 11.2.0.3.0 silently using the response file with INSTALL type as runtime. I want to remove  'Oracle sql developer' from the installed products. Using Oracle Universal Installer I am able to remove this component in GUI. Please provide me the silent switch to remove this component. I have tried with DEINSTALL_LIST property , but I am getting an error that 'no products selected for deinstall'. Please suggest on this.

Pl post your OS details
AFAIK, SQL Developer is not included in the Oracle Client install - it is a separate install. You will have to follow the instructions for uninstalling SQL Developer - check the docs for your specific version of SQLD - Oracle SQL Developer
e.g. for 3.1, see Installing Oracle SQL Developer

Similar Messages

  • How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ?

    How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ?
    "Firefox.exe_path" -ms OPTIONS ??
    Thanks.

    '''Is there a way to download FF to a USB from another computer and install it from that USB on my PC? '''
    You basically answered your own question. If you have access to another computer just go download the appropriate language and OS version of Firefox 5.0 from http://www.mozilla.com/en-US/firefox/all.html and put it on you usb drive and then go and install it onto you pc.

  • What software usual is used to create installation package for client appli

    What software usual is used to create installation package for client application?

    >
    I mean the software that installed my application on client's machine. E.g. by click button Next, Next ...>Try clicking some of the 'buttons'(1) on the [webstart API examples|http://pscode.org/jws/api.html] page.
    (1) They are not HTML buttons, but links stylde to look vaguely like buttons. HTML buttons can be used just as easily, see [Launch JNLP App - launch style|http://pscode.org/jws/launch.html] for an overview of different launch styles.

  • How to call a stored procedure using its package name in Oracle

    hi
    we're doing a JDBC scenario where we call a stored procedure(a.prc) using its package name(b)The stored procedure has In /Out/IN-OUT parameter.
    i have got 2 queries:
    1- How to call the stored procedure using it's package.
    2- How to capture the In/Out parameter in the response.

    hi Prateek
    thanks for the reply.
    However when i tried mapping it to Package.procedure, communication channel throws the error saying that Package.proceudre needs to be declared.
    As i said , the procedure has IN-OUT parameter too.In oracle we need to write a block if we want to read the IN-OUT parameter.
    How to get the IN-OUT parameter in XI?

  • How to encrypt excel file data using triple DES algorithm in oracle

    Hi,
    I would like to know the process or script to encrypt/decrypt the excel file data using triple DES algorithm in oracle.

    I'm not quite sure your requirement.... do you mean when uploading files to be stored in the database ?

  • Installing oracle on Linux using the SAP version of oracle software

    Hello All,
    I am trying to install 32bit oracle software on Linux 32 bit os using the SAP version of Oracle Install Software downloaded from marketplace. I have downloaded the required exe and rar files and unpacked them on my PC. The unpacked folder is uploaded in bin mode to the respective server under a common mountpoint. In the folder i have 4 .SAR files with other label files etc.  I want to unarchive these .SAR files to get the runInstaller but running in to issues.
    Here are the steps I tried:
    1. I copied the SAPCAR exe from exe directory and tried to unpack the 4 .SAR files but got permission error. All these 4 .SAR files are owned by ora<sid> user id. I tried to do all these under root user still it fails.
    ora<sid>@xxxyysapdbXX:/sapdata//Oracle32/51031674> SAPCAR -xvf OR110232.SAR
    -bash: ./SAPCAR: cannot execute binary file
    what am i missing?
    Any help is greatly appreciated.

    If you have a 32bit OS then you need to use the 32bit binaries of SAPCAR - yes.
    And:
    Usually those SAR files are unpacked by the installation program sapinst, why do you unpack them manually?
    Markus

  • How to get a newer version of the Universal Installer

    I have a need fot and updated version of the Oracle 9 ODBC driver. The driver, however requires a newer version of the OUI (we have 2.2.0.16.0 and it wants 2.3.0.5.0a). I can't seem to find a seperate download just for the installer. Does anyone know of anyway to just get an update to the installer?

    Hello,
    Here you can download the newer versions of ODBC drivers with or without Oracle Universal Installer:
    http://www.oracle.com/technology/software/products/rdbodbc/index.html
    I wait that this can help you!!
    Best Regards,
    Paola Pullas
    http://www.ecuoug.org

  • How to search tables and views used in the code of oracle fmb 6i from another form???

    Hii guys, this is a very interesting question and i hope that it will have ample amount of answers.
    My requirement is to know the number of tables and views and backend functions/procedures which are used in the code written in the oracle forms 6i,
    all i want is to display whole views, tables or functions/procedures which are written  in the code of a particular fmb, i do have the path of that fmb and i want to read the code and search through it's entire code for the tables/views/backend procedures/functions written in the code. So how to search through the entire code of a particular form (6i) and make it display through another form.
    I am using oracle forms 6i.
    Please help me out....
    With Regards:
    Ankit Chandra

    Here is a modified dealForm.jsp that merges the 2 steps - both symbol submission and Yahoo convert is done by it. Play with it and add your DB code to it:
    <html>
    <head><title>IPIB Database Selection</title></head>
    <body bgcolor="#DFDFFF">
    <H1><CENTER>IPIB Database Selection</CENTER></H1>
    <font size=4>
    <%@ page language="java" %>
    <%@ page import="java.net.*,java.io.*,java.util.*" %>
    <%
    String symbol = request.getParameter("symbol");
    if (symbol != null) {
    String urlString = "http://finance.yahoo.com/download/javasoft.beans?SYMBOLS=" + symbol + "&format=ab";
    try {
    URL url = new URL(urlString);
    URLConnection con = url.openConnection();
    InputStream is = con.getInputStream();
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr);
    String line = br.readLine();
    StringTokenizer tokenizer = new StringTokenizer(line,",");
    String name = tokenizer.nextToken();
    name = name.substring(1, name.length()-2);
    String price = tokenizer.nextToken();
    price = price.substring(1, price.length()-2);
    %>
    <p>
    Original line from yahoo <%= line %>
    </p> <p>
    Name: <%= name %>
    </p> <p>
    Price: <%= price %>
    </p> <p>
    Pub DB processing code from dealLoad.jsp here
    </p>
    <%
    } catch (IOException exception) {
    System.err.println("IOException: " + exception);
    } else { %>
    <form action="dealForm.jsp"method="GET">
    <p>Enter Symbol: <input size="20" name="symbol">
    <inputtype="submit" value="Submit">
    </p></form>
    <% } %>
    </font>
    </body>
    </html>

  • Oracle Application 11i using multi node installation

    Hi every one,
    Can anyone help me to install in multi node.
    /d01 is in dbtier(1st unit) and /u01 is in appstier(2nd unit).
    how to install that kind of split configuration.?
    do i need to stage in appstier? and run rapidwiz?
    how to copy configuration file from dbtier to appstier?
    do i need to enable load balancing?
    i expecting your soonest reply guys..
    Thanks BJCDR

    Check "Oracle Applications Installation Guide: Using Rapid Install" Manual, all the steps to perform a multi-node installation and configure load balancing are mentioned there.

  • How to retrieve the content type used in a document library (C# - Client Model).

    Hello,
    I need to know if it's possible to retrieve the content type used in a document library, so I can know the columns active and used in this document library. I am using the Client Model in C#.
    Thanks

    First, retrieve your document library as a List object. Then, use the
    List.ContentTypes property to iterate through all the content types assigned to the list.
    Blog:
    blog.beckybertram.com |
    RSS | @beckybertram |
    SharePoint 2010: Six-in-One

  • Table/colum used in html pages in oracle apps

    Hello All,
    If we want to find table name against oracle forms in apps . then we can find it from help -> Diagnostics -> examine .But how we will find table name used against HTML Page in oracle apps?
    Thanks..

    Hi,
    It should be in the "About This Page" link -- See these thread for details.
    RECORD HISTORY (or) WHO COLUMNS in R12???
    RECORD HISTORY (or) WHO COLUMNS in R12???
    An alternative would be opening the page in JDeveloper and viewing the source code.
    Thanks,
    Hussein

  • How to set the language of oracle universal installer

    Hi all,
    I have downloaded oracle9i database release 2 Enterprise/standard/personal edition for windows. so I got the them into 3 different folders as said in the oracle site. I have few questions.
    1.i have installed oracle using the universal installer, but my operating system is winxp german version.I want the installer to be in english so that i can easily navigate, how can i set the language. Does the installer automatically detects the OS and chosses the language.
    2. I have 2 sql scripts. One with Schema(tables for database with create statements) and other file with data(insert statements).That is Schema.sql, data.sql. How can i use these scripts for querying using the installed database.
    3. I am totally confused with SID, how to set it and what does it indicate(functionality).
    4. The login for SQL PlUS, i used scott and tiger. Because i think the installer did not installled completely, i could not create my own username/password. What will be the host-string while logging to sqlplus.
    Thanks and Regards
    Babu.

    1.i have installed oracle using the universal installer, but my operating system is winxp german version.I want the installer to be in english so that i can easily navigate, how can i set the language. Does the installer automatically detects the OS and chosses the language.From the control panel, regional setting, make default for English (United States) and English as default language. While installing oracle from OU, choose only english langauge.
    2. I have 2 sql scripts. One with Schema(tables for database with create statements) and other file with data(insert statements).That is Schema.sql, data.sql. How can i use these scripts for querying using the installed database.Once you have installed oracle and create database, make sure the following and then run your scripts.
    1. Check oracle services are started or not from the windows services. If yes, then do step 2, else, start services first and then do step 2.
    2. set oracle_sid=your_database_name
    3. sqlplus /nolog -- when you give this command, if you get reply that connected to idel instance, then, your database is not up, in this case, startup your database after step 4. (startup)
    4. connect / as sysdba
    5. run your script to create schema.
    --once schem created. connec to your newly created schema.
    6. connect username/password --
    7. run the script (insert records)
    3. I am totally confused with SID, how to set it and what does it indicate(functionality).ORACLE_SID is nothing bur your oracle database name. You will be asked to provide the database name while installing and creating oracle database.
    4. The login for SQL PlUS, i used scott and tiger. Because i think the installer did not installled completely, i could not create my own username/password. What will be the host-string while logging to sqlplus.As long as you want to do it on the database server, then, you dont need tnsname. If you want to access database from other machines, then, you need to create a tnsname to connect.
    Jaffar
    OCP DBA

  • How to uninstall Java 2 Runtime v1.3.x silently

    I am trying to uninstall old version v1.3.x of Java 2 Runtime Environment silently (through command-line) using script. but I can't find a way to do so. Is there someone know how to uninstall old version silently?
    That would be a great help if someone can reply back with proper answer. Thanks in advance. Raj

    I'm not sure if this is the correct forum for your question, what OS are you running? Sun's first two Java Desktop System releases have Java 1.4 JREs preinstalled.
    The general case for uninstalling rpms with no dependencies is:
    rpm -e {rpmname}
    So if: rpm -qa | grep j2re shows that j2re-1.3.something is installed, then you can remove this with: rpm -e j2re-1.3.something Make sure you have a suitable replacement.

  • Oracle 9i Installation Using Universal Installer.

    I have installed Oracle 9i using the Universal Installer under W2K and set my passwords for SYS and SYSTEM, i kept them the same.
    But when I go to run the SQL Worksheet it asks for a name and password I type in SYS for the name and the allocated password. I do the same for the SYSTEM name. Under both logins it is unsuccessful. Wheras if I use the name and password given by the documentation it connect. The only problem here is that this given name does not have rights to modify or look at the tables in the databases.
    Can anyone help?

    If I understand the problem, it's a login issue. Oracle 9i, when connecting as the user sys or system, requires the role SYSDBA or SYSOPER. The problem when using the GUI tools is there's no place to enter "AS SYSDBA". You may want to try putting it in the connection (alias) field as "alias AS SYSDBA". Using the command line, it looks like: SQLPLUS "sys/pwd@alias as sysdba".

  • How to uninstall Forms and Reports 6 from XP?

    Dear Experts,
    I have an XP machine.
    On it, is Oracle DB 11.2. As well, there is Oracle Forms and Reports 6i. From the start, programs menu, there are:
    Oracle for Windows NT
    Oracle Forms and Reports 6I
    Oracle Forms and Reports 6I doc
    Oracle OLAP client 2.2
    Oracle Reports 6I
    Oracle Reports 6I Admin
    I notice that it seems to be running as service. I can find the process id / PID with sysinternals. PID is: 1364, services.exe(876). Some of the files/processes are:
    NL80.DLL, SQLNET. Ora805.dll. All under c:\oracle\reports6
    But I can't figure out which service it is, when I look at the windows services. Although the command line is:
    C:\WINDOWS\System32\svchost.exe -k netsvcs
    When I go to uninstall forms and reports using OUI, I see two Oracle homes.
    OraDb11G_home1
    DEFAULT_HOME
    Reports is listed under DEFAULT_HOME. But unlike OraDb11G_home1, in DEFAULT_HOME, there are no check boxes at all to select these products to uninstall.
    1)
    Without uninstalling the database, how can I uninstall forms and reports?
    2)
    How can I tell which service is running forms and reports?
    Thanks a lot!

    You can delete these items directly from Start menu and this is the first step :
    Oracle for Windows NT
    Oracle Forms and Reports 6I
    Oracle Forms and Reports 6I doc
    Oracle OLAP client 2.2
    Oracle Reports 6I
    Oracle Reports 6I Admin
    The second step : Delete the home of developer6i from registry
    And the third : Delete the directory (orant) which the contents of forms and reports 6i are stored in (c:\orant by default)
    When I want to delete forms and reports 6i I follow these steps above.
    hope that help you.
    Any comments from experts are very appreciated :)
    Edited by: Mohamed DEV on 23/04/2013 05:01 ص

Maybe you are looking for

  • Problems connecting new printer to wireless.

    Having problems connecting HPb209a to wireless. Thanks

  • How to extract data for 0FI_GL_50

    hi guys, we need to use datasource 0FI_GL_50, delta is not supported for this datasource, how can we extract data from ecc?

  • Vf01 billing type attched smartform

    Hi Friends, I make one smart form for service invoice. And fuctional person already defined billing types in vf01. so how can i attached my smartform with that perticular billing type. Its functional work or technical? I don't know so please help me

  • Error 1335 - Trying to Install Flash Player 10 ActiveX

    When trying to install Flash Player 10 via the msi I receive the following message:   The cabinet file 'Data1.cab' required for this installation is currupt and cannot be used. There are no previous versions of Flash Player installed.

  • RBDSTATE not working

    Hi to all, I use RBDSTATE program to generate Ale Audit IDocs, but I receive this error: "No parties are interested in the selected data" What can I do? Thanks to all!