1

What's the best way to git repository for Stored Procedure in SQL Server?

Comments
  • 0
    Depends on your stack:
    Check for existence.
    Drop
    Create.

    If your stack allows:
    Use CREATE OR ALTER

    Check in as normal.
Add Comment