Results 1 to 4 of 4
  1. #1
    Robeen is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    Mar 2011
    Location
    Tulsa, Oklahoma.
    Posts
    1,596

    Operation must have an updateable query . . .

    Access 2010.
    Split Database.

    I have a 'Save' button on a Form that Inserts a record with 6 values into a linked table using something like this:
    Code:
                strSQL = "INSERT INTO Work_Load_Daily (Work_Date, Master_Category, Type, Accounts, UserID, DateTime_Entered) "
                strSQL = strSQL & "VALUES (" & "#" & Work_Date & "#" & ", " & "'" & strMasterCat & "'" & ", " & "'" & strType & "'" & ", " & intAccounts & ", " & "'" & strUser & "'" & ", " & "#" & TimeStamp & "#" & "); "
    
                DoCmd.SetWarnings WarningsOff
                DoCmd.RunSQL strSQL
                DoCmd.SetWarnings WarningsOn
    On my computer, this works just fine and the record is inserted as required.
    When I copied the Front end to a user's machine and tried to add a record - I got an error that said something like:
    Operation must have an updateable query . . .
    In the same DB - on the user's machine, I am able to open up and view [using buttons on another form] previous records that I entered during testing from my machine . . .

    My first thought was whether the User needs permission to write to the location that the linked tables are in . . . but I don't know for sure.
    I thought that since I have the tables on a 'shared' drive that all users have access to . . .

    Any ideas?

    Thanks!!



    Robeen

  2. #2
    lfpm062010 is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2013
    Location
    US
    Posts
    415
    Things to check On user's machine.

    1) Is there a query name "Work_Load_Daily"?

    2) Did you refresh the link table "Work_Load_Daily"?

    3) When you open the link table "Work_Load_Daily", can you add new records?

  3. #3
    Robeen is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    Mar 2011
    Location
    Tulsa, Oklahoma.
    Posts
    1,596
    1. Work_Load_Daily is a table only - no query with that name.
    2. ?? How would I refresh the link table from the User's machine? She does not have MS Access installed - all she [and I] can see from her machine are the Forms that are available at run time.
    3. On the User's machine, I cannot open any Tables. Access is not installed on that machine. Only my Forms are available using the Access Runtime.

    I still think that it might be a permissions issue - but not sure exactly what I need to change.

  4. #4
    lfpm062010 is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2013
    Location
    US
    Posts
    415
    Can the user create a simple test text file on the location where the link table resides?

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Operation must be an updateable query! Arg
    By redbull in forum Queries
    Replies: 6
    Last Post: 10-05-2012, 02:04 PM
  2. Replies: 5
    Last Post: 01-11-2012, 04:26 PM
  3. Operation must use an updateable query.
    By pericherlasuma in forum Access
    Replies: 1
    Last Post: 05-16-2011, 09:45 AM
  4. Operation must use an updateable query
    By skaswani in forum Queries
    Replies: 0
    Last Post: 12-23-2010, 11:59 PM
  5. Operation Must use an Updateable Query
    By Lady_Jane in forum Queries
    Replies: 2
    Last Post: 12-14-2010, 03:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums