Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 144237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:13:18+00:00 2026-05-11T08:13:18+00:00

When developing an application with lots of stored procedures, should you store them in

  • 0

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 there a convenient front end way to do this with SQL Server Management Studio?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:13:18+00:00Added an answer on May 11, 2026 at 8:13 am

    Yes. All code should be stored in source control.

    Simply put, code is code and mistakes happen. It’s nice to be able to go back and see what changed over time and be able to go back to those changes.

    We have to add it manually to a source control system, but you can create addons for the Sql Server the Management System. I haven’t ever created one to automatically add it to source control, but I suppose you could. Also, all the code is stored in sql tables, so you could in theory create a process or something to go through the table(s) and retrieve all the code and commit it automatically.

    Update: I would always write extra code to check and see if the code exists and if it doesn’t create a filler procedure and then the actual script do and alter procedure.

    IF NOT EXISTS (SELECT * FROM dbo.sysobjects WHERE  id = OBJECT_ID(N'[dbo].[SomeStoredProcedure]') AND  OBJECTPROPERTY(id,N'IsProcedure') = 1)  EXEC sp_executesql N'CREATE PROCEDURE [dbo].[SomeStoredProcedure] AS  SELECT ''SPROC Template'''  GO  SET ANSI_NULLS ON  GO  SET QUOTED_IDENTIFIER ON  GO   ALTER PROCEDURE SomeStoredProcedure 

    Doing a drop and recreate will remove all the user permissions you have setup for it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing an application that needs to store lots of records in an organized
I am developing an iPhone application in which I am loading lots of data
I'm developing a web application that has to support lots of simultaneous requests, and
I'm developing a Sencha Touch application in which I'm doing lots of Ext.extend and
I'm developing a VB.NET WinForms application, and I'm using lots of small 16x16 32bit
I'm developing an application for our company that eventually will have lots of ways
I am developing an application that needs to perform lots of batch processing (for
I'm developing an Asp.Net 3.5 application and I need to print some application generated
We're developing an accounting and ERP application (something that lots of companies, big and
I'm currently developing a heavily multi-threaded application, dealing with lots of small data batch

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.