Migrate Data between Access DB's

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ymk
    New Member
    • Nov 2006
    • 24

    #1

    Migrate Data between Access DB's

    I have the Production and QA Access Databases and I am trying to see what's the best way to migrate data between Prod to QA.

    Tried with Import and export but few tables have relationships on them and they can't be deleted.

    Is there a better way to acheive this?

    Thanks,
    YMK
  • ymk
    New Member
    • Nov 2006
    • 24

    #2
    Can someone please throw some input on how can I port data between two Access DB's?

    Thanks.

    Comment

    • MMcCarthy
      Recognized Expert MVP
      • Aug 2006
      • 14387

      #3
      Originally posted by ymk
      I have the Production and QA Access Databases and I am trying to see what's the best way to migrate data between Prod to QA.

      Tried with Import and export but few tables have relationships on them and they can't be deleted.

      Is there a better way to acheive this?

      Thanks,
      YMK
      Try using

      Code:
       DoCmd.TransferDatabase acImport, ....................

      Comment

      Working...