Perfect scenario for an SSIS package...as well as for a TSQL-based SQL Agent job...or for a batch script-based job...Take a pick. The main concept will be to iterate through *.mdb files, import the table from each, then move mdb files to archive (one-at-a-time). In SSIS you'll use For Each container for iteration, in TSQL you can load the contents of the directory using either xp_cmdshell or sp_OAxxx procedures, or you can preceed the TSQL with a CmdExec step where you can save the output from filtered DIR into a file, then import that file into a table, and then iterate through it. In a batch-based script you can use FOR loop, etc.