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 6882525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:15:51+00:00 2026-05-27T05:15:51+00:00

I need to search SQL Server’s metadata for all stored procedures that were changed

  • 0

I need to search SQL Server’s metadata for all stored procedures that were changed between specific dates.

So far I have following query that looking for specific value in the SP.

SELECT DISTINCT sysobjects.name AS [Object Name]
FROM sysobjects,syscomments
WHERE sysobjects.id = syscomments.id
and syscomments.text like '%Stock%'

In the example above I am looking for all SP that have word Stock in it.

But how can I search for all SP’s that were changed between specific dates?

  • 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. Editorial Team
    Editorial Team
    2026-05-27T05:15:52+00:00Added an answer on May 27, 2026 at 5:15 am
    USE AdventureWorks;
    GO
    SELECT name, create_date, modify_date
    FROM sys.objects
    WHERE type = 'P'
    AND name = 'uspUpdateEmployeeHireInfo'
    GO
    

    source: http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/

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

Sidebar

Related Questions

I need to search a SQL server 2008 for stored procedures containing where maybe
In sql server 2005 I need to identify all the stored procedures and triggers
I need to search between dates and times. For example, between date: 30/02/2007, time:
If I store all my dates in SQL Server 2005 as GetUtcDate() what is
I'm using a full-text search in one of my stored procedures. Prior to that
I've written a paged search stored procedure using SQL Server 2005. It takes a
I have created a complex sql server 2008/coldfusion search page, that searches thru a
I'm using Sql Server 2008 FullText Search for a project. I need to be
I am doing a MS SQL Server Full Text Search query. I need to
I need to do a like search, in my SQL Server database. BUT, how

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.