This Blog show you how to rename table name in Sql Server.
sp_RENAME '[Oldtablename]' , '[Newtablename]'
For example if my table name is class and i want to rename class with NewClass then the script will be likesp_RENAME 'class', 'NewClass'