0

If I have a database project that's connected to an Azure Sql db v12, is there a way to see a history of the "Schema Updates" I've run on that database? Similar to a Git history of commits? I know there's something called a refactorlog and I looked around a little to see if that could be of some help but it doesn't appear to be. Thanks in advance.

Willwsharp
  • 702
  • 1
  • 7
  • 25

2 Answers2

1

I don't think you should be able to get this. However you can add a DDL trigger to track these changes by keeping the changes in a different auditing table.

Satya_MSFT
  • 1,024
  • 6
  • 10
1

If you didn't enable auditing or some custom solution to capture changes,you have no way to see historical changes..With that said,below are some of options you can try to capture schema changes in azure.

1.DDL triggers
2.SQL azure Auditing feature

TheGameiswar
  • 27,855
  • 8
  • 56
  • 94
  • Thank you for your response, it helped me figure out what to do. I'm going to mark your question as the accepted one because you provided more options. – Willwsharp Mar 24 '16 at 13:18