Should you store your SQL Stored Procedures in Source Control?

前端 未结 17 1325
南方客
南方客 2021-02-05 18:33

When developing an application with lots of stored procedures, should you store them in some sort of source versioning system (such as source-safe, TFS, SVN)? If so, why? And is

17条回答
  •  时光说笑
    2021-02-05 19:09

    I recommend that you do store them. You never know when you'll need to rollback, or dig into logic you may have removed..

    Here's a good way to easily grab your Stored Procs into files that you can throw into whatever source control you desire..

    Stored Procedures to .sql files

提交回复
热议问题