refresh causes Provider error '80004005'

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

  1. #1

    Default refresh causes Provider error '80004005'

    I have an ASP page running on IIS4 on a NT machine accessing a remote
    database server on the local network Windows 2000 with /AD and it runs fine.
    I have the same exact page on IIS5 same permissions and everything accessing
    the same database. The page shows up some times but when I refresh the page
    or close it and go back in I get one of two error messages.
    --------------------------------------------
    Error #1
    Provider error '80004005'
    Unspecified error
    -------------------------------------------
    Error #2
    [Microsoft][ODBC Microsoft Access Driver] The database has been placed in a
    state by an unknown user that prevents it from being opened or locked.
    ----------------------------------------
    I have seen this problem for other users in the google groups but no definte
    answer.

    --------------------------------------------
    Here is the connection string on this server

    Set Conn = Server.CreateObject("ADODB.Connection")
    conn.ConnectionTimeout = 20
    Conn.Open "OppsData"
    Set RS = Conn.Execute("{Call CRTMove}")
    IIS5 Connecting with Annon Access IUSER_SERVER allow IIS to control password
    UNCHECKED and also Intergrated Windows Auth.

    all connections close at the end.
    all permissions checked and fine.

    The only thing I can think of is that this machine also acts as a Sharepoint
    Team Services Server.

    Please Help : (



    MS Newsgroups Guest

  2. Similar Questions and Discussions

    1. Microsoft OLE DB Provider for ODBC Drivers error '80004005'
      Hello, I have Web application running on 2003. It uses MSSql-2000 database. Database server is located on different machine. From ASP, it...
    2. Help 80004005 Error...
      I'm working with a customer who has an NT Server (I think it's SP3) running IIS 4. We just converted the databases to Access 2000 and loaded Access...
    3. Microsoft OLE DB Provider for SQL Server error '80004005'
      Hi, I have 2 virtual directory under my IIS (ver 4), Both of them using same ASP script, But one of the other script come out with this error...
    4. Provider error '80004005' Unspecified error - ARRRGGGHHH!!!!!
      I have searched usenet & dev sites to no avail although many have had similar problems, reckon its an issue with DSN but not sure.. error occurs...
    5. Microsoft OLE DB Provider for ODBC Drivers error '80004005' Error
      Hi folks - i've got a windows 2000 server (SP3) i've run the IIS lockdown tool on it and set for dynamic websites - all the static pages within the...
  3. #2

    Default Re: refresh causes Provider error '80004005'

    Switch from using an ODBC DSN connection to using an OLEDB connection with a
    connection string. Example:

    Conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=D:\Path\To\Database.mdb;User Id=admin;Password=;"
    ' * courtesy of [url]www.connectionstrings.com[/url]

    Also make sure that you are closing your connection (Conn.Close) and
    destroying the object (Set Conn = Nothing) immediately after you no longer
    need the connection in your code.

    Ray at home


    "MS Newsgroups" <mtully@argusinc.com> wrote in message
    news:eHkYSyz9DHA.1804@TK2MSFTNGP12.phx.gbl...
    > I have an ASP page running on IIS4 on a NT machine accessing a remote
    > database server on the local network Windows 2000 with /AD and it runs
    fine.
    > I have the same exact page on IIS5 same permissions and everything
    accessing
    > the same database. The page shows up some times but when I refresh the
    page
    > or close it and go back in I get one of two error messages.
    > --------------------------------------------
    > Error #1
    > Provider error '80004005'
    > Unspecified error
    > -------------------------------------------
    > Error #2
    > [Microsoft][ODBC Microsoft Access Driver] The database has been placed in
    a
    > state by an unknown user that prevents it from being opened or locked.
    > ----------------------------------------
    > I have seen this problem for other users in the google groups but no
    definte
    > answer.
    >
    > --------------------------------------------
    > Here is the connection string on this server
    >
    > Set Conn = Server.CreateObject("ADODB.Connection")
    > conn.ConnectionTimeout = 20
    > Conn.Open "OppsData"
    > Set RS = Conn.Execute("{Call CRTMove}")
    > IIS5 Connecting with Annon Access IUSER_SERVER allow IIS to control
    password
    > UNCHECKED and also Intergrated Windows Auth.
    >
    > all connections close at the end.
    > all permissions checked and fine.
    >
    > The only thing I can think of is that this machine also acts as a
    Sharepoint
    > Team Services Server.
    >
    > Please Help : (
    >
    >
    >

    Ray at 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