• Copy a Table From FE to BE? (a2k (9.0.6926) SP-3 Jet 4.0 SP-8)

    Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Copy a Table From FE to BE? (a2k (9.0.6926) SP-3 Jet 4.0 SP-8)

    Author
    Topic
    #454645

    I have the following code on a Form button.

    I want to delete the table tbl_RPS_Owner_WSC_01_Input in Build_Be.mdb BE

    Then copy table tbl_RPS_Owner_WSC_01_Input_AN_0 in Build.mdb FE to

    tbl_RPS_Owner_WSC_01_Input in Build_Be.mdb BE

    ‘ Drop Table
    DoCmd.DeleteObject acTable, “tbl_RPS_Owner_WSC_01_Input”

    ‘ Copy tbl_RPS_Owner_WSC_01_Input_AN_0 to tbl_RPS_Owner_WSC_01_Input
    DoCmd.CopyObject “F:AppsAccess2kBuildLewBuild_Be.mdb”, _
    “tbl_RPS_Owner_WSC_01_Input”, _
    acTable, _
    “tbl_RPS_Owner_WSC_01_Input_AN_0”

    Iโ€™m getting message that it canโ€™t find tbl_RPS_Owner_WSC_01_Input

    The whole purpose is to initialize a empty table tbl_RPS_Owner_WSC_01_Input in Build_Be.mdb with autonumber reset

    Thakns, John

    Viewing 0 reply threads
    Author
    Replies
    • #1129205

      The line

      DoCmd.DeleteObject acTable, “tbl_RPS_Owner_WSC_01_Input”

      acts on the table in the current database, i.e. the frontend database. Once you’ve deleted the table from the frontend, the code cannot find it any more when you try to copy it to the backend, of course.

      You could use DAO to delete the backend table:

      Dim dbs As DAO.Database
      Set dbs = OpenDatabase(“F:AppsAccess2kBuildLewBuild_Be.mdb”)
      dbs.TableDefs.Delete “tbl_RPS_Owner_WSC_01_Input”
      dbs.Close
      Set dbs = Nothing

      • #1129209

        Thanks, that did it

        Is there any advantage/disadvantage of using DoCmd.CopyObject vrs. DoCmd.TransferDatabase acExport

        • #1129211

          > Is there any advantage/disadvantage of using DoCmd.CopyObject vrs. DoCmd.TransferDatabase acExport

          I don’t know – I think you can use them interchangeably.

    Viewing 0 reply threads
    Reply To: Copy a Table From FE to BE? (a2k (9.0.6926) SP-3 Jet 4.0 SP-8)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: