Page 2 of 2 FirstFirst 12
Results 16 to 24 of 24
  1. #16
    Rags is offline Novice
    Windows Vista Access 2010 64bit
    Join Date
    Jun 2014
    Posts
    11
    Quote Originally Posted by hapm View Post
    What is the files name access is looking for? I expect it to be either a reference to a missing code library or the linked tables that don't find the backend. If its an accdb file you will need to copy it to your local computer as well and fix the linked tables using the table link manager. If its a missing reference install the needed libraries and fix the references using the reference manager from the vba editor.

    The attached message is what I get when I try to use local Access with copied DB on my PC.



    Thanks
    Attached Thumbnails Attached Thumbnails DB2.png  

  2. #17
    hapm is offline Competent Performer
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2014
    Posts
    197
    Seems very likely that you are working with a splitted database here and your front end misses its back end here. What you have are all the forms reports and queries used to represent the data. But the data it self still lies on the server. You will need to get a copy of that file, place it on your local computer and refresh the table links to apply the new location.

  3. #18
    Rags is offline Novice
    Windows Vista Access 2010 64bit
    Join Date
    Jun 2014
    Posts
    11
    Quote Originally Posted by hapm View Post
    Seems very likely that you are working with a splitted database here and your front end misses its back end here. What you have are all the forms reports and queries used to represent the data. But the data it self still lies on the server. You will need to get a copy of that file, place it on your local computer and refresh the table links to apply the new location.
    I copied the DB a week or so from the server earlier, about 8.5 MB's. I assumed I had "everything". Did I just get the front end? How do I refresh the table links?

    Thanks for your help.

    Have to leave town for a few days, so I'll have to pursue it when I get back home.

  4. #19
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    Why don't you ask someone in Data Administration or your IT department some of theses questions? Maybe your immediate supervisor can lead you in the correct direction. If it is part of your job to work on these files you should know the answers to at least some of these questions. If not, your supervisor should provide you with resources to find the answers.

  5. #20
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,771
    You need both parts of the split db - the frontend file and the backend file - copied to your local laptop.

    To change the link path, right click on any table link in the frontend and select Linked Tables Manager. Search Access Help for more guidance.

    Changes to either file will of course not be reflected in the originals on the server.
    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.

  6. #21
    Rags is offline Novice
    Windows Vista Access 2010 64bit
    Join Date
    Jun 2014
    Posts
    11
    Quote Originally Posted by June7 View Post
    You need both parts of the split db - the frontend file and the backend file - copied to your local laptop.

    To change the link path, right click on any table link in the frontend and select Linked Tables Manager. Search Access Help for more guidance.

    Changes to either file will of course not be reflected in the originals on the server.

    Just got back from being out of town. Thanks for the feedback....I'll try what you suggest.

  7. #22
    Z1nkstar's Avatar
    Z1nkstar is offline Competent Performer
    Windows 7 64bit Access 2013
    Join Date
    Mar 2014
    Location
    TX, USA
    Posts
    145
    What if all you do is setup a remote pc to the Computer that has the database on it then From local pc you could connect to it so that all the data is still on the server instead of you having to update the data on the server?

  8. #23
    Rags is offline Novice
    Windows Vista Access 2010 64bit
    Join Date
    Jun 2014
    Posts
    11
    Quote Originally Posted by Z1nkstar View Post
    What if all you do is setup a remote pc to the Computer that has the database on it then From local pc you could connect to it so that all the data is still on the server instead of you having to update the data on the server?

    I want to update a copy of the DB with test data so as not to corrupt original DB. Somehow I have to learn how to update the DB links to point to the DB on my copy.

  9. #24
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,771
    The links can be change manually with the Linked Table Manager or can run VBA code. Example:
    Code:
    Public Sub NormalizeTableLinks()
    Dim td As TableDef
    Dim db As DAO.Database
    Dim strOld As String
    Dim strNew As String
    'replace the following strings as needed
    strOld = "old path\filename.accdb"
    strNew = "new path\filename.accdb"
    Set db = CurrentDb
    For Each td In db.TableDefs
        If InStr(td.Connect, strOld) > 0 Then
            Debug.Print td.Name
            Debug.Print "Old Link: " & td.Connect
            td.Connect = Replace(td.Connect, strOld, strNew)
            td.RefreshLink
            Debug.Print "New Link: " & td.Connect
        End If
    Next td
    db.TableDefs.Refresh
    End Sub
    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.

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 12-11-2013, 01:18 PM
  2. Replies: 0
    Last Post: 06-05-2012, 12:28 AM
  3. Replies: 1
    Last Post: 04-08-2012, 11:42 PM
  4. Creating a local network Database
    By blukit01 in forum SQL Server
    Replies: 1
    Last Post: 03-15-2012, 01:20 PM
  5. Replies: 0
    Last Post: 03-09-2009, 12:20 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