1

I am working on a project on Visual Studio 2013 and I am trying to script our database out. Everything is so fine but when I am trying rename a table, It creates another after publishing. I just want to rename it without create any other table.

So, Is there any option in Visual studio to rename table or other objects without creating another ?

Thank you very much for your help in advance.

Eren Cetin
  • 11
  • 1
  • Possible duplicate of [How to rename table using SSDT in Visual Studio](https://stackoverflow.com/questions/22577669/how-to-rename-table-using-ssdt-in-visual-studio) – scar80 Mar 20 '18 at 07:38

1 Answers1

3

You need to right click the table and choose refactor—> rename so it adds the rename operation to the refactorlog.xml

Ed Elliott
  • 6,666
  • 17
  • 32