Oracle 10g on Windows 7: TNS-12535: TNS:operation expired

I installed Oracle 10 g (Version 10.2.0) on Windows 7 Professional on my laptop. Everything installed correctly, but I simply can't have a communication client-Oracle course. For some reason, TNSPing guard time outside, the following:

C:\Users\Bruce > tnsping orcl

AMT Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 13-SEP-2
010 17:00:09

Copyright (c) 1997, 2005, Oracle. All rights reserved.

Use settings files:
F:\oracle\product\10.2.0\client_1\network\admin\sqlnet.ora


TNSNAMES adapter used to resolve the alias
Try to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
(HOST = Office Bruce) (PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = ORCL)))
TNS-12535: TNS:operation expired

I use DHCP on my home network, but I have disabled the firewall for this exercise. Also, I put in place a static = 192.168.100.100 loopback connector

Here's SQLNET. ORA:

SQLNET. AUTHENTICATION_SERVICES = (NTS)

NAMES. DIRECTORY_PATH = (TNSNAMES)


Here's the TNSNAMES file. ORA:

ORCL =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP) (HOST = Bruce-Office)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = ORCL)
)
)

EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)


This is the LISTENER. ORA:

SID_LIST_LISTENER01 =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = F:\oracle\product\10.2.0\db_2)
(= Extproc PROGRAM)
)
)

LISTENER01 =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP) (HOST = Bruce-portable)(PORT = 1521))
)
)

Any help or advice on how to diagnose and fix this problem would be greatly appreciated!

Thank you.

Hi Bruce,.

>
My question is this: that this path should I take to install 11g?
>

Extract the files in a directory of your choice. The extracted files are the installation of Oracle files. You will use the installer from this directory.

>
(1) make a FULL install 11 g on the existing (but defective!) version 10 g?
>

Is not ideal. You are much better to get rid of (uninstall) 10 g.

>
(2) uninstall (ugh!) the existing 10g version and THEN install the full version of 11g?
>

Yes, certainly. This version is not yet compatible with your version of Windows. After you have installed has the potential to cause problems.

>
(3) simply perform an UPGRADE to 10 g - 11 g? (Which is possible using these 11 g installation files?)
>

No. 10g of uninstall, restart with 11g

HTH,

John.

Tags: Database

