Results 1 to 11 of 11

Thread: Access Troubles with Read-Only [Resolved]

  1. #1

    Thread Starter
    Fanatic Member space_monkey's Avatar
    Join Date
    Apr 2005
    Location
    神と歩くこと
    Posts
    573

    Resolved Access Troubles with Read-Only [Resolved]

    We have a couple access databases on a server that 10 - 15 people need to use daily entering data through a form. We recently started having several problems with data corruption. Once that table would become corrupted we would have to back up from the tape of the night before. To help avoid having data corruption we created a new database and linked it back to the old one. Now everyone who opens the database can only open it as read-only. If anyone has any advice or can offer any insight what so ever, I'd appreciate it.

    Thanks
    Andy
    Last edited by space_monkey; Jun 1st, 2005 at 12:23 PM.
    Using VB6 or VB.net 2008 with .net 3.5
    "Life... death... either way I'll be confined to a small cubicle!" - Hermes Conrad

  2. #2
    PowerPoster Dave Sell's Avatar
    Join Date
    Mar 2004
    Location
    /dev/null
    Posts
    2,961

    Re: Access Troubles with Read-Only

    MSAccess is not designed for more than 10 consecutive users. Have you considered an actual dbase, like MySQL?
    Nobody knows what software they want until after you've delivered what they originally asked for.

    Don't solve problems which don't exist.

    "If I had eight hours to cut down a tree, I'd spend six hours sharpening my axe." --- Abraham Lincoln (1809-1865)

    2 idiots don't make a genius.

  3. #3
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Access Troubles with Read-Only

    You could try compacting your database every now and then, and optimize you queries as much as possible.... Maybe use ado and action queries in your data manipulation....

    Or better yet, upsize your database to MS SQL Server.....
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  4. #4
    Don't Panic! Ecniv's Avatar
    Join Date
    Nov 2000
    Location
    Amsterdam...
    Posts
    5,343

    Re: Access Troubles with Read-Only

    Upping to MSDE (Developer edition of SQL server has it) which is a scaled down sql server with the same size limits of Access.

    Upgrade to Sql server (As mentioned above)

    Access (in theory) cen support 255 users. Reality depends on how you have your database. Probably safe at 5-10 although you could have more like 20-30 (normal team size). Again, depends on how the db was set up.


    As to your problem:
    Check all users have read/write access to the folder
    Ensure noone is openning the db as exclusive.

    I am guessing that it is the first one... Possibly there is a problem with the link itself and it is being done as read only (not likely but a possibility).

    Post up if its not the folder rights...

    BOFH Now, BOFH Past, Information on duplicates

    Feeling like a fly on the inside of a closed window (Thunk!)
    If I post a lot, it is because I am bored at work! ;D Or stuck...
    * Anything I post can be only my opinion. Advice etc is up to you to persue...

  5. #5

    Thread Starter
    Fanatic Member space_monkey's Avatar
    Join Date
    Apr 2005
    Location
    神と歩くこと
    Posts
    573

    Re: Access Troubles with Read-Only

    I know we are pushing the limits of what access can handle safely, but the guy in charge of the database would like to remain in control of it as much as possible.
    We are pretty sure its not the folder rights b/c when they backup from the tape everyone has access to it again, but also we've gone over the permissions.
    Upgrading to sql server is an option but like i said the owner of the database would like to retain as much control as possible. If we went to sql server the only option i would have (that i know of) is to create a vb frontend for it, is there another option that would allow the users to have access to the database using a form of some kind?
    One thought has crossed my mind, in this database they are storing pictures as well, would this cause a problem?

    Thanks
    Andy
    Using VB6 or VB.net 2008 with .net 3.5
    "Life... death... either way I'll be confined to a small cubicle!" - Hermes Conrad

  6. #6
    PowerPoster Dave Sell's Avatar
    Join Date
    Mar 2004
    Location
    /dev/null
    Posts
    2,961

    Re: Access Troubles with Read-Only

    You can set up an MSAccess front-end to MSSQL Server back-end tables. This is a common setup.
    Nobody knows what software they want until after you've delivered what they originally asked for.

    Don't solve problems which don't exist.

    "If I had eight hours to cut down a tree, I'd spend six hours sharpening my axe." --- Abraham Lincoln (1809-1865)

    2 idiots don't make a genius.

  7. #7

    Thread Starter
    Fanatic Member space_monkey's Avatar
    Join Date
    Apr 2005
    Location
    神と歩くこと
    Posts
    573

    Re: Access Troubles with Read-Only

    Do you know of any where i can find a tutorial on how to do that?
    Using VB6 or VB.net 2008 with .net 3.5
    "Life... death... either way I'll be confined to a small cubicle!" - Hermes Conrad

  8. #8
    Don't Panic! Ecniv's Avatar
    Join Date
    Nov 2000
    Location
    Amsterdam...
    Posts
    5,343

    Re: Access Troubles with Read-Only

    You have pictures in your access database??
    That would expand it hugely !
    Personally I would have used a shared area for the pictures and store a path to them (can be UNC if the drive letters change for users).

    Tables would be linked to Sql server and act almost the same as in Access.

    A link to something?
    Or this?

    Doubt these are of any help, but may be they are?

    BOFH Now, BOFH Past, Information on duplicates

    Feeling like a fly on the inside of a closed window (Thunk!)
    If I post a lot, it is because I am bored at work! ;D Or stuck...
    * Anything I post can be only my opinion. Advice etc is up to you to persue...

  9. #9
    Frenzied Member FishGuy's Avatar
    Join Date
    Mar 2005
    Location
    Bradford UK
    Posts
    1,708

    Re: Access Troubles with Read-Only

    Firstly I am asuming your database is already split to keep the front end seperate from the backend (if not that should be done as it will reduce corruptions)

    With this in mind if you were to use sql server you simply point your linked tables to the sql database instead of your access backend.

    Taking this further you could then change your setup from an mdb to an adp to take advantage of stored procedures.

  10. #10

    Thread Starter
    Fanatic Member space_monkey's Avatar
    Join Date
    Apr 2005
    Location
    神と歩くこと
    Posts
    573

    Re: Access Troubles with Read-Only

    Thanks for everyones advice and input. As you can see my knowledge about access is very limited, so i'm sure to have more questions in the future. I think we'll start off by creating a frontend in access and a back end in access as well (split it up) and see how that goes. If we are still having problems we'll put the backend on our sql server. I've also recomended putting just the link to the pictures in the database so hopefully that will ease some of the burden on access as well. Thanks again for all your help.

    Thanks
    Andy
    Using VB6 or VB.net 2008 with .net 3.5
    "Life... death... either way I'll be confined to a small cubicle!" - Hermes Conrad

  11. #11
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Access Troubles with Read-Only [Resolved]

    This should be a good link for you.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

Posting Permissions

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



Click Here to Expand Forum to Full Width