Friday, June 19, 2015

rename a table is MSSQL with the sp_rename sproc

EXEC sp_rename 'Foo', 'Bar';

... will rename the table named Foo to: "Bar"

No comments:

Post a Comment