I Need to manually migrate modified stored procedures from a DEV SQL Server 2005 database instance to a TEST instance. Except for the changes I\'m migrating, the databases have
instead of using sysobjects which is not recommended anymore use sys.procedures
select name,create_date,modify_date from sys.procedures order by modify_date desc
you can do the where clause yourself but this will list it in order of modification date descending