Problem with data access

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

  1. #1

    Default Problem with data access

    i had a working site with iis5 winxp professional on a p4 machine.
    suddenly i am having problems with and the asp pages which have some
    updating commands for the database. the update commands dont work and i get
    one of the following error messages. i have tried restarting the computer
    and have also reinstalled microsoft office xp but the problem has not been
    solved as yet.
    please help

    1. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
    [Microsoft][ODBC Microsoft Access Driver]General error Unable to open
    registry key 'Temporary (volatile) Jet DSN for process 0x994 Thread 0xac4
    DBC 0x147f024 Jet'.


    2. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
    [Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or object
    is read-only.




    S N Guest

  2. Similar Questions and Discussions

    1. Deployment problem - unable to access data when hostingtomcat on different machine than the client
      Hi, I am developing a flex application that uses servlets to retrieve data from the database and generates graphs. During development, I had the...
    2. PhP, Access/SQL, Data comparison problem. (I'm new to PhP)
      Hi All! I'm fairly new to PhP and basicly trying to learn right now. Now I have a problem - I have a fairly large collection of movies which people...
    3. Problem reading layer data error? Composite data instead? WTF
      There are some situations where as a PS 6 document is seen as having problems in a PS 7 and PS8 version of Photoshop. There is also a chance, because...
    4. Data Access Problem when importing custom file
      Hi, I have an aspx file that creates a custom class object and calls a method which should return a DataSet. It throws a: Description: The...
    5. access denied on data access pages
      I have created data access pages that worked well when I tried them on two separate computer simutaneously, but when we went into production we got...
  3. #2

    Default Re: Problem with data access

    S N wrote:
    > i had a working site with iis5 winxp professional on a p4 machine.
    > suddenly i am having problems with and the asp pages which have some
    > updating commands for the database. the update commands dont work and
    > i get one of the following error messages. i have tried restarting
    > the computer and have also reinstalled microsoft office xp but the
    > problem has not been solved as yet.
    > please help
    >
    > 1. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
    > [Microsoft][ODBC Microsoft Access Driver]General error Unable to open
    > registry key 'Temporary (volatile) Jet DSN for process 0x994 Thread
    > 0xac4 DBC 0x147f024 Jet'.
    >
    >
    > 2. Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
    > [Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or
    > object is read-only.
    1. Stop using ODBC. The Microsoft OLE DB Provider for ODBC Drivers has been
    deprecated and users are advised to use the native Jet OLEDB provider
    instead. For a non-password-secured database, your connection string can be
    as simple as :
    conn.open "provider=micrososft.jet.oledb.4.0" & _
    "data source=p:\ath\to\your\database.mdb"

    You can use
    "data source=" & Server.Mappath("database.mdb")
    if your database is in a folder within the wwwroot folder.

    2. These 80004005 issues are always NTFS permissions-related. The
    IUSR_machinename account (and sometimes the IWAM_machinename account) needs
    Change permissions for the folder containing the database file.

    Bob Barrows

    PS. Gack!! Why did you crosspost to so many groups??? This is an asp and
    database issue. You did not have to post to so many groups.
    microsoft.public.inetserver.asp.db is the perfect group for this question.

    --
    Microsoft MVP - ASP/ASP.NET
    Please reply to the newsgroup. This email account is my spam trap so I
    don't check it very often. If you must reply off-line, then remove the
    "NO SPAM"


    Bob Barrows 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