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

  • Home
  • SEARCH
  • 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 have heard that when developing application which uses a database you should do
When developing an application that sends out notification email messages, what are the best
I`m developing an application using Spring WebFlow 2, Facelets and JSF. One of my
I'm developing an application for Windows Mobile Devices using Visual Studio .NET 2008 whose
I am developing an application to install a large number of data files from
I am developing console application in .Net and I want to change a behavior
I am developing an application, and have URLs in the format www.example.com/some_url/some_parameter/some_keyword . I
I'm developing an application targeting .NET Framework 2.0 using C# for which I need
I'm developing and application that runs as a Windows service. There are other components

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.