I am working on SSIS 2012 and ran into a issue that happened as follows:
Things seemed to be going well until a couple of databases that were a part of SSIS connections managers were set into single user mode by rolling back transactions, since they needed to be renamed.
I am not sure if this could be a direct cause, but after the event, the package seems to be sticking to the row counts for a specific table in the old databases.
For example, the old database DB_old and new DB_new have a table items, which contains 100 and 200 records respectively. After the DB_old has been renamed (to DB_new), the package should be retrieving 200 records, but it only gets the 100 and leaves out the rest. The package executes successfully.
This is happening at the OLEDB data source and not after any lookups.
Can someone please suggest on how can I refresh the package metadata?
Thanks
Mac