Oracle - IIS - Win2K - SP4

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Oracle - IIS - Win2K - SP4

    I installed W2K Service Pack 4. I have Oracle 8.1.7 installed on the server.
    I also have the IIS running as well.. I can connect to my Oracle database
    fine via SQL Plus and the ODBC text works fine. When I try to login to the
    web site using ASP, I get the error:

    Microsoft OLE DB Provider for ODBC Drivers error '80004005'

    [Microsoft][ODBC driver for Oracle][Oracle]ORA-12640: Authentication adapter
    initialization failed


    Also, I did change sqlnet.authentication_services=(NONE)in sqlnet.ora file,
    but then I was unable to start the database. Any suggestion how to fix that?
    If not, How can I remove SP4? I want to go back to SP3..


    Sam Jallad Guest

  2. Similar Questions and Discussions

    1. [Macromedia][Oracle JDBC Driver][Oracle]ORA-01000:maximum open cursors exceeded
      Here is the technote from Macromedia regarding this issue: http://www.macromedia.com/go/tn_17660 Hope this helps!
    2. #13053 [Com]: oci8 error, this kill oracle-prosseces in the oracle-instance.
      ID: 13053 Comment by: gid at gifpaste dot net Reported By: jsun at basefarm dot no Status: Bogus Bug Type: ...
    3. DBI can't connect to ORACLE in Win2k (Apache CGI code), scripts fine.
      My DBI was fine when I use them as perl script, however it gives me error when I use it in CGI, as Can't load...
    4. XP Pro client joins Win2K domain faster than Win2K Pro client
      Any thoughts on why a Win XP Pro client joins a domain faster than a Win 2000 Pro client? The only difference is the client software (ie Win XP Pro...
    5. Win2K - Oracle 9.2.0.1
      Hi Larry, The site I'm currently working at is using this configuration quite successfully. We suffered our first unscheduled downtime today...
  3. #2

    Default Re: Oracle - IIS - Win2K - SP4

    dbDSN = "Provider=MSDASQL;Driver={Microsoft ODBC for
    Oracle};dsn=odbcname;UId=username; Pwd=password;"

    "Mark Schupp" <mschupp@ielearning.com> wrote in message
    news:Om98mNGUDHA.2196@TK2MSFTNGP12.phx.gbl...
    > If you specified that old file versions be backed up when you installed
    sp4
    > then you can uninstall it. If not you'll probably have to do a re-install
    or
    > repair of Windows 2000 and re-apply sp3.
    >
    > What is your connection string?
    >
    > --
    > Mark Schupp
    > --
    > Head of Development
    > Integrity eLearning
    > Online Learning Solutions Provider
    > [email]mschupp@ielearning.com[/email]
    > [url]http://www.ielearning.com[/url]
    > 714.637.9480 x17
    >
    >
    > "Sam Jallad" <sjallad@autosmartcard.com> wrote in message
    > news:%23lJHv4FUDHA.2312@TK2MSFTNGP12.phx.gbl...
    > > I installed W2K Service Pack 4. I have Oracle 8.1.7 installed on the
    > server.
    > > I also have the IIS running as well.. I can connect to my Oracle
    database
    > > fine via SQL Plus and the ODBC text works fine. When I try to login to
    the
    > > web site using ASP, I get the error:
    > >
    > > Microsoft OLE DB Provider for ODBC Drivers error '80004005'
    > >
    > > [Microsoft][ODBC driver for Oracle][Oracle]ORA-12640: Authentication
    > adapter
    > > initialization failed
    > >
    > >
    > > Also, I did change sqlnet.authentication_services=(NONE)in sqlnet.ora
    > file,
    > > but then I was unable to start the database. Any suggestion how to fix
    > that?
    > > If not, How can I remove SP4? I want to go back to SP3..
    > >
    > >
    >
    >

    Sam Jallad Guest

  4. #3

    Default Re: Oracle - IIS - Win2K - SP4

    On Tue, 22 Jul 2003 10:33:12 -0400, "Sam Jallad" <sjallad@autosmartcard.com> wrote:
    >I installed W2K Service Pack 4. I have Oracle 8.1.7 installed on the server.
    >I also have the IIS running as well.. I can connect to my Oracle database
    >fine via SQL Plus and the ODBC text works fine. When I try to login to the
    >web site using ASP, I get the error:
    >
    >Microsoft OLE DB Provider for ODBC Drivers error '80004005'
    >
    >[Microsoft][ODBC driver for Oracle][Oracle]ORA-12640: Authentication adapter
    >initialization failed
    >
    >
    >Also, I did change sqlnet.authentication_services=(NONE)in sqlnet.ora file,
    >but then I was unable to start the database. Any suggestion how to fix that?
    >If not, How can I remove SP4? I want to go back to SP3..
    >
    Changing the authentication to NONE will not prevent you from starting the database ( we use that all the time, no OS
    authentication alowed), you just need to explicitly connect with

    If on the server:
    from a command prompt:
    set ORACLE_SID = yoursid ( if more that one on server)
    svrmgrl
    connect internal and provide the sys password if prompted

    If from a client
    connect sys/password@tnsnames.ora as SYSDBA

    Then issue your startup commands as usual..

    TurkBear Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139