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
These Import/Export specifications are stored in two system tables: MSysIMEXSpecs
and MSysIMEXColumns
.
To display them:
Navigation Options...
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