Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 16th, 2005, 07:47 AM
Authorized User
 
Join Date: Oct 2003
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Default Retrieve modified SP

HI,
Is there any way to retrieve a list of SP based on a modification date.

i.e: Give all the store procedures on this database which has been modified yesterday .

Thanks

 
Old August 18th, 2005, 01:45 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

Unfortunately sysobjects only contains a create date column, not a modified date column. You can try this and see if it helps you at all:

select * from sysobjects
where xtype = 'P' --P = a stored procedure






Similar Threads
Thread Thread Starter Forum Replies Last Post
cms: Last modified.... retroviz BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6 2 February 24th, 2007 06:01 AM
Retrieve control vals modified with javascript? dungerdanish General .NET 4 June 25th, 2005 04:42 PM
exec sp within another sp collie SQL Server 2000 1 December 22nd, 2004 05:46 AM
the crystal report can not be modified again ligi Crystal Reports 3 October 9th, 2004 11:39 PM
Can a SP run another SP as sa? dbradley SQL Server 2000 0 July 17th, 2003 08:35 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.