Results 1 to 6 of 6

Thread: Error "Could not open table 'MSysAccounts'"

  1. #1
    Join Date
    Sep 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Error "Could not open table 'MSysAccounts'"

    Hi Guys
    I'm new to ASP and I'm having a bit of problem with my coding. I'm trying to connect my database to ASP but I'm getting an error saying

    Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
    [Microsoft][ODBC Microsoft Access Driver] Could not open table 'MSysAccounts' in the workgroup information file

    I don't know what it is about but when I looked up on the net I found out that I would be able to find out if I go to Access -> Tools -> Options ->
    Then clicking on View Tab and checking System Objects

    After checking that I'm able to see all these new Tables

    MSysAccessObjects
    MSysAccessXML
    MSysACEs
    MSysObjects
    MSysQueries
    MSysRelationships

    But I still can't see MSysAccounts table

    Please help

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Are you sure it's there?
    Do you have permission to access it?
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Sep 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi Twey

    I'm not sure if it's there or not but I created the database and I"ve got all the administrator rights. So I think if it's there I should be able to see it. What should I do if it's not there?

    Regards
    Pumpkin008

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Create it.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #5
    Join Date
    Sep 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi
    I don't know how to create it coz these tables are supposed to be system tables and the have some inbuilt data in them

  6. #6
    Join Date
    Sep 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Muy code is as follows

    <html>
    <head>
    <title>Home Page</title>
    </head>
    <body>
    <p>This line from HTML</p>
    <hr>
    <p>Next line from ASP will work<br>
    if ASP extensions installed correctly:<br>
    <%
    response.write "<b>From ASP</b>"
    %>
    <hr>
    <p>Next line from ADO will work if a DSN named fuseairplays has been set<br>
    for the database which is named fuseairplay.mdb.</p>
    <%
    set oRS=server.createobject("ADODB.recordset")
    oRS.open "SELECT * From Contact", "DSN=fuseairplay"
    oRs.movefirst
    response.write "<b>" & oRs("PeopleNameLast") & "</b>"
    %>
    <hr>
    Finished test page</p>
    </body>
    </html>

Bookmarks

Posting Permissions

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