For integration purposes I want to move a table to a different database B ( on the same server ) and then create a synonym of the table on the original database A so that all the objects referring to the table can still work as before the move. The problem I'm having is that to create the synonym I first have to delete the local table which It's not easy as it has several objects depending on it. Is there an easier way other than recreating ALL the depending objects to achieve this? In other words is there a way to "turn off the dependency check", drop the table, create the synonym and ... reactivate the dependencies which now find the synonym?
Hope it makes sense, thanks!