stored procedure to change name of column for all dependent tables and views

Solutions on MaxInterview for stored procedure to change name of column for all dependent tables and views by the best coders in the world

showing results for - "stored procedure to change name of column for all dependent tables and views"
Ibrahima
27 Sep 2016
1EXECUTE sp_rename 'Sales.SalesTerritory.TerritoryID', 'TerrID', 'COLUMN';
similar questions