Results 1 to 4 of 4
  1. #1
    Zdz16 is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2014
    Posts
    16

    Update table field with linked table field

    Hi Expert;



    I wanted to update one field of a table (i.e. DataTab) from a linked table (i.e. LnkTab) by using an update query. To do this in a select query, I did a join between DataTab and LnkTab. The results of the selection are OK. I switched the select query into update query.
    I assigned the fields of the lnkTab table to the field of DataTab. During execution, after the warning message the following message displayed:

    This ISAM driver does not support the update of data in a table attached

    It is quite clear, but the concern is that this isn't the linked table is updated; here is the SQL statement of the query.

    Code:
     
    UPDATE DataTab INNER JOIN LnkTab ON  (DataTab.Row1 = LnkTab.Row1) AND 
                                         (DataTab.Row2 = LnkTab.Row2) AND 
                                         (DataTab.Row3 = LnkTab.Row3) AND 
                                         (DataTab.Row4 = LnkTab.Row4) 
     SET DataTab.Row5 = [LnkTab]![Row5];
    I do not understand where I made the mistake. Your help and your comments and advice are welcome for a beginner.

    Best regard

  2. #2
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,726
    What do row1, row2... represent?
    Can you show us your table design?

  3. #3
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    You have fields named Row1, Row2, Row3, Row4, Row5?

    Bing: This ISAM driver does not support the update of data in a table attached

    One possible cause/solution: http://support.microsoft.com/kb/824159
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  4. #4
    Zdz16 is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Feb 2014
    Posts
    16

    [Resolved] : Update table field with linked table field

    Thanks for your replies

    It seems that the problem is known by Microsoft. He advises to import the linked table in the DB to perform the update.
    Thats what I did. And this has solved the problem.

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

Similar Threads

  1. Replies: 3
    Last Post: 02-13-2013, 10:15 AM
  2. Replies: 5
    Last Post: 11-01-2012, 09:26 AM
  3. Replies: 21
    Last Post: 10-29-2012, 02:01 PM
  4. Replies: 12
    Last Post: 03-17-2012, 04:46 AM
  5. Replies: 1
    Last Post: 08-31-2011, 04:03 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