So in an attempt to make a large table more manageable in SQL Server 2012 BI Edition, I tried to create a partition view.
However when attempting to use this view as an OLE Destination, I get the following error:
Views referencing tables on multiple servers are not updatable in the edition of this SQL Server instance
The view is a union of multiple tables on the same server.
Initial research indicates its some sort of bug that an instead of insert trigger might workaround, however even with a that, it is still throwing the same error.
Is it possible to work with partition views in SSIS?
Upgrading to enterprise is not an option for me.
Thanks
Jon