SQL*Net Client for Oracle 8i/9i ?

Hi..All,
Where do I download just the SQL*NET client for ORacle 8i/9i. ?
Regards

I have the same question: is there a stand-alone
installer for SQL*Net?No.
>
I need this for a Windows 2003 Server x64 platform.
The link provided just goes to the client, which is
far too large to transfer over my VPN connection to
a remote host.The alternative is the 'instant client'. You MIGHT be able to use that.

Similar Messages

  • How do I get SQL*Net Client for Win95?

    Specifically, which software package comes with the SQL*Net Client for Windows 95?

    Any of the products that requires a client side installation will include it. Things like the server will also normally include a client side instalation kit. The JDBC drivers do not come bundled with a client (not when downloaded from technet at any rate).

  • SQL*NET에서 CLIENT IP를 이용하여 CONNECT를 제한하는 방법(protocol.ora)

    제품 : SQL*NET
    작성날짜 : 2005-07-05
    SQL*Net을 통해 listener에 접속할 수 있는 Client Node를 제한하는 방법
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    SQL*Net을 사용하면서 특정한 Client Node의 접근을 제한할 수 있으며,
    이 기능은 Oracle V7.1이상에서 적용을 할 수가 있습니다.
    Configuration은
    ~ 8i:
    $ORACLE_HOME/network/admin/protocol.ora에 설정합니다.
    9i: $ORACLE_HOME/network/admin/sqlnet.ora file에 설정합니다.
    변수 지정의 예;
    1. tcp.validnode_checking = yes
    tcp.invited_nodes=( 152.68.18.73 )
    이 경우는 오직 152.68.18.73 Node의 사용자만 접속을 할수 있으며,
    그외의 Node에서는 접속이 거절됩니다. (ora-12537 발생) 여기서 조심할
    사항은 반드시 자기 자신의 IP를 invited_nodes에 등록해줘야 합니다.
    2. tcp.validnode_checking = yes
    tcp.excluded_nodes=( 152.68.18.73 )
         이 경우는 152.68.18.73 만 접속이 거절되며, 그외의 다른 machine
    에서는 접속이 정상적입니다.
    3. tcp.validnode_checking = yes
    tcp.invited_nodes = (152.68.19.210, 152.68.18.74)
    tcp.excluded_nodes = (152.68.18.73)
         152.68.19.210, 152.68.18.74 Node의 사용자는 Listener에 접속을
    할 수 있고, 152.68.18.73 Node의 사용자는 접속을 못합니다.
    단, 하나 이상의 ip address 를 나열할 때는 single line 에 기록해야
    합니다.
    이렇게 설정 후에는 listener를 재기동합니다.

  • How can I connect oracle without installing its SQL*Net client?

    How can I connect oracle without installing its SQL*Net client?

    Pls suggest, any possible solution, i cross checked from below link, and tried to install the instant clients, but
    http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html
    its showing me error of "This application has failed to start because OCI.dll was not found. Re-installing the application may fix this problem."
    Let me know if you have any thing on this.

  • SQL*NET V1 FOR APPC/LU6.2 TEST

    제품 : SQL*NET
    작성날짜 : 1995-06-05
    Olivetti system에서 SQL*Net V1 for APPC/LU6.2 test 결과입니다.
    customer : 한국컴퓨터
    Test System : Olivetti UNIX System 2대
    O / S version : SVR4 2.4
    1. Server Install
    1.1 Shared Memory Parameter
    SHMMAX8388608
    SHMSEG6
    SHMMIN1
    SHMMNI100
    1.2 Kernel Parameter
    SVMMLIM0x7FFFFFFF
    HVMMLIM0x7FFFFFFF
    SFSZLIM0x7FFFFFFF
    HFSZLIM0x7FFFFFFF
    파라메터가 이보다 적으면 oracle kernel을 만들면서 에러가 발생함.
    1.3 Oracle Server Install 시 relink option 에서 Yes 선택.
    LU6.2를 사용하기 위해서 반드시 해주어야 함.
    1.4 Version이 2.3이하인 경우 kernel 생성시 에러 발생.
    2. SQL*Net Install
    2.1 Transaction Program 을 Generate.
    $ $ORACLE_HOME/bin/gentpn ORACLE_SID Max_RU_size Min_RU_size
    RU_size는 256 에서 1024 범위내에서 set 해야함.
    ex) $ gentpn ORA7 512 512
    generate 후 TPORA7 이라는 Transaction Program 이 generate
    되었다는 message가 떨어짐
    TP name은 ORACLE_SID 앞에 TP가 붙어서 생성.
    generate후 $ORACLE_HOME/lu62/server directory 에 TPORA7
    이라는 binary file이 생성.
    2.2 TPORA7을 APPC Services에 등록.
    sysadm tool을 이용하여 등록.
    TP_Name : TPORA7
    TP_Filespec : /home/oracle7/lu62/server/TPORA7
    3. Connection.
    3.1 Connect String
    - @L:remote_LU_name::local_LU_name:mode_name:TP_name
    remote_LU_name, local_LU_name, mode_name 의 value는 APPC
    service에 등록이 되어있슴.
    ex) $ sqlplus scott/tiger@L:BBBBBBBB::AAAAAAAA:CCCCCCCC:TPORA7
    4. 특이사항.
    -. gentpn시 Max_RU_size와 Min_RU_size 256으로 set:
    sqlplus에서 접속시 SQL> prompt가 떨어지지 않고 waiting 상태.
    반면 상대방 remote system에 session 은 연결됨.
    -. gentpn시 Max_RU_size와 Min_RU_size 512으로 set:
    sqlplus에서 접속은 됨.
    그러나 512를 넘어서는 데이타일경우에는 ORA-6412 에러가 떨어지면서
    disconnect 가 되어버림. (ORA-6412:bad read length)
    remote에서 select 된 데이타는 local system 까지는 가져옴.
    data size 는 548.
    sqlplus 에서 array size를 '1'로 하면 정상적으로 작동.
    ex) 1). select empno, ename from emp; ----> 정상
    2). select * from emp; ----> disconnect
    3). select empno, ename, hiredate, sal,
    mgr, comm, deptno
    from emp; ----> disconnect
    4). set array 1
    select * from emp; ----> 정상
    -. gentpn시 Max_RU_size와 Min_RU_size 1024으로 set:
    데이타 사이즈가 1024를 넘어설경우 동일한 현상발생.

    great to hear some one talking of sql*net for dos
    hi
    you can't connect from v1 to net8
    you can conn from v1 to v2
    don't start net8
    on the server
    start sql*net 2.?? at the server
    hope this helps
    I need drivers for sql*net on dos
    where can i down load these from
    thnkx
    Adrian Maier (guest) wrote:
    : Here is my problem:
    : I have some DOS applications written for Oracle 6 for DOS.
    : I want that these connect to an Oracle Server using SQL*Net.
    : For the start, I want to connect to the server with sqlplus,
    : from DOS. For testing I have a small TCP/IP network with two
    : computers:
    : 1. the SERVER, running Linux(Debian 2.1) and Oracle 8.0.5
    : 2. the CLIENT, running MSDOS, PSNFS as networking software
    : and SQL*Net Client v1 for DOS.
    : Question: Is this version of SQl*Net client compatible with
    : Net8 which comes with Oracle8?
    : From win95 I've bben able to connect to the server, so I
    : believe the serevr is correctly configured. When I'm trying
    : to connect from DOS with sqlplus, the ethernet card's leds
    : blink two or three times, which means that some data is
    : transmitted through network. After that, sqlplus waits for
    : an indefinite period of time.
    : If I stop the listener, sqlplus generates the error ORA-06136
    : and asks for a new username. If I don't stop the listener,
    : sqlplus remains blocked.
    : In SQLNet documentation I've found:
    : "ORA-06136: Error during connection handshake.
    : Cause: The destination server was unable to obtain enough
    : information to complete the connection.
    : Action: Check that the configuration of the server is correct,
    : blah, blah .... "
    : I think that the server might not understand this version
    : of client, but Net8 should be "backward compatible"!
    : SQL*Net client v1 was the only DOS version I could find.
    : Are there any other newer DOS SQl*Net clients available?
    : If you have any idea about what could I do, please let me know.
    : Best regards,
    : Adrian Maier
    : [email protected]
    null

  • Clients for Oracle XE?

    I have downloaded and installed oracle express edition on my windows xp. I am using it to learn Oracle. I see that you can execute queries through the web interface using the menu SQL commands. Also you can connect to it using 'SQL command line' program.
    I am wondering is there some more user friendly client with which I can connect to the Oracle database and execute queries and pl/sql?
    I saw something like iSQL*Plus but I do not know from where to download it?
    I downloaded files from here
    http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html
    but they are only zips with dlls and jars in them. I do not know what to do with them?
    How can i download and install this iSQL*Plus or other user-friendly client for Oracle?
    I know my question is probably very lame but thanks in advance... :)

    Any client that can interact with Oracle's Networking protocol - often called SQL*Net or Oracle Networking - can be used. In the past it was necessary to download this and use a complex install and configuration to get Oracle Networking up and running.
    The 'Instant Client' is mainly a much simplified Oracle Networking component that sits on the database 'client' machine and acts as a bridge between most 'Oracle Networking'-aware ap[plications ans the database.  As such it is an 'instant setup for the client', and it is easy to understand your confusion.
    In fact, any ODBC aware client will generally work if the correct ODBC configuration and drivers are obtained - these will 'talk to the database' perhaps using the 'Instant Client'.   Thus, even MS Access or Excel could be used. 
    My personal preference is SQL*Plus, followed closely by SQL Developer.  SQL Developer is GUI oriented even though it still requires typing, rather than painting, the SQL statements. 
    However, becoming comfortable with typing the commands, in conjunction with books like the O'Reilly 'Mastering Oracle SQL', unleashes a [u]lot more power than typical 'graphical filters and joiners' are able to accomplish. The Oracle SQL language is absolutely amazing, if one takes the time to learn it..
    Message was edited by:
    forbrich
    After all that, I forgot to include the links: http://www.oracle.com/technology/products/database/sql_developer/index.html and http://www.oreilly.com/catalog/mastorasql2/

  • Want to download only client for Oracle 8.1.7 for linux

    Where can one find client for Oracle 8.1.7 for linux which we can download ? Oracle database is on another platform.
    Thanks

    The Database, Management and Integration server and client are all included in the one 8i download. The installer gives you the choice of just installing the client tools.

  • What sql will be for oracle for FOR XML AUTO, XMLSCHEMA, ELEMENTS XSINIL

    Hi all,
    I have developed an application which supports both database sql server and oracle. I am using sql
    select * from test FOR XML AUTO, XMLSCHEMA, ELEMENTS XSINIL, ROOT('test')
    to fetch records in xml format from SQL Server.
    I want to know what sql will be for oracle to get same result set in xml format.
    Thanks in advance.
    Edisphere software
    Vijay singh

    here is one way...
    declare
      qryctx         DBMS_XMLquery.ctxType;
      v_message CLOB;
      v_sql          VARCHAR2(400);
    begin  v_sql  := 'SELECT * FROM DUAL';
      qryctx := DBMS_XMLquery.newContext(v_sql);
      v_message :=  DBMS_XMLquery.getXML(qryCtx);
      DBMS_XMLquery.closeContext(qryCtx);
    dbms_output.put_line(v_message);
    end;
    Sample  output is:
    ===========
    <?xml version = '1.0'?>
    <ROWSET>
       <ROW num="1">
          <DUMMY>X</DUMMY>
       </ROW>
    </ROWSET>Validate it against a schema
    xmldoc XMLTYPE;
    v_xml_schema varchar2(4000) :='your schema definition';
      xmldoc := XMLTYPE(v_xml).createSchemaBasedXML(v_xml_schema);
      xmldoc.schemaValidate();Edited by: user130038 on Sep 20, 2011 6:00 AM

  • Where can I download this SQL-Net Client software 8.1.6.3.8

    What is the most current version of the SQL-Net Client software drivers that we should be using on our Windows Clients to hit our 8.1.6.3 server? Currently we are using 8.1.6.0.0 (per tnsping). According to the certification matrix, looks like 8.1.6.3.8, (right?)
    Destination : Windows 98,NT,2000,XP Clients
    Second, where can I download this SQL-Net Client software? And please don't tell me I have to download the entire server (I hoping, but if I do where?).
    Thanks,
    Jason
    [email protected]

    I think you might be running into the issue that:
    1)  The Yoga 2 Pro does not have a DVD player built-in, and therefore they don't include DVD playback software
    2)  Windows 8 (or 8.1) no longer includes the codecs to play DVDs and such.  You have to upgrade to the Professional edition of it.  (silly, yes).
    I would personally just grab VLC Player from videolan.org, and use that.  Works perfectly fine, and it's free.
    (Did the external USB DVD not come w/ software?  That's actually strange).

  • Building JAX-WS Clients for Oracle Cloud Applications

    Hello,
    We are looking for a tutorial on how to build JAX-WS clients for Oracle Cloud Applications using Eclipse and OEPE.
    Do you know if there is any document about this, or any document that can help us on this task.
    Thanks and regards,
    Gustavo.

    A JAX-WS web service client with OEPE would be the same for a cloud service.
    https://docs.oracle.com/cd/E15315_09/help/oracle.eclipse.tools.weblogic.doc/html/webservices/start.html
    For developing for Oracle Cloud refer
    https://apex.oracle.com/pls/apex/f?p=44785:24:100395514147349::NO::P24_CONTENT_ID%2CP24_PREV_PAGE:7026%2C2

  • IS there a Thin install SQL*NEt client only?

    Is there something besides downloading the whole monster 9i for just a client install that I can do to get SQL*Net onto my linux box for Tora so I do not have to reboot into Windows to use TOAD?

    Is there something besides downloading the whole monster 9i for just a client install that I can do to get SQL*Net onto my linux box for Tora so I do not have to reboot into Windows to use TOAD?

  • Net client for 9i db for xp and nt workstations

    I would like to get the 9iclient for xp and nt workstations. Currently have 8.0.5 Net Client but want to upgrade. Where can I find to download?

    The link to download is on this page:
    http://www.oracle.com/technology/software/products/oracle9i/index.html

  • PL/SQL New Features for Oracle 10g

    Hi,
    If anybody asks what are the new features in PL/SQL for Oracle 10g version, what would be the answer?
    Thanks,
    Mrinmoy

    user3001930 wrote:
    Hi,
    If anybody asks what are the new features in PL/SQL for Oracle 10g version, what would be the answer?
    Thanks,
    MrinmoyI would say: Who cares about 10g features nowadays. And they I would tell them about the new 11g features (that I remember).

  • Reg: SVN client for oracle linux

    Hi,
    can u plz provide some link to download and instal SVN CLIENT in ORACLE LINUX.
    Thanks,
    Nitesh

    They have installed the wrong Linux distro on that desktop.
    A server o/s does not provide default support for desktop h/w (like webcams, touchpads, latest video chipsets, etc). Instead, it provides support for server h/w and server environments.
    What you should be looking at is Ubuntu 12.10 or 13.04 (see http://www.ubuntu.com/). It is arguably the best Linux desktop distro. I have been using it for over 10 years now doing development and support. Prior to that I used Fedora, but it never did provide a smooth install and out-of-the-box driver support for desktop h/w. And I doubt that this has changed to be better than what Ubuntu supports and provides.
    If you do use Ubuntu, consider the 64bit version if your are developing s/w for 64bit Linux - makes development and deployment easier as there are some differences between the 32bit and 64bit kernels.
    You will also be able to install 64bit Oracle XE on your desktop (if you do get to that stage and need assistance in getting the XE Redhat RPM installed, post a message on the database general questions forum).

  • Instant client for Oracle 8.1.6

    Hi, I need some previous version of instant client for ODBC. Current version needs at least Oracle 8.1.7. Is it possible to download ODBC instant client with support for 8.1.6?
    Thanks
    Paja

    In my testing, the 10g full client will only connect to 8.1.7.4 and later databases. I beleive the 10g Instant Client would have the same restrictions.
    If you have an 8.1.6 back end, you would need to install a 9i full client to connect or to purchase a third-party wire-protocol ODBC driver that supports 8.1.6. The Instant Client is a new 10g feature.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

Maybe you are looking for

  • Strategy Group 25

    Dear experts, I am using strategy group 25 (Make to order with variant configuration).i have some variant materials and also some non variable materials i.e. sub assemblies/Roh Scenario: Created a sales Order .MRP run has been carried out . Procureme

  • Google Type of Search in i-Procurement

    Is it possible to have a Google type of search/dynamic search (not the standard "%" way of searching) in oracle i-Procurement module. When the user enters the key word the system should automatically give the drop down list with the related items. As

  • Get-Acl where username has access to folders and SubFolders

    Hi, I have a script that works only on the path that is defined, but in my environment I have this path with plenty of subfolders underneath this path. How do I get the ACL permission of the user in the SubfolderS? $Path = Get-Acl -filter * -path \\S

  • Problem with the "lenovo Rescue And Recovery" system. (lenovo 3000 N500).

    hi! yesterday i ran Kaspersky virus scan tool and it detect file named "tvtfilter.sys" as suspicious file and thefore delet it. today when i was restart my laptop, i got error message on startup that say: Microsoft Visual C++ Runtime Library Runtime

  • Sync of iPhone Calendar over WebDAV?

    My question is: do you think that Apple might offer a possibility to sync the iPhone Calendar directly to a .ics-file hosted on a WebDAV server in future versions of the firmware? We use this method to have a group calendar for users of Windows (via