Can I programmatically get at all Import/Export Specs in MS Access 2010?

前端 未结 1 927
一整个雨季
一整个雨季 2020-12-20 04:08

I am working reverse engineering an MS Access 2010 database in order to recreate it as an SSIS/SSRS solution. There a bunch of import and export specifications that I would

1条回答
  •  有刺的猬
    2020-12-20 05:01

    These Import/Export specifications are stored in two system tables: MSysIMEXSpecs and MSysIMEXColumns.

    To display them:

    • Right-click on the header in the navigation pane and choose Navigation Options...
    • In the Navigation Options window check the Show System Objects box and click Ok

    (courtesy of https://superuser.com/questions/268077/how-do-i-view-system-tables-for-a-mdb-in-access-2010)

    Or create a query like this:

    SELECT MSysIMEXSpecs.SpecName, MSysIMEXColumns.*
    FROM MSysIMEXColumns INNER JOIN MSysIMEXSpecs 
         ON MSysIMEXColumns.SpecID = MSysIMEXSpecs.SpecID
    

    0 讨论(0)
提交回复
热议问题