Oracle 11g client / oracle 10g express edition in one computer

Hi All,
I already have Oracle 11g Client installed in my computer. I wanted to Install Oracle 10g Express Edition in the same computer. So that I shall work with that even when I am not in the network. My Question is : Will installing both of 11g Client and 10g XE will cause conflict in my computer or is it ok to install both. Any suggestion/information is appreciated.
Regards,
RRR

Hi,
i have installed oracle oraclient11g_home1, want to know the changes in tnsnames.ora.
below tnsnames.ora file got created after installation. I dont know
CONNECT_DATA=
          (SID=<oracle_sid>)
          [ (GLOBAL_NAME=<global_database_name>) ]
<alias>= [ (DESCRIPTION_LIST =  # Optional depending on whether u have
                    # one or more descriptions
                    # If there is just one description, unnecessary ]
     (DESCRIPTION=
     [ (SDU=2048) ]     # Optional, defaults to 2048
                    # Can take values between 512 and 32K
     [ (ADDRESS_LIST=    # Optional depending on whether u have
                    # one or more addresses
                    # If there is just one address, unnecessary ]
     (ADDRESS=
          [ (COMMUNITY=<community_name>) ]
          (PROTOCOL=tcp)
          (HOST=<hostname>)
          (PORT=<portnumber (1521 is a standard port used)>)
     [ (ADDRESS=
          (PROTOCOL=ipc)
          (KEY=<ipckey (PNPKEY is a standard key used)>)     
     [ (ADDRESS=
          [ (COMMUNITY=<community_name>) ]
          (PROTOCOL=decnet)
          (NODE=<nodename>)
          (OBJECT=<objectname>)
... # More addresses
     [ ) ] # Optional depending on whether ADDRESS_LIST is used or not
     [ (CONNECT_DATA=
          (SID=<oracle_sid>)
          [ (GLOBAL_NAME=<global_database_name>) ]
     [ (SOURCE_ROUTE=yes) ]
     (DESCRIPTION=
     [ (SDU=2048) ]     # Optional, defaults to 2048
                    # Can take values between 512 and 32K
     [ (ADDRESS_LIST= ]     # Optional depending on whether u have more
                    # than one address or not
                    # If there is just one address, unnecessary
     (ADDRESS
          [ (COMMUNITY=<community_name>) ]
          (PROTOCOL=tcp)
          (HOST=<>)
          (PORT=<1521>)
     [ (ADDRESS=
          (PROTOCOL=ipc)
          (KEY=<ipckey (PNPKEY is a standard key used)>)
     ...           # More addresses
     [ ) ]           # Optional depending on whether ADDRESS_LIST
                    # is being used
     [ (CONNECT_DATA=
          (SID=<oracle_sid>)
          [ (GLOBAL_NAME=<global_database_name>) ]
     [ (SOURCE_ROUTE=yes) ]
     [ (CONNECT_DATA=
     (SID=<oracle_sid>)
     [ (GLOBAL_NAME=<global_database_name>) ]
     ... # More descriptions
     [ ) ]     # Optional depending on whether DESCRIPTION_LIST is used or not

Similar Messages

  • Oracle Database 10g Express Edition support Grid Computing ?

    Hi
    May I know if I install the Oracle Database Express Edition on Linux, which Linux O/S
    that can support Grid Computing ?
    And if I install this database on Windows, which Windows platform that support Grid Computing ?
    Thanks.
    Vivi

    Hi.
    What do you mean by support Grid?
    I'm assuming you are actually asking about support for RAC. If so, then:
    - Oracle XE does not support RAC.
    - There are a number of Linux distributions that are supported for RAC, including Red Hat Advanced Server and SUSE Linux Enterprise Server. Basically, if it is free, Oracle don't support it. That's not to say it doesn't work, but it's not supported.
    - I guess the only sensible Windows choice is Windows 2003. It would work in Windows 2000 or XP, but these aren't sensible options as both are very old and one is a desktop OS.
    These answers also apply to the Grid Control.
    Cheers
    Tim...

  • Oracle 10g Express Edition / 64-bit client

    hi all,
    I have Oracle 10g express edition installed on a remote Vista/32-bit machine. I installed the XE Client on a Vista/64-bit and got the following error:
    UnsatistifiedLinkError: ocijdbc10.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform.
    So, I tried installing the Instant Client (64-bit) and I'm getting a similiar error:
    UnsatistifiedLinkError: ocijdbc10.dll: Can't load IA 64-bit .dll on a AMD 64-bit platform.
    Using the XE Client, I'm able to login using sqlplus. Anyone have any ideas ??
    thanks jim
    Message was edited by:
    user584351

    Hi Jim, unless something has changed recently - the installation instructions for XE specifically state it is for a 32-bit windows operating system. Also, it does not mention using Vista. If you have access to the 10g Express forum they may have more information there for you.
    Michael W. Cunningham

  • Oracle Client 10g Express Edition (ADO, C++, Visual Studio 2008)

    OS: Windows XP SP2
    I made a test programm allowing to work with Oracle 10g Express Edition. Connection with server works, commands are followed, but at the exit from function wmain Visual Studio it buzzez (слышал такое, если нет, то посмотри по другому словарю?) for some time (around 5 minutes) and module mistake crt0dat.arises in __crtExitProcess. function.
    You can have a look at the mistake here: http://img365.imageshack.us/img365/2125/oravssi1.jpg
    Where the mistake can be?
    Connections with MSSQL и MySQL servers work without problems with the stated algorithm.
    #ifndef _WIN32_WINNT
         #define _WIN32_WINNT 0x0501
    #endif
    #include <Windows.h>
    #ifdef _DEBUG
         #define _CRTDBG_MAP_ALLOC
         #include <crtdbg.h>
    #else
         #define _RPTW0
         #define _RPTW1
         #define _CRT_ERROR 1
    #endif
    #import "c:\Program Files\Common Files\system\ado\msado15.dll" no_namespace rename("EOF", "EndOfFile")
    INT wmain(INT iArgC, PWCHAR pwcArgV[])
         // COM init
         if (S_OK != CoInitializeEx(NULL, COINIT_MULTITHREADED))
              _RPTW0(_CRT_ERROR, L"CoInitialize");
              return -1;
         // DB connect
         _ConnectionPtr pCnn;
         while (TRUE)
              if (S_OK != pCnn.CreateInstance(__uuidof(Connection)))
                   _RPTW0(_CRT_ERROR, L"pCnn.CreateInstance");
                   break;
              try
                   _bstr_t strCnn(L"DRIVER={Oracle in XEClient};dbq=PORTAL:1521/XE;uid=zorkey;pwd=******;");
                   pCnn->Open(strCnn, L"", L"", adConnectUnspecified);
              catch (_com_error& e)
                   _RPTW1(_CRT_ERROR, L"pCnn->Open (%s)", e.Description().GetBSTR());
              try
                   //pCnn->Execute(L"INSERT INTO ZORKEY_COMPUTER(COMPUTERID, COMPUTERNAME) VALUES(2, 'TEST')", NULL, adConnectUnspecified);
              catch (_com_error& e)
                   _RPTW1(_CRT_ERROR, L"pCnn->Execute (%s)", e.Description().GetBSTR());
              if (adStateOpen != pCnn->GetState())
                   break;
              break;
         // DB close
         if (NULL != pCnn)
              if (adStateClosed != pCnn->GetState())
                   pCnn->Close();
              pCnn.Release();
         CoUninitialize();
         return 0;
    }Formatted code can be seen at http://rafb.net/p/Rvz1wL74.html

    You are right. You should use OCCI 11g to work with VS2008. Download the compatible libraries from here: http://www.oracle.com/technology/tech/oci/occi/occidownloads.html

  • Pro*Cobol for Oracle 10g Express Edition is available?

    Hi to all, this is my first post here.
    I evaluating Cobol to Oracle products and I have find one it´s more
    We installed Oracle 10g Express Edition (Server and Client), to test compatibility of a Cobol product.
    This product requires the "rtsora" component, from Pro*Cobol, but we didn´t find it in any place in the instalation packages.
    The documentation show the precompilers to be at $ORACLE_HOME/precomp but there is only two folders (admin and lib) with "ottcfg" files. Nothing more
    Searching this and anothers foruns, I became to think if the precompilers facilities, like Pro*Cobol, may be available to the 10g Express Edition for Linux, OR, if this is a feature available only to the Standart Editions (or Windows)?
    The instalation and users manuals appears to don´t distinguish the 10g standart from the Express Edition. Also, the Express Edition doesn´t ask for any kind of "customization oprtions" as I read about in another topics.
    Edited:
    1 - We are using this on Linux Ubuntu.
    2 - The Windows 10g Express Edition appears to be more complete, but I need to run this on Express Edition.
    Thanks in advance!
    (sorry bad english)

    There is no official communication on 11G express edition release date .
    You will have to wait and watch Oracle Official website for that .
    Also check this :
    http://news.techworld.com/applications/3203909/oracle-stalls-over-11g-express-release/
    http://pcworld.about.com/od/businesscenter/Oracle-Mum-on-11g-Release-2-1.htm
    Regards
    Rajesh

  • Problem upgrading Apex 2.1 to 3.2.1 in Oracle Database 10g Express Edition

    G'Day Apex gurus,
    I installed Oracle Database 10g Express edition in my Windows XP PC which comes with Apex 2.1 with no problems. Then I wanted to upgrade Apex 2.1 to 3.2.1 (Currently Apex download in OTN) following the document below:
    http://www.oracle.com/technology/products/database/application_express/html/3.1_and_xe.html
    I went to the steps:
    @apexins SYSAUX SYSAUX TEMP /i/
    Then to change the password for the admin account run apxchpwd.sql and when prompted enter a password for the ADMIN account.
    @apxchpwd
    with not problems
    Then I connected to SQL*Plus as SYS by:
    sqlplus /nolog
    CONNECT SYS as SYSDBA
    Enter password: xxxxxxxxxxx
    but when I tried to run:
    @APEX_HOME/apex/apxldimg.sql APEX_HOME
    where APEX_HOME is Apex3.2.1 in my case
    SQL> @Apex3.2.1/apex/apxldimg.sql Apex3.2.1 (I get the messages below)
    PL/SQL procedure successfully completed.
    old   1: create directory APEX_IMAGES as '&1/apex/images'
    new   1: create directory APEX_IMAGES as 'Apex3.2.1/apex/images'
    Directory created.
    declare
    *+
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    The system cannot find the path specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.17
    Directory dropped.
    Can anyone help me in how to trouble shout this?
    I tried to continue by following the steps document
    @APEX_HOME/apex/apxxepwd.sql password
    (where password is the password of the Application Express internal ADMIN account)
    but when I tried to login in:
    http://localhost:8080/apex/f?p=4550:1
    when I type the credentials
    system
    system
    systempassword
    nothing happens
    or even If I try:
    http://localhost:8080/apex/f?p=4550:10
    admin
    adminpassword
    nothing happens here too.
    I appreciate any help
    Kind regards
    Carlos

    My database version is 10.2.0.1.0 Oracle express.
    Operating system is Windows Vista.
    I started installing using the following commands.
    @ C:\temp\apex\apexins.sql
    it prompts me for the values of sysaux sysaux temp and c:\temp\apex\images\
    If I supply the value for images the sqlplus window closes after scrolling a lot of info.
    Enroute it also prompts me for a value for 9:
    I don't know what the input shall be.
    Then it again stops at enter value for version:
    I used 3.2.1.0
    The window scrols a while and closes.
    later I changed the password and ran the command.
    @c:\temp\apex\apxldimg.sql c:\temp
    but no success with installation.
    the output is as following.
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 27 18:13:43 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect system/sairam as sysdba;
    Connected.
    SQL> @ c:\temp\apex\apxchpwd
    Enter a value below for the password for the Application Express ADMIN user.
    Enter a password for the ADMIN user []
    Session altered.
    ...changing password for ADMIN
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 3:
    ORA-06550: line 3, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 3, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_USER' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 5, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 5, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 8, column 23:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 7, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 13, column 32:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 12, column 9:
    PL/SQL: Statement ignored
    ORA-06550: line 19, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 19, column 5:
    PL/SQL: Statement ignored
    Commit complete.
    SQL> @c:\temp\apex\apxldimg.sql c:\temp
    PL/SQL procedure successfully completed.
    Directory created.
    if wwv_flow_utilities.db_version_is_at_least('11') then
    ERROR at line 32:
    ORA-06550: line 32, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 32, column 3:
    PL/SQL: Statement ignored
    PL/SQL procedure successfully completed.
    if wwv_flow_utilities.db_version_is_at_least('11') then --11g only
    ERROR at line 16:
    ORA-06550: line 16, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 16, column 3:
    PL/SQL: Statement ignored
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.32
    Directory dropped.
    SQL>
    Does this require XE 11 or anything else.
    This will happen even if I supply as following(closing of sqlplus in the begining).
    @ C:\temp\apex\apexins.sql sysaux sysaux temp c:\temp\apex\images\
    Any help.

  • Oracle 10g Express Edition Limitations

    hi,
    i want to know the limitations of Oracle 10g Express edition ,, yesterday i got a problem when reconfiguring SGA of one of our client's Oracle Express edition database. i was resizing it from 140MB to 800MB,, n got errors.. plz gimme some links which can state the limitations of memory usage for Oracle Express ed...
    Thanx
    Muhammad Umar Liaquat

    How about this link?
    http://download-uk.oracle.com/docs/cd/B25329_01/doc/install.102/b25143/toc.htm#BABIECJA
    And for comparison:
    http://www.oracle.com/database/product_editions.html
    C.

  • Oracle 10g Express edition,can't visit database homepage

    I have installed Oracle 10g Express edition without error meggage, It seems goes well ,but when I want to visit my database_homepage on http://127.0.0.1:8080/apex, I see this:
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    Please try the following:
    Click the Refresh button, or try again later.
    Open the Web site home page, and then look for links to the information you want.
    If you believe you should be able to view this directory or page, please contact the Web site administrator by using the e-mail address or phone number listed on the Web site home page.
    10061 - Connection refused
    Internet Security and Acceleration Server
    Technical Information (for support personnel)
    Background:
    The server you are attempting to access has refused the connection with the gateway. This usually results from trying to connect to a service that is inactive on the server.
    ISA Server: csscisaser
    Via:
    Oracle is installed on my own computer.I think ISA should do nothing with it.And I have removed proxy setting in Internet exploer,but the error still happed.
    I used netstat-a,and can find this:
    proto :tcp
    local address: myxxxxxx:8080
    foreign address myxxxxxx:0
    state : listening
    does it mean my oracle http listener is started?

    Open a command line and
    - enter ping 127.0.0.1 ... should tell whether
    connectivity is possible. If not, something is
    blocking, and that something is usually a firewall.ping 127.0.0.1. I can connect to 127.0.0.1,very fast.but when I ping 127.0.0.1:8080 ,Can't get response.
    enter ipconfig /all
    enter and post output of lsnrctl status
    There are so many output content.And you may see some #^$*#*&^$#@&* because I'm using Chinese version Oracle and OS.
    IPconfig
    Windows IP Configuration
            Host Name . . . . . . . . . . . . : cjis-e89f34e63f
            Primary Dns Suffix  . . . . . . . :
            Node Type . . . . . . . . . . . . : Hybrid
            IP Routing Enabled. . . . . . . . : No
            WINS Proxy Enabled. . . . . . . . : No
            DNS Suffix Search List. . . . . . : xxxx.wan
    Ethernet adapter 本地连接:
            Connection-specific DNS Suffix  . : xxxx.wan
            Description . . . . . . . . . . . : Broadcom NetXtreme 57xx
    roller
            Physical Address. . . . . . . . . : xx-13-72-7D-67-8B
            Dhcp Enabled. . . . . . . . . . . : Yes
            Autoconfiguration Enabled . . . . : Yes
            IP Address. . . . . . . . . . . . : 172.18.9.30
            Subnet Mask . . . . . . . . . . . : 255.255.255.0
            Default Gateway . . . . . . . . . : 172.18.9.252
            DHCP Server . . . . . . . . . . . : 172.18.18.9
            DNS Servers . . . . . . . . . . . : 172.18.18.9
            Primary WINS Server . . . . . . . : 172.18.18.9
            Lease Obtained. . . . . . . . . . : 2007年7月16日 15:51:15
            Lease Expires . . . . . . . . . . : 2007年7月24日 15:51:15
    LSNRCTL status
    正在连接到 (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    LISTENER 的 STATUS
    别名                      LISTENER
    版本                      TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Prod
    ction
    启动日期                  20-7月 -2007 11:19:13
    正常运行时间              0 天 2 小时 17 分 10 秒
    跟踪级别                  off
    安全性                    ON: Local OS Authentication
    SNMP                      OFF
    默认服务           XE
    监听程序参数文件          C:\oraclexe\app\oracle\product\10.2.0\server\network\
    dmin\listener.ora
    监听程序日志文件          C:\oraclexe\app\oracle\product\10.2.0\server\network\
    og\listener.log
    监听端点概要...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cjis-e89f34e63f)(PORT=1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation
    HTTP)(Session=RAW))
    服务摘要..
    服务 "CLRExtProc" 包含 1 个例程。
      例程 "CLRExtProc", 状态 UNKNOWN, 包含此服务的 1 个处理程序...
    服务 "PLSExtProc" 包含 1 个例程。
      例程 "PLSExtProc", 状态 UNKNOWN, 包含此服务的 1 个处理程序...
    服务 "XEXDB" 包含 1 个例程。
      例程 "xe", 状态 READY, 包含此服务的 1 个处理程序...
    服务 "XE_XPT" 包含 1 个例程。
      例程 "xe", 状态 READY, 包含此服务的 1 个处理程序...
    服务 "xe" 包含 1 个例程。
      例程 "xe", 状态 READY, 包含此服务的 1 个处理程序...
    ['/pre']
    Display contents of
    C:\windows\system32\drivers\etc\hosts.['pre']
    # Copyright (c) 1993-1999 Microsoft Corp.
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    # For example:
    #      102.54.94.97     rhino.acme.com          # source server
    #       38.25.63.10     x.acme.com              # x client host
    127.0.0.1       localhostMessage was edited by:
    sailfish83

  • Oracle 10g Express Edition doesn't works on Win SBS 2011

    Deutsch
    Hallo zusammen!
    Ich ein kleines Problem mit der Installation von Oracle 10g Express Edition Release 10.2.0.1.0. Zuerst, ich muss die ältere Version nehmen, weil das Programm welches dann auf Oracle zugreift sehr „sensibel“ ist und wohlmöglich mit der neueren Version 11g nicht klar kommt.
    Die Version 10g habe ich nun auf einen Server mit Windows SBS 2011 Essentials SP1 64-Bit installiert. Doch leider bekomme ich nach der Installation keinen Zugriff zum Localhost 127.0.0.1:8080/apex. Weder mit IE noch mit Firefox.
    Meine Frage wäre funktioniert die Version 10g auf Windows SBS 2011 mit 64-bit überhaupt und falls ja, wo müsste man eventuell in Windows noch etwas einstellen damit man Zugriff auf 127.0.0.1:8080/apex hat?
    Vielen Dank vorab!
    English
    Hello at all!
    I’ve some problems with the installation of Oracle 10g Express Edition Release 10.2.0.1.0. At first i must take the old version of Oracle, because the program which needs Oracle ist very “sensitive” and i fear this program doesn’t cope with the new version.
    So i install the version 10g on a server with Windows SBS 2011 Essentials SP1 64-Bit. Unfortunately i don't get an access to the localhost 127.0.0.1:8080/apex. I try it with IE and Firefox.
    My question is does Oracle 10g works on Windows SBS 2011 64-bit and if yes, is there any setting to do on Windows to get the an access to 127.0.0.1:8080/apex?
    Thank!

    does Oracle 10g works on Windows SBS 2011 64-bitYou can see supported OSes in System Requirements for Windows platforms.
    As always, not certified does not necessarily mean it won't work, but if you have problems...

  • Uploading photo in oracle 10g express edition

    Hi,
    I want to upload photo in my database running on oracle 10g express edition.This process must handle simultaneous uploading and with minimum error. Problem is the site is online and anyone can upload garbage,etc.so i am planning to collect images through email and then photo would be uploaded by some data entry operator. please suggest me some process
    Thanks

    878927 wrote:
    How can use these loader tools? and what will be the advantage by going through these tools?please explain.Another Condition is i have to scan the photos before uploading it to databaseThere are instructions on how to use SQL*LOADER in the on-line documentation. I meant to say that you have to decide the best way to load the data. I just listed some examples on possible ways it can be done.
    Apex is a database application that can be used to generate web pages based on database tables. It can also load files from clients. You can read about Apex in the Apex forums here on OTN or in the on-linedocumentation

  • Oracle 10g Express Edition Beta 3 Install Problems

    I made three install attempts for this software, and I'll detail them below.
    This was a fresh install on a computer that previously had no other version running
    ATTEMPT 1
    The installation procedure ran, but even though the OracleServiceXE service started, the server wouldn't work and I couldn't connect to it.
    c:\oraclexe\app\oracle\product\10.2.0\server\config\log\postDBCreation.log contained the following...
    SQL> connect "SYS"/"&&sysPassword" as SYSDBA
    ERROR:
    ORA-01017: invalid username/password; logon denied
    SQL> set echo on
    SQL> //create or replace directory DB_BACKUPS as 'D:\utils\oraclexe\app\oracle\flash_recovery_area';
    SP2-0640: Not connected
    SQL> begin
    2 dbms_xdb.sethttpport('8080');
    3 dbms_xdb.setftpport('0');
    4 end;
    5 /
    SP2-0640: Not connected
    SQL> create spfile='D:\utils\oraclexe\app\oracle\product\10.2.0\server\dbs/spfileXE.ora' FROM pfile='D:\utils\oraclexe\app\oracle\product\10.2.0\server\config\scripts\init.ora';
    SP2-0640: Not connected
    SQL> shutdown immediate;
    ORA-01012: not logged on
    SQL> connect "SYS"/"&&sysPassword" as SYSDBA
    ERROR:
    ORA-01017: invalid username/password; logon denied
    I proceeded to uninstall and then reinstall in attempt 2.
    ATTEMPT 2
    This time, the installation procedure ran but didn't finish. It got up to the point where it said "Creating and starting services for Oracle Database 10g Express Edition..." and it sat there for a long time doing nothing, but there was a process "IDriver.exe" using a large percentage of the CPU all that while.
    I ended up having to kill the installation process with the task manager to stop it, and then since the installation wasn't successful had to manually delete everything in c:\oraclexe
    ATTEMPT 3
    This time the installation went a lot better and after the install, everything in c:\oraclexe\app\oracle\product\10.2.0\server\config\log\postDBCreation.log looks normal.
    I am able to connect to the database with sqlplus now, but the OracleXETNSListener process won't start.
    When starting, it says this, but the OracleXETNSListener doesn't stay running:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleXETNSListener
    The OracleXETNSListener service was started successfully.
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleServiceXE
    The OracleServiceXE service is starting.
    The OracleServiceXE service was started successfully.
    If I start the service in the windows services application it says "The OracleXETNSListener service on Local Computer started and then stopped..."
    However, if I explicitly run c:\oraclexe\app\oracle\product\10.2.0\server\bin\tnslsnr.exe from the commandline, it works.
    Why won't it start as a service?

    Hello
    I have the same problem.
    My config :
    - XP SP 2
    Other installed products :
    - last version Oracle JDevelopper
    - Oracle Client 9.2.0 (the service does not run)
    By the way,
    JDev needs ORACLE_HOME set (c:\oracle for me).
    Should Oracle XE be installed in %ORACLE_HOME% too or in an new empty folder (like c:\oraclexe) as it is recommended by the installer
    I checked if I already use the port 1521 using netstat /ab but it seems this port is not used.
    On a second PC, it works well.
    How can I access the DB on my secondary PC from jdev on my priomary PC?
    --> how can I only install OracleXE client on my primary PC?
    Rgds
    Guillaume

  • Oracle 10g Express Edition Installation Error

    I have downloaded 10g Express Edition and am trying to install. After clicking on the OracleXE.exe file, I get the following error:
    Error applying transforms. Verify that the specified transform paths are valid. C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST
    I have verified that the path and file exists. What else should I do?

    Here is the Ipconfig settings:
    ipconfig /all
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : jfunk
    Primary Dns Suffix . . . . . . . :
    Node Type . . . . . . . . . . . . : Unknown
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : Yes
    Ethernet adapter Local Area Connection 11:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft Loopback Adapter
    Physical Address. . . . . . . . . : 02-00-4C-4F-4F-50
    Dhcp Enabled. . . . . . . . . . . : No
    IP Address. . . . . . . . . . . . : 192.168.100.100
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . :
    Ethernet adapter Local Area Connection 5:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : 3Com 3C920 Integrated Fast Ethernet
    Controller (3C905C-TX Compatible) #4
    Physical Address. . . . . . . . . : 00-08-74-48-AE-AB
    Dhcp Enabled. . . . . . . . . . . : No
    IP Address. . . . . . . . . . . . : 192.168.0.5
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 192.168.0.1
    DNS Servers . . . . . . . . . . . : 200.105.128.40
    200.105.128.41
    C:\Documents and Settings\funk>
    No luck in changing the Temp environment setting. Here is the latest log.
    === Verbose logging started: 8/22/2007 16:55:24 Build type: SHIP UNICODE 3.01.4000.4039 Calling process: c:\PROGRA~1\COMMON~1\INSTAL~1\Driver\11\INTEL3~1\IDriver.exe ===
    MSI (c) (10:B8) [16:55:24:765]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\temp\_is5F\Oracle Database 10g Express Edition.msi' against software restriction policy
    MSI (c) (10:B8) [16:55:24:765]: Note: 1: 2262 2: DigitalSignature 3: -2147287038
    MSI (c) (10:B8) [16:55:24:765]: SOFTWARE RESTRICTION POLICY: c:\temp\_is5F\Oracle Database 10g Express Edition.msi is not digitally signed
    MSI (c) (10:B8) [16:55:24:765]: SOFTWARE RESTRICTION POLICY: c:\temp\_is5F\Oracle Database 10g Express Edition.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (c) (10:B8) [16:55:24:775]: Cloaking enabled.
    MSI (c) (10:B8) [16:55:24:775]: Attempting to enable all disabled priveleges before calling Install on Server
    MSI (c) (10:B8) [16:55:24:775]: End dialog not enabled
    MSI (c) (10:B8) [16:55:24:775]: Original package ==>
    MSI (c) (10:B8) [16:55:24:775]: Package we're running from ==> c:\temp\_is5F\Oracle Database 10g Express Edition.msi
    MSI (c) (10:B8) [16:55:24:775]: Transforming table Property.
    MSI (c) (10:B8) [16:55:24:775]: APPCOMPAT: looking for appcompat database entry with ProductCode '{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}'.
    MSI (c) (10:B8) [16:55:24:775]: APPCOMPAT: no matching ProductCode found in database.
    MSI (c) (10:B8) [16:55:24:775]: MSCOREE not loaded loading copy from system32
    MSI (c) (10:B8) [16:55:24:785]: Looking for file transform: C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST
    MSI (c) (10:B8) [16:55:24:785]: Unable to create a temp copy of transform 'C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST'.
    MSI (c) (10:B8) [16:55:24:785]: Note: 1: 2203 2: C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST 3: -2147287037
    MSI (c) (10:B8) [16:55:24:785]: Couldn't find cached transform C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST. Looking for it at the source.
    MSI (c) (10:B8) [16:55:24:785]: Resolving source.
    MSI (c) (10:B8) [16:55:24:785]: Resolving source to launched-from source.
    MSI (c) (10:B8) [16:55:24:785]: Setting launched-from source as last-used.
    MSI (c) (10:B8) [16:55:24:785]: SOURCEDIR ==> c:\temp\_is5F\
    MSI (c) (10:B8) [16:55:24:785]: SOURCEDIR product ==> {F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}
    MSI (c) (10:B8) [16:55:24:785]: Looking for file transform: C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST
    MSI (c) (10:B8) [16:55:24:785]: Unable to create a temp copy of transform 'C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST'.
    MSI (c) (10:B8) [16:55:24:785]: Note: 1: 2203 2: C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST 3: -2147287037
    MSI (c) (10:B8) [16:55:24:785]: Couldn't find cached transform C:\WINDOWS\Installer\{F0BC0F9E-C4A8-485C-93ED-424DB9EA3F75}\1033.MST. Looking for it at the source.
    MSI (c) (10:B8) [16:55:24:785]: Looking for file transform: c:\temp\_is5F\1033.MST
    MSI (c) (10:B8) [16:55:24:795]: Original transform ==> c:\temp\_is5F\1033.MST
    MSI (c) (10:B8) [16:55:24:795]: Transform we're running from ==> C:\temp\5d536d5.mst
    MSI (c) (10:B8) [16:55:24:795]: Found missing cached transform c:\temp\_is5F\1033.MST. Adding it to re-cache list.
    MSI (c) (10:B8) [16:55:24:795]: SOFTWARE RESTRICTION POLICY: Verifying transform --> 'c:\temp\_is5F\1033.MST' against software restriction policy
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: DigitalSignature 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: SOFTWARE RESTRICTION POLICY: c:\temp\_is5F\1033.MST is not digitally signed
    MSI (c) (10:B8) [16:55:24:795]: SOFTWARE RESTRICTION POLICY: c:\temp\_is5F\1033.MST is permitted to run at the 'unrestricted' authorization level.
    MSI (c) (10:B8) [16:55:24:795]: Validating transform 'C:\temp\5d536d5.mst' with validation bits 0
    MSI (c) (10:B8) [16:55:24:795]: Transform 'C:\temp\5d536d5.mst' is valid.
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: Patch 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: PatchPackage 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: _Tables 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: _Columns 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: Media 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: File 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: PatchPackage 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: Patch 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: TRANSFORM: 'PatchPackage' table is missing or empty. No pre-transform fixup necessary.
    MSI (c) (10:B8) [16:55:24:795]: TRANSFORM: Applying regular transform to database.
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: _Tables 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: _Columns 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: ActionText 3: -2147287038
    MSI (c) (10:B8) [16:55:24:795]: Note: 1: 2262 2: AdminExecuteSequence 3: -2147287038
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2262 2: Condition 3: -2147287038
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2262 2: AdminUISequence 3: -2147287038
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2262 2: AdvtExecuteSequence 3: -2147287038
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2262 2: AdvtUISequence 3: -2147287038
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2262 2: AppId 3: -2147287038
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2262 2: AppSearch 3: -2147287038
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2251 2: c:\temp\_is5F\Oracle Database 10g Express Edition.msi 3: Property
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2729
    DEBUG: Error 2251: Database: c:\temp\_is5F\Oracle Database 10g Express Edition.msi Transform: Cannot delete row that doesn't exist. Table: Property
    1: 2251 2: c:\temp\_is5F\Oracle Database 10g Express Edition.msi 3: Property
    Error applying transforms. Verify that the specified transform paths are valid.
    c:\temp\_is5F\1033.MST
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 1708
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2729
    MSI (c) (10:B8) [16:55:24:805]: Note: 1: 2729
    MSI (c) (10:B8) [16:55:24:805]: Product: Oracle Database 10g Express Edition -- Installation failed.
    MSI (c) (10:B8) [16:55:24:805]: Attempting to delete file C:\temp\5d536d5.mst
    MSI (c) (10:B8) [16:55:24:805]: Unable to delete the file. LastError = 32
    === Verbose logging stopped: 8/22/2007 16:55:24 ===
    I am on my last attempt here if there are no other concrete solutions. Guess I will have to wait for 11g to make it to the Windows environment. Any other previous version of 10g that I can try????

  • Oracle 10g express edition recovery catalog

    whether oracle 10g express edition spoort recovery catalog?

    Yes you can; the answer is in the manual.
    >
    In general, the rules of RMAN compatibility are as follows:
    <li>You can create 8.X or 9.X RMAN catalog schema in any Oracle database release 8.1.X (or higher) and Release 10g RMAN catalog schema in any Oracle database release 9.0.1 (or higher).</li>
    <li>The recovery catalog schema version must be greater than or equal to the RMAN client version.</li>
    <li>Ideally, the versions of the RMAN client and the target database should be the same (although there are other legal combinations, listed in Table B-1).</li>
    <li>While backing up a Release 10g database using the 9.X RMAN client, you cannot include a controlfile that was created using compatible=10.0.0 in a datafile backupset. The workaround is to turn controlfile autobackup ON.</li>
    >
    http://download.oracle.com/docs/cd/B12037_01/server.101/b10770/compat.htm
    http://download.oracle.com/docs/cd/B25329_01/doc/admin.102/b25107/backrest.htm#i1004902
    XE questions are best answered here {forum:id=251}
    Regards,
    Phiri
    Edited by: phiri on 02-Apr-2010 01:36

  • Using JDeveloper with Oracle 10g Express Edition

    Hi,
    can JDeveloper 11g 11.1.1.4.0 Studio Edition be used to develop applications connection with Oracle 10g Express Edition?
    If not, is there a version downloadable that can?
    TIA

    Yes, it can.
    John

  • Java Connection Pooling issue with Oracle 10g Express Edition

    Hello
    I have a Java based web application that uses the Oracle 10g Express Edition database. I am using a connection pool to get connections to the database.
    I use the NetBeans IDE and run my web application on the bundled Tomcat server(5.5.7) that comes with the IDE. Though when I initially run the application from the IDE, the connection pool is set up fine, when I recompile my java code and try to run the application again, I get the following error each time:
    Listener refused the connection with the following error:
    ORA-12516, TNS:listener could not find available handler with the
    matching protocol stack.
    The logs before the error shows up, indicate that the connection pool object is fine and gives me the number of available connections and the number of active connections and so on, which I have printed from the constructor of the Connection Pool class:
    For e.g.:
    Cache size = 17
    Available Connections = 17
    Cache Limit = 1000
    Active size = 0
    However, if I kill my Tomcat server process and run the application again, it works fine with no error.
    I looked around for possible causes and solutions and all I could find
    was increasing the processes parameter value in the init.ora file. I have increased the parameter value to from 100 to 20000 now, in increments of 500/1000 each time but it hasnt worked so far.
    Someone else suggested that I increase the size of my connection pool; I initially had it set to a minimum limit of 5, an initial limit of 10 and a maximum limit of 1000. However if I set the Initial Limit to anything above 17 connections, I see the following log on the Bundled Tomcat log and my application doesn't run at all:
    Log: Loading JDBC Driver : class=oracle.jdbc.driver.OracleDriver ...
    Log: Loaded JDBC Driver
    Log: Connection with URL=jdbc:oracle:thin:@localhost:1521:xe as username/password
    Error code not handled : 0
    Exception Message :java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12519, TNS: no appropriate service handler found
    The Connection descriptor used by the client was:
    localhost:1521:xe
    // End of log
    And the Bundled Tomcat server automatically shuts down.
    Again the System.out statements from the Connection Pool class constructor show that the cache has been initialized and that currently there are free connections available in the pool.
    E.g.
    Cache size = 18
    Available Connections = 18
    Cache Limit = 1000
    Active size = 0
    Has anyone faced anything similar? Could someone please suggest what I'm doing wrong here and what I should do to set right this problem?
    Swetha

    hello, please pardon me, my english is basic. i do of my best. i had the same problem until reading the pdf documentation 2 days for java devvelloper.it is simple, follow this way.
    try {OracleDataSource ds;
         Connection conn;
      ds = new OracleDataSource();
      ds.setURL("jdbc:oracle:thin:@localhost");
      conn = ds.getConnection("userid","password");
    Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
    don't forget to Dowload the user client of oracle Express Edition. do the rest of your program and it will work. take a look to the documentation pdf for java develloper. all it is explained.  good look                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Blocking MIRO when the stock is in Quality

    Hi all, We are using mySAP ECC 5.0.We have configured QM for Procurement. when the materials is received through MIGO, stock is posted to Quality.At this stage, if i am doing the MIRO, system is allowing me to do.But system should not allow me to do

  • Why does AirPort Extreme stop working when I plug in a USB hard drive?

    Why does Airport Extreme stop working when I plug in a USB hard drive?  The USB drive has its own power supply.  I've tried isolating the hard drive from Airport using a powered USB hub to no avail.

  • About the Font Setting in Swing (Multi-Font) !!!

    HI: I want to set a new Font to JButton or JTextField.... usually, we can invoke the method of setFont(..), but I want to set different Language with different font in one Component (e.g: JButton). For example: English ---> Tahoma, 11 French ---> Tim

  • How to transfer photos from iPad to a laptop

    How do I transfer photos from my iPad to a laptop?

  • IPod Toch 4g sound issues?

    Previously I had issues with speaker sound not working in game-related apps. Today, that magically fixed itself but now I can't control the ringer (and therefore notification volume is automatically muted) and I can't use the music toggles, with or w