Similar Questions

  • I get the error message like "error - ORA-29273 report: failure of the HTTP ORA-06512: at"SYS. " UTL_HTTP", line 1130 ORA-12535: TNS:operation expired ORA-06512: 37 29273 line. 00000 - "HTTP request failed" * Cause: package UTL_HTTP The Impossible to run

    I have tried the code

    DECLARE

    lv_url VARCHAR2 (1000): = ' http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';

    lc_return BLOB;

    lhttp_url httpuritype.

    Varriables - declared to have written the LOB to pdf file-

    l_file UTL_FILE. TYPE_DE_FICHIER;

    l_buffer RAW (32767).

    l_amount directory: = 32767;

    l_pos INTEGER: = 1;

    l_blob BLOB;

    l_blob_len INTEGER.

    BEGIN

    -create URIs

    lhttp_url: = httpuritype.createuri (lv_url);

    -get the PDF document

    lc_return: = lhttp_url.getblob ();

    -Open the destination file.

    l_file: = UTL_FILE. FOPEN ('MBO_INPUT_DIR', 'MBD.zip', 'wb');

    -Get the total length of the BLOB

    l_blob_len: = DBMS_LOB.getlength (lc_return);

    -Pieces of the BLOB to read and write to the file

    -full up.

    While l_pos < l_blob_len LOOP

    DBMS_LOB. READ (lc_return, l_amount, l_pos, l_buffer);

    UTL_FILE.put_raw (l_file, l_buffer, FALSE);

    l_pos: = l_pos + l_amount;

    END LOOP;

    -Closes the file.

    UTL_FILE. FCLOSE (l_file);

    EXCEPTION

    WHILE OTHERS THEN

    -Close the file if something goes wrong.

    IF UTL_FILE.IS_OPEN (l_file) THEN

    UTL_FILE. FCLOSE (l_file);

    END IF;

    LIFT;

    END;

    But make a mistake like:

    Error report-

    ORA-29273: HTTP request failed

    ORA-06512: at "SYS." UTL_HTTP", line 1130

    ORA-12535: TNS:operation expired

    ORA-06512: at line 37 level

    29273 00000 - "the HTTP request failed.

    * Cause: The UTL_HTTP package cannot run the HTTP request.

    * Action: Use get_detailed_sqlerrm to check the detailed error message.

    Correct the error and restart the HTTP request.

    Please suggest a solution. Is it possible to download a zip file with the same code?

    [oracle@localhost ~]$ sqlplus scott/tiger
    
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Apr 6 13:59:09 2015
    
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> --My Database version
    SQL> ----------------------
    SQL> SELECT * FROM v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2        lv_url    VARCHAR2(500) := 'http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';
      3        lc_return BLOB;
      4        lhttp_url httpuritype;
      5        ---Varriables declared for writing the LOB to pdf file --
      6        l_file     UTL_FILE.FILE_TYPE;
      7        l_buffer   RAW(32767);
      8        l_amount   BINARY_INTEGER := 32767;
      9        l_pos      INTEGER := 1;
    10       l_blob     BLOB;
    11       l_blob_len INTEGER;
    12     BEGIN
    13       --create uri
    14       lhttp_url := httpuritype.createuri(lv_url);
    15       --get the PDF document
    16       lc_return := lhttp_url.getblob();
    17       -- Open the destination file.
    18       l_file := UTL_FILE.FOPEN('SAUBHIK', 'TheLoveDare.pdf', 'wb');
    19       --Get the total length of the BLOB
    20       l_blob_len := DBMS_LOB.getlength(lc_return);
    21       -- Read chunks of the BLOB and write them to the file
    22       -- until complete.
    23       WHILE l_pos < l_blob_len LOOP
    24         DBMS_LOB.READ(lc_return, l_amount, l_pos, l_buffer);
    25         UTL_FILE.put_raw(l_file, l_buffer, FALSE);
    26         l_pos := l_pos + l_amount;
    27       END LOOP;
    28       -- Close the file.
    29       UTL_FILE.FCLOSE(l_file);
    30     EXCEPTION
    31       WHEN OTHERS THEN
    32         -- Close the file if something goes wrong.
    33         IF UTL_FILE.IS_OPEN(l_file) THEN
    34           UTL_FILE.FCLOSE(l_file);
    35         END IF;
    36         RAISE;
    37*    END;
    38  /
    DECLARE
    *
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1130
    ORA-24247: network access denied by access control list (ACL)
    ORA-06512: at line 36
    
    SQL> conn sys as sysdba
    Enter password:
    Connected.
    SQL> ed
    Wrote file afiedt.buf
    
      1  BEGIN
      2    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl         => 'love.xml',
      3                                      description => 'Love ACL',
      4                                      principal   => 'SCOTT',
      5                                      is_grant    => true,
      6                                      privilege   => 'connect');
      7    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl       => 'love.xml',
      8                                         principal => 'SCOTT',
      9                                         is_grant  => true,
    10                                         privilege => 'resolve');
    11    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL(acl  => 'love.xml',
    12                                      host => 'shenzhoufellowship.org');
    13  commit;
    14* END;
    15  /
    
    PL/SQL procedure successfully completed.
    
    SQL> conn scott/tiger
    Connected.
    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2        lv_url    VARCHAR2(500) := 'http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';
      3        lc_return BLOB;
      4        lhttp_url httpuritype;
      5        ---Varriables declared for writing the LOB to pdf file --
      6        l_file     UTL_FILE.FILE_TYPE;
      7        l_buffer   RAW(32767);
      8        l_amount   BINARY_INTEGER := 32767;
      9        l_pos      INTEGER := 1;
    10       l_blob     BLOB;
    11       l_blob_len INTEGER;
    12     BEGIN
    13       --create uri
    14       lhttp_url := httpuritype.createuri(lv_url);
    15       --get the PDF document
    16       lc_return := lhttp_url.getblob();
    17       -- Open the destination file.
    18       l_file := UTL_FILE.FOPEN('SAUBHIK', 'TheLoveDare.pdf', 'wb');
    19       --Get the total length of the BLOB
    20       l_blob_len := DBMS_LOB.getlength(lc_return);
    21       -- Read chunks of the BLOB and write them to the file
    22       -- until complete.
    23       WHILE l_pos < l_blob_len LOOP
    24         DBMS_LOB.READ(lc_return, l_amount, l_pos, l_buffer);
    25         UTL_FILE.put_raw(l_file, l_buffer, FALSE);
    26         l_pos := l_pos + l_amount;
    27       END LOOP;
    28       -- Close the file.
    29       UTL_FILE.FCLOSE(l_file);
    30     EXCEPTION
    31       WHEN OTHERS THEN
    32         -- Close the file if something goes wrong.
    33         IF UTL_FILE.IS_OPEN(l_file) THEN
    34           UTL_FILE.FCLOSE(l_file);
    35         END IF;
    36         RAISE;
    37*    END;
    38  /
    
    PL/SQL procedure successfully completed.
    
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@localhost ~]$ cd saubhik/
    [oracle@localhost saubhik]$ pwd
    /home/oracle/saubhik
    [oracle@localhost saubhik]$ ls -l *.pdf
    -rw-r--r-- 1 oracle oinstall 60055 Apr  6 14:03 TheLoveDare.pdf
    [oracle@localhost saubhik]$
    

    I love this pdf file. I would like to read this and mean while if you get an error then please post in its entirety and also think that it is an Oracle error or network.

  • Error when creating a Web Service reference. ORA-29273: HTTP request failed ORA-12535: TNS:operation expired

    I have a need to call a web service from an APEX application, so I thought I'd try to experience everything first call a web service that is accessible to the public from W3Schools.  The URL of the WSDL that I use is:

    http://www.w3schools.com/webservices/TempConvert.asmx?WSDL

    The 1st thing I try in APEX is to create a Web Service based on the above URL reference.  Problem is that I get the following error:

    ORA-29273: HTTP request failed ORA-12535: TNS:operation expired

    Any ideas?

    I even tried with some other URL WSDL and always the same exact error.

    Thanks in advance.

    Hello

    Maybe your database server have firewall that blocks to internet connection?

    Kind regards
    Jari

  • Installing oracle 10g on windows 7 32 bit

    Hi all

    I use windows 7 ultimate 32 bit PC... Please help me in installing oracle 10g or 11g what fits my windows 7, I tried many things but I could finish it
    I just need to do practical work in sql and pl - sql programs

    Please suggest me the path were can I download the software and tool

    Thank you
    Suresh

    You can install 11 GR 2, as you try to do.

    Another option would be 11g XE - http://www.oracle.com/technetwork/database/express-edition/downloads/index.html

    HTH
    Srini

  • Oracle 10g on Windows Vista Edition Home Premium

    Hello

    Oracle 10g DB can be installed without any problems on Windows Vista Home Premium?
    Thank you very much

    Can be installed-online Yes!

    Going to questions-online certainly YES!

    Support => absolutely NOT!

    HTH
    Aman...

  • Oracle 10g XE: 12154 ORA - TNS could not solve not connect identifier

    Hi all

    I'm a newbie in the world of the database. I downloaded Oracle 10 g XE and it works fine. I also downloaded Microsoft SQL Server 2008 R2 Trial Version and I want to connect to it.

    I installed the Oracle Instant Client and unpacked in ORACLE_HOME. When I add the ODBC Data Sources and test this I get an error: < h5 > ORA 15154 - TNS couldn't solve connect identifier < / h5 >

    I modified the listener.ora and tnsnames.ora files and also the environment varialbe TNS_ADMIN pointing/ORACLE_HOME/Network/Admin. I also added ORACLE_HOME to the PATH variable. I did a tnsping and in the command line lsnrctl status and all looks fine.

    TNS_ADMIN: < h5 > C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN < / h5 >
    Path: < h5 > C:\oraclexe\instantclient_11_2; C:\oraclexe\app\oracle\product\10.2.0\server\bin < / h5 >

    My listener.ora and tnsnames.ora files are as follows:

    -----
    tnsnames.ora
    -----
    < h5 >
    H1. OracleXE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.1.66)(PORT = 1521))
    (CONNECT_DATA =
    (= 192.168.1.66 SERVER)
    (SERVICE_NAME = XE)
    (HS = OK)
    )
    )

    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC_FOR_XE))
    )
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    )
    )

    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC_FOR_XE))
    )
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    )
    )

    XE1 = (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)
    (HOST = 192.168.1.66)
    (PORT = 1521))

    (CONNECT_DATA = (SERVICE_NAME = XE)
    )

    (HS = OK))

    < / h5 >
    -----
    Listener.ora
    -----
    < h5 >
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (= Extproc PROGRAM)
    )
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (= Extproc PROGRAM)
    )
    (SID_DESC =
    (SID_NAME = XE)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = HSODBC)
    )
    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC_FOR_XE))
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.1.66)(PORT = 1521))
    )
    )

    DEFAULT_SERVICE_LISTENER = (XE)
    < / h5 >

    Any help would be much appreciated. I tried everything but no success at all.

    Is "PL/SQL Developer" installed in ...\program files (x 86)-...?

    If this is the case (and everything else is excluded) you could try to reinstall the software to another location, i.e. the drive completely without brackets.

  • Impossible to install oracle 10g on windows XP (Virtual Box)

    Hi all

    I have installed windows XP in Virtual Box, trying to install Oracle 10 g in it. It does not start the installation... no idea about it.  I installed winrar (as the installation of 10g in rar format, due check out it).

    no problem winrar got installed, where as Oracle 10 g just don't settle... no error message is thrown...

    in fact, I installed 10g on a XP PC last week... not sure where what Miss me

    I use 'Briged adapter' network

    If anyone has experienced the same problem, please let me know...

    Florent

    Hi Srini,

    Thank you for helping me with the link to be honest, I had looked into it long back...

    Yes, the software worked just yesterday, I had installed on XP(different machine).

    I've added my PC to the domain, logged in as administrator & double clicked, even... no response.

    Finally, I used "command prompt" and it worked!   don't know how or why... but worked.

    Now my database is created successfully

    Yes would like to know why this happened... and how things worked via the command prompt & not by double clicking... would be very happy if someone can help me on this.

  • Oracle 10g on Windows 2003. Backup suggestions

    HI guys

    Well, I know I'm asking help two former products , well, an or our old applications developed using developer suite 2000 & then migrated to 6i which can not be in a way migrated to Oracle EBS, due to financial constraints and the size of the application. We have data with this database of nearly 14 years, and we recently had a major outage due to power failure.

    We recovered the database using dump exp files (sacrificing a number of days of data) and the export made every night was our backup ONLY for the database (as defined by the solution provider). Once we recovered the database, we allowed logging of archive and automatic backups.

    This legacy application is for a service call center which is 24/7, that is to say, put the database offline and making a suggestion cold backup will receive a cold shoulder at the stage of the proposal itself. I can write Windows services that those could automatically create .zip files for entire folders of Oracle binaries in the background on demand or scheduled intervals, even copy them to the backup devices. Just curious to know how reliable is such archive files for data recovery, as I will zip binary files, while the database is online?

    Thank you and best regards,

    (1) make sure that your database is archivelog to if online backup mode does not use the RMAN tool

    Select log_mode from v database $;

    If not

    stop immediately;

    Startup mount

    ALTER database archivelog

    ALTER database open;

    (2) alter database begin backup

    After the adaptation of your database files and then

    alter database end backup;

    (3) alter database backup controlfile to

    (4) all the zip file that you backup

  • Installing Oracle 10g on Windows 8R2

    Hello

    I had downloaded an Oracle 10 g database files

    1 Database_vault_Winx64_10204

    2 Database_vault_Winx64_10205

    3 Database_vault_Winx64

    During Installation, the system shows that it can withstand up to Version 6.0, Windows 2008r2 is 6.1. Is there any software to Oracle 10 G Database that support, we will be able to install.

    Sandy

    System indicates that it can withstand up to Version 6.0, Windows 2008r2 is 6.1.

    Is there any software to Oracle 10 G Database that support, we will be able to install.

    10.2.0.5 is certified for Win2008R2 64.

    Or you can install Virtualbox and a virtual machine with some lower versions of Windows.

  • Archive log mode in oracle 10g on windows environment

    Hi all

    I have a data base (Oracle 10 g 10.2.0.1.0) on windows 2003 server. yesterday, I put the database in archivelog mode. When I ask spfile location displayed in the location ORACLE_HOME\dbs.
    but when I created pfile using the spfile she is created at the location ORACLE_HOME\database. and there is also an another spfile. I put the log_archive_dest to one location other than flash_recovery_area in pfile, but it is to show the DB_RECOVER_AREA.

    today i saw archives created in these two places.

    can a database cause two spfiles. and work on them?

    can I remove a spfile to /dbs location.

    pls give me suggestion to remedy this

    Thank you and best regards.

    785092 wrote:
    Hi all

    I have a data base (Oracle 10 g 10.2.0.1.0) on windows 2003 server. yesterday, I put the database in archivelog mode. When I ask spfile location displayed in the location ORACLE_HOME\dbs.
    but when I created pfile using the spfile she is created at the location ORACLE_HOME\database. and there is also an another spfile. I put the log_archive_dest to one location other than flash_recovery_area in pfile, but it is to show the DB_RECOVER_AREA.

    today i saw archives created in these two places.

    can a database cause two spfiles. and work on them?

    can I remove a spfile to /dbs location.

    pls give me suggestion to remedy this

    Thank you and best regards.

    Show us the cut and paste the sql prompt, the output display,

    show parameter archive
    show parameter spfile
    

    Under Windows, the database file is the work one, dbs is designed for * nix systems. Then a former will work and is supposed to be used by oracle. Show us the output of the commands above so that we can see exactly what is happening.

    Aman...

  • Oracle 10g on Windows Vista

    Hello

    I installed Oracle 10 g on Windows Vista-based computer (on the laptop) and by running SQLPLUS, I am getting error below:

    SP2-1503: failed to initialize the Oracle call interface
    SP2-0152: ORACLE does not work properly

    But when I restart my laptop, I can connect once but if I try to connect the next time or after a certain time of commissioning, I'm having this problem.

    Any idea?

    Onkar

    Hello
    Can you try disabling the security policy (restrictions of the user) that comes with windows vista and then try again. Use the following document

    http://www.mydigitallife.info/2006/12/19/turn-off-or-disable-user-account-control-UAC-in-Windows-Vista/

    Salman

  • Activate the oracle 10g on windows 2003 R2 X 64 edition to address the memory 8 GB

    We use the Oracle 10 g R2 on Windows 2003 R2 x 64 standard edition. Lately, we have improved the system memory of 4 GB to 8 GB. Windows detects the memory as it is (8 GB), but oracle does not see the RAM 8 GB. How can we ovecome problem.

    Best regards
    Murat CAKIR

    What you actually do is since you're 10gr 2, you can use the spfile. Increase the SGA_MAX_SIZE SGA_TARGET (if you want to give control to the Oracle itself) in the spfile and bounce the database.

    alter system set SGA_MAX_SIZE = 6G scope=spfile;
    alter system set SGA_TARGET = 6G scope=spfile;
    shutdown immediate;
    startup;
    show parameter sga;
    

    6G could be changed depending on what type of applications which allocates RAM for the operating system, you already have on your operating system.

    Hope that helps.

    Ogan

  • Oracle 10g database export

    Hello
    I installed oracle 10g on Windows 2003 Server R2.
    Now I want to export my database using Enterprise Manager, but I'm stuck at the first step when I entered the username and password of the user of the machine, well me as 'Administrator' password is annoying knowing that I open windows with that user.

    Hi, this is the host credentials and you must configure it. Follow these steps:

    go heart Control Panel-administrative tools-local security-online local policy online online fonts-online user rights => select connection as a batch and then add your users (for example, administrator). Then try again

  • Oracle 10g to install on Windows server 2008 R2 (6.1)

    Hi all

    I am trying to install Oracle 10 g on windows Server2008 R2 (6.1), but it gives an error that OS is not supported. I tried to install below version.

    Oracle Database 10g Release 2 (10.2.0.4.0)
    Enterprise/Standard Edition for Microsoft Windows Vista x 64, Windows Server 2008 x 64,
    Microsoft Windows Server 2008 R2 x 64, Windows 7 x 64

    But it fails with the error that OS version 6.1 is not supported. On the download page, does it say for 10.2.0.5 patch of My Oracle support for windows server 2008 R2, I patch p8202632_10205_MSWIN - x 86-64 but it requires an oracle pre-installed home.

    So, how can I install Oracle 10 g 10.2.0.4 don't settle and the patch requires a previous installation?

    The reason why I want to install Oracle 10 g is our Java application is running in production on JDK 1.4 and Oracle 11 g provides not for JDK 1.4 JDBC driver, there is a JDBC driver for Oracle 11 g that can work with JDK 1.4?

    Thanks in advance for the help.

    Best regards!

    Irfan

    simpler is to use IgnoreSysPrereqs - key to avoud system check.
    more complex - locate the file oraparam.ini under your dstributive db installation directory and edit the string

    Windows = 5.0, 5.1, 5.2, 6.06.1

  • Is Oracle 10g compatible with windows 2008?

    Hi all

    Is Oracle 10g compatible with windows 2008?

    What are the oracle 10g of the OS compatible with? It is compatible with the VMware environment too?

    Concerning
    Arun

    user12273523 wrote:
    Hi all

    Is Oracle 10g compatible with windows 2008?

    Yes

    What are the oracle 10g of the OS compatible with? It is compatible with the VMware environment too?

    Please check

    http://www.Oracle.com/technology/software/products/database/index.html

    Concerning
    Rajesh

Maybe you are looking for