Note: I am not asking about full version control.
Is there any way automatically to keep a history of stored procedures on SQL Server.
Similar to how Google Docs automatically keeps a history of versions of documents and Wikipedia automatically keeps a history of versions of articles.
I don’t want users updating stored procedures to have also to maintain a repository of stored procedures. This is too much work and people won’t do it.
Hopefully this is something I can turn on in SQL Server…
(And by stored procedures really I mean functions, triggers, etc. Basically everything under Programmability.)
It looks like this might help: SQL Server stored procedure restores to previous one
But surely this is built in or can be implemented via some plugin that already exists…