I'm currently updating all of our ETLs using Visual Studio 2015 (made in BIDS 2008) and redeploying them to a new reporting server running on SQL Server 2016 (originally 2008R2).
While updating one of the ETLs I got this error:
Exception from HRESULT: 0xC0202009 Error at Load Staging Table [OLE DB Source [129]]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Server Native Client 10.0" Hresult: 0x80004005 Description: "Invalid object name 'dbo.TimeSheets'.".
Here's what I've tried:
- Checked my connection strings to make sure they were correct.
- Checked the schema to make sure it existed and was correct.
- Ran query from SSMS and it worked.
- Ctrl + Shift + R to refresh intellisense.
- Checked to see if another table exists with the same name.
- Restarted Visual Studio and SSMS.