Looking for SQL*NET Proxy

Hello,
i'm looking for the SQL*NET proxy because i want to integrate into out firewall software. I'm looking for a contact too. Nobody knows anything about this product.
With best regards
Claus Rosenberger

despite that I do not know the type of the Firewall , I was able to adjust Oracle with Microsoft ISA server as follows :
go to oracle server on Windows 2000
open system variables
insert the following variable : USE_SHARED_SOCKET
make its value : TRUE
restart server
this variable will make you able to share ports on windows platform ,, this is essential because Oracle servers replies back on any port randomly when trying to connect to it ,, you can track this by enabling tracing for listener.
on firewall you will need to redirect connection received by the firewall on specific port on the firewall and NAT it to Oracle server IP/port .
this is proven work
on UNIX you do not need this beacsue Unix natively share ports.

Similar Messages

  • Looking for SQL*Net for Windows 95

    I have Brio client installed on my laptop running Windows 98. I am looking for SQL *Net for Windows 95, to connect to an Oracle database running on Solaris.  Where can I find it.
    How do I connect? I tried MS ODBC and it did not work.
    Please help
    My email address is [email protected]
    Thanks in advance

    despite that I do not know the type of the Firewall , I was able to adjust Oracle with Microsoft ISA server as follows :
    go to oracle server on Windows 2000
    open system variables
    insert the following variable : USE_SHARED_SOCKET
    make its value : TRUE
    restart server
    this variable will make you able to share ports on windows platform ,, this is essential because Oracle servers replies back on any port randomly when trying to connect to it ,, you can track this by enabling tracing for listener.
    on firewall you will need to redirect connection received by the firewall on specific port on the firewall and NAT it to Oracle server IP/port .
    this is proven work
    on UNIX you do not need this beacsue Unix natively share ports.

  • Looking for SQL*Net patch version 2.3.3.0.3

    Hello friends:
    In order to migrent a Oracle 7.3 database to a Oracle 8i DB I need a SQL*Net patch version 2.3.3.0.3. Would you please tell me where can I get it?
    Thank a lot!
    Zhang Weidong

    Hello friends:
    In order to migrent a Oracle 7.3 database to a Oracle 8i DB I need a SQL*Net patch version 2.3.3.0.3. Would you please tell me where can I get it?
    Thank a lot!
    Zhang Weidong

  • Looking for SQL Solution to Very Unique Problem

    Hello,
    New here, thanks. I have what I think is an interesting problem. I really don't want to post it because the background and explanation is rather lengthy. It has to do with one table that holds some general info; there is a unique numeric primary key. Associated with this table are three different tables identical in structure, having only two fields: the primary key, and a code. The three tables correspond to test results performed by a different individual. For each entry in the main table, where there is one and only one entry for the primary key, the same test could have been performed one, two, or three times. So there could be one, two, or three different sets of codes describing the test results. Only one set of the test result codes is the correct one. And there is a hierarchy that determines which is the correct set of codes. Say the main table is called LR. LR is linked to three different tables, each of which has the exact same structure. The relationship between LR and each of these three tables is one to many. Call the three tables that hold test results SCR, QC, and PT. Some assumptions can be made. In the table LR there are two flag fields: Q_STATUS and P_STATUS whose values each are either Y or N. If P_STATUS=Y, then we are guaranteed a set of test result codes in the table PT, and this set of codes is always the final word; always the correct results. If P_STATUS=N but Q_STATUS=Y, then we are guaranteed to have a set of test result codes in the table QC, and if this is the case, then this set of codes is the final word. Now if P_STATUS=N and Q_STATUS=N, then we know there is a set of test result codes in the SCR table, we know there is one and only one set of test result codes, hence this set is the correct one. Another assumption that can be made, for any row in the LR table, there will ALWAYS be at least one set of test result codes in the SCR table. There may or may not be a set of test result codes in the QC and PT tables, and the flags in the LR table indicate if either is the case. Hope this makes sense so far. For many years I have been trying to figure out one SQL statement that will return the correct set of test result codes. Often I have to analyze data that relies on the results of a test (e.g. how many tests had the code 850 in the year 2011?). That's a simple example, but you get the idea. Since I have to determine which set of test result codes is the correct one to use, I've always had to rely on writing a PL/SQL procedure anytime I have to work with test result codes. I tend to use a conditional: IF (P_STATUS=Y) THEN /*the right answer is in the table PT*/ ELSIF (Q_STATUS=Y) THEN /*the right answer is in the table QC*/ ELSE /*the right answer is in the table SCR*/. I have a document with a little more detail, and an example. Or maybe this makes absolute sense to someone out there and they know exactly what to tell me! And let me say this is not a critical issue for me. I've been searching for this SQL statement for about 10 years now. I consider myself pretty proficient with SQL, but definitely not a guru. I'm thinking the solution I'm looking for might rely one some kind of full outer join on all three of the tables SCR, QC, and PT and then if those results could be linked to the LR table, and then maybe in the SQL statement use of DECODE might do it. I want one SQL statement that will return me the correct set of testing result codes. Hope this all makes sense. To anyone who has read it I thank you very much. I would be very happy to provide my document with further explanation and an example. Any response is greatly appreciated. Guess I have to keep coming back here now to see if anyone responded. Oh, I might add that we use a very old version of Oracle (8.0.3) but, if all goes according to plan, we should migrate to the most current version within the next year.
    Thanks,
    John Cardella
    Edited by: BluShadow on 21-Feb-2012 13:52
    Email address removed for your own benefit, unless of course you'd like spam bots to pick it up and send you lots of rubbish?

    Why do I keep three tables. Each sample that is evaluated is always screened by what I will call a "tech." Every so many cases the test must be repeated for quality control. If the findings of the initial testing or of a quality control test are found to contain abnormal results, then the test must also be repeated, this time looked at by a doctor. So I have what I refer to as the "main" table; the one that holds final data, which in my example I explained the two "flag" fields that indicate if the test was repeated. Every time a test is evaluated it is done by the same person, and the findings of an individual testing, or screening, are a set of test result codes. There is the "main" control table which I have called LR in my example. The reason I have the other three tables: one is used to store the test results of the initial screening (always done); one is used to hold the test results of a quality control case (may or may not be done); and one is used to hold the test results of an abnormal case that was screened by a doctor (may or may not be done). There is a separate table for each individual who may have done a screening.
    Let us consider the results of just one case. In the table LR we have something like this:
    | KEY | P_STATUS | Q_STATUS |
    | 100 | Y | Y |
    By default, for any entry in the LR table there is always a set of codes in the SCR table. We know a quality control was performed because QC_STATUS=Y, and we know it was screened by a doctor because P_STATUS=Y. So we would have three different sets of findings, each in one of the three tables:
    SCR TABLE: QC TABLE:
    | KEY | CODE | | KEY | CODE | | KEY | CODE |
    | 100 | 014 | | 100 | 13R | | 100 | 13R |
    | 100 | 13R | | 100 | 150 | | 100 | 170 |
    | 100 | 150 | | 100 | 170 | | 100 | 180 |
    | 100 | 160 | | 100 | 190 |
    The values in the three tables represent the findings of three different people who screened the test sample. Now suppose I combined all the data, I would suppose it would look something like this:
    | KEY | P_STATUS | Q_STATUS | KEY | CODE | KEY | CODE | KEY | CODE |
    | 100 | Y | Y | 100 | 014 | null | null | null | null |
    | 100 | Y | Y | 100 | 13R | 100 | 13R | 100 | 13R |
    | 100 | Y | Y | 100 | 150 | 100 | 150 | null | null |
    | 100 | Y | Y | 100 | 160 | null | null | null | null |
    | 100 | Y | Y | null | null | 100 | 170 | 100 | 170 |
    | 100 | Y | Y | null | null | null | null | 100 | 180 |
    | 100 | Y | Y | null | null | null | null | 100 | 190 |
    Since P_STATUS=Y I would want the result set returned to be {13R, 170, 180, 190}.
    But suppose P_STATUS=N and Q_STATUS=Y then I would want the result set to be {13R, 150, 170}
    And if P_STATUS=N and Q_STATUS=N then I would want {014, 13R, 150, 160}
    Of all of the sets of test results codes, only ONE is ever the final word (i.e. the right answer).
    So what I was trying to do is find a query that would give me what I want. And my apologies if there is a major design flaw. I always thought it was not that bad. But then I am no SQL guru either.
    To anyone who has read on further my most humble thanks. I really did not mean to waste anyone's time or be a pain in the ass.
    Thanks Again,
    -JC

  • Looking for SQL*Loader sample file

    Hi all,
    I'm looking for a sample SQL*Loader file that I could use to populate the Bank Statement Interface in Cash Management (Receivables Lockbox Receipts) - specifically CE_STATEMENT_HEADERS_INT_ALL and CE_STATEMENT_LINES_INTERFACE.
    I'm trying to put together an interface from Bank of America's Lockbox into our Oracle Receivables system (11.0.3), and don't have access to anything from which to start from.
    Thanks in Advance,
    Cam

    check it
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch10.htm#1656
    kuljeet pal singh

  • Looking for SQL for DBAs Book

    I am a DBA who has rudimentary knowledge of SQL. I would like to know if there is a book like 'SQL for DBAs'. Last week, i had a requirement to find all tables without PKs in a schema. I could find it only after searching oracle forums. Now, i think, i should at least be an intermediate user of SQL before being an DBA. Hence, looking for a book to enhance my SQL skills.

    In order to enhance your skills, I can recommend you to bring regular visits to this forum (as you already do) and the Database-General forum, where lots of DBA's hang out.
    Other useful sites: http://asktom.oracle.com
    Also I recommend all books written by Tom Kyte.
    Oracle documentation is online:
    http://www.oracle.com/pls/db102/homepage
    http://www.oracle.com/pls/db112/homepage
    http://tahiti.oracle.com
    Read the concepts guide and the database administration guides

  • Looking for SQL 2005 Backwards Compatibility ((( 8.05.2309 )))

    We need to find the install for SQL 2005 Backwards Compatibility 8.05.2309   64 bit.
    Can someone help with locating the install for this?
    Thanks in advance for your assistance
    Ed

    Ed, would SQL Server 2005 Backward Compatibility Components version 8.05.2312 work for you?
    http://www.exactsoftware.com/docs/DocView.aspx?DocumentID=%7B21509a73-9043-47d8-854c-318a3a35b585%7D

  • Looking for SQL to Display Rows as Columns in a View

    Hi!
    I am using Oracle 10g (10.1.0.4.0) 64 bit on Red Hat Enterprise Linux AS release 3.
    I have the following tables:
    Table A
    A_ID number (primary key)
    Table B
    B_ID number (primary key)
    B_NAME varchar2
    B_DESC varchar2
    Table C
    C_ID number (primary key)
    B_ID number (foreign key to table B)
    A_ID number (foreign key to table A)
    ORDERING number
    A row in table A can have from 0 (zero) to 3 (three) rows in table C associated with it.
    I am trying to make a view that displays A.A_ID and its associated rows from table C as a single row. For example, the following query:
    select A.A_ID, C.B_ID, B.B_NAME, B.B_DESC, C.ORDERING
      from C, B, A
    where C.A_ID = A.A_ID
       and C.B_ID = B.B_IDYields the following results:
    A_ID B_ID B_NAME B_DESC ORDERING
    100   10 A      One    1
    100   20 B      Two    2
    100   30 C      Three  3I would like to get the following:
    A_ID B_NAME_1 B_NAME_2 B_NAME_3
    100 A        B        CThanks (in advance :-),
    Avi.

    SQL> CREATE TABLE dt_test_a(a_id number)
      2  /
    Table created.
    SQL> CREATE TABLE dt_test_b(b_id number, b_name varchar2(1),b_desc varchar2(10))
      2  /
    Table created.
    SQL> CREATE TABLE dt_test_c(c_id number, b_id number, a_id number, ordering number)
      2  /
    Table created.
    SQL>
    SQL> insert into dt_test_a values(100)
      2  /
    1 row created.
    SQL> insert into dt_test_b values(10, 'A','One')
      2  /
    1 row created.
    SQL> insert into dt_test_b values(20, 'B','Two')
      2  /
    1 row created.
    SQL> insert into dt_test_b values(30, 'C','Three')
      2  /
    1 row created.
    SQL> insert into dt_test_c values(1, 10, 100, 1)
      2  /
    1 row created.
    SQL> insert into dt_test_c values(2, 20, 100, 2)
      2  /
    1 row created.
    SQL> insert into dt_test_c values(3, 30, 100, 3)
      2  /
    1 row created.
    SQL>
    SQL> SELECT
      2     a.a_id,
      3     DECODE(c.ordering, 1, b.b_name) b_name_1,
      4     DECODE(c.ordering, 2, b.b_name) b_name_2,
      5     DECODE(c.ordering, 3, b.b_name) b_name_3
      6  FROM
      7     dt_test_a a,
      8     dt_test_b b,
      9     dt_test_c c
    10  WHERE
    11     a.a_id = c.a_id
    12  AND
    13     b.b_id = c.b_id
    14  /
         A_ID B B B
          100 A
          100   B
          100     C
    SQL>
    SQL> SELECT
      2     a.a_id,
      3     MAX(DECODE(c.ordering, 1, b.b_name)) b_name_1,
      4     MAX(DECODE(c.ordering, 2, b.b_name)) b_name_2,
      5     MAX(DECODE(c.ordering, 3, b.b_name)) b_name_3
      6  FROM
      7     dt_test_a a,
      8     dt_test_b b,
      9     dt_test_c c
    10  WHERE
    11     a.a_id = c.a_id
    12  AND
    13     b.b_id = c.b_id
    14  GROUP BY
    15     a.a_id
    16  /
         A_ID B B B
          100 A B C
    SQL>
    SQL>
    SQL> insert into dt_test_a values(200)
      2  /
    1 row created.
    SQL> insert into dt_test_b values(40, 'A','One')
      2  /
    1 row created.
    SQL> insert into dt_test_b values(50, 'B','Two')
      2  /
    1 row created.
    SQL> insert into dt_test_b values(60, 'C','Three')
      2  /
    1 row created.
    SQL> insert into dt_test_c values(4, 40, 200, 3)
      2  /
    1 row created.
    SQL> insert into dt_test_c values(5, 50, 200, 2)
      2  /
    1 row created.
    SQL> insert into dt_test_c values(6, 60, 200, 1)
      2  /
    1 row created.
    SQL>
    SQL> SELECT
      2     a.a_id,
      3     MAX(DECODE(c.ordering, 1, b.b_name)) b_name_1,
      4     MAX(DECODE(c.ordering, 2, b.b_name)) b_name_2,
      5     MAX(DECODE(c.ordering, 3, b.b_name)) b_name_3
      6  FROM
      7     dt_test_a a,
      8     dt_test_b b,
      9     dt_test_c c
    10  WHERE
    11     a.a_id = c.a_id
    12  AND
    13     b.b_id = c.b_id
    14  GROUP BY
    15     a.a_id
    16  /
         A_ID B B B
          100 A B C
          200 C B A

  • Sql*net for Macintosh

    Hello,
    i have some clients on macintosh, and i'm looking for Sql*net
    for macintosh. Can somebody tell me where i can find this
    product ?
    Thank's in advance

    What did you end up doing?

  • 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

  • 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.

  • Version number of SQL*NET

    We have recently purchased a new data warehousing project. For this product we need to know what version of sql*net we are running. I have looked on the system but I am fairly new to Oracle. Can someone tell me where I can get the version number for sql*net. I am pretty sure we are running version 2 or higher. Thanks for your help.

    You can try to use Oracle Universal Installer to see which version of SQL*NET or NET8 network product you have installed.

  • About wait SQL*Net

    Hi;
    I have huge wait for SQL*Net more data from dblink,Anyone has idea why this parameters rise? And how i can decrease it?
    Thanks alot

    hi,
    ckeck these links it might be useful for you...
    [http://download.oracle.com/docs/cd/B10501_01/server.920/a96536/apa5.htm]
    [http://74.125.153.132/search?q=cache:y-wXM02DSCoJ:nocoug.org/download/2006-08/unit7_sqlnet.ppt+huge+wait+for+SQL*Net+more+data+from+dblink+in+oracle&cd=1&hl=en&ct=clnk&gl=in]
    regards,
    Deepak

  • In preferences default location for .sql files doesn't work

    1.1.2.25 I go into preferences and set the default location to look for .sql files but when I click the open button it uses the sqldeveloper install directory and I have to browse for my folder. This is only on start up, once I have browsed to it one time it holds the location.

    There is an (accepted) feature request at http://htmldb.oracle.com/pls/otn/f?p=42626:39:2786549926729345::NO::P39_ID:3263 asking for this shortcut. Please vote for it to add weight and see it implemented sooner.
    Thanks,
    K.

  • Installing Sql net-easy configuration assistant

    I had installation of Oracle 8.i Server and I have made an installation of all Oracle 8.i Client on my desktop, but it failed before installing the package for Sql net-easy configuration.
    I retry to deinstall and install all Oracle package, but I was unable to reach again the same step.
    How do I install the Sql net easy package, in order to get it available within the Oracles menu in the Window Start menu?
    Thanks
    Roberto

    hi,
    If you are installing D2K on '98 please insure the following:
    1. does the cient machine have orawin95/98 folder?
    2. In orawin95/net80/admin you said you have TNSNAMES.ORA but do you also have SQLNET.ORA with a proper configuration pointing to TNSNAMES.ORA?
    Tushar

Maybe you are looking for

  • How do i make a search bar?

    I am making an app where you can search for fish and then find their information. For example if you 'neon' then the page for the 'neon' fish will be shown in the results or take you directly to the page. How do i do this? Also, how can i monetize my

  • The iOS 6.01 killed the Apple SD reader on my IPad 3 (purchased new in May). What gives Apple? Support phone call useless.

    The iOS 6.01 killed the Apple SD reader on my IPad 3 (purchased new in May). What gives Apple? Support phone call useless. iOS installed today November 3 and dialog box came up say device no longer supported. It's an Apple SD card reader (purchased t

  • How to make SWF in GoLive show in IE in v5, 6 or 8

    I would like to get a Flash file to work in Internet Explorer v5, 6 and 8. I am creating a site and the flash clip won't play in these browsers (but will in IE v7). Does anyone have any ides? Thanks.

  • The parsing engine has encountered a fatal error condition......

    I am creating a new Entitilement Segment. When I sync, I get a parsing exception. The error stack is described below. The same error message is displayed while starting the server. Any help is appreciated. Kumar URI : /contentselectors/GlobalContentS

  • Unknown SMTP host exception...

    Hi all... am a newbie in j2ee...i have to send mails from my application... have written the code...but it gives an error like the smtp host specified, is unknown... can anyone pleaz tell me what r the things to be set up or what r the configurations