Undo changes to SQL Server 2005 database - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:12:25Z http://stackoverflow.com/feeds/question/203200 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/203200/undo-changes-to-sql-server-2005-database 2 Undo changes to SQL Server 2005 database roman m 2008-10-14T23:25:48Z 2009-12-08T00:23:45Z <p>I've ran some "ALTER" scripts on the database [SQL Server Server 2005], and overwrote some sprocs. Is there any way to undo changes and get my old sprocs back?</p> <p>Is there a way to get the scripts that were executed out of the .LDf file? That way i can re-run my initial "create" script for my sprocs.</p> <p>I don't have a backup file with old sprocs.</p> <p>p.s. i backed the DB up as per <a href="http://stackoverflow.com/users/4337/gulzar">@Gulzar's</a> deleted answer, and looks like I'm "hosed".</p> <p>@Pittsburgh DBA: thanx for the solution, but it doesn't seem to work after the backup.</p> <p><strong>MORAL: Wait for 10 minutes before trying the suggested answers out</strong></p> <p><hr></p> <p><strong>Update from Gulzar</strong>: What I meant was a file backup before trying anything (to be safe). Not a SQL Server backup.</p> http://stackoverflow.com/questions/203200/undo-changes-to-sql-server-2005-database/203219#203219 4 Answer by Pittsburgh DBA for Undo changes to SQL Server 2005 database Pittsburgh DBA 2008-10-14T23:31:35Z 2008-10-14T23:31:35Z <p>FIRST: DO NOT TAKE ANY BACKUPS JUST YET.</p> <p>There are several tools on the market to do this sort of thing. </p> <p>You might try this one:</p> <p><a href="http://www.apexsql.com/sql_tools_log.asp" rel="nofollow">ApexSQL Log</a></p> http://stackoverflow.com/questions/203200/undo-changes-to-sql-server-2005-database/203265#203265 1 Answer by Cade Roux for Undo changes to SQL Server 2005 database Cade Roux 2008-10-14T23:58:39Z 2008-10-14T23:58:39Z <p>And after that, look into using ApexSQLScript to script out your databases on a regular basis (and store in version control).</p> http://stackoverflow.com/questions/203200/undo-changes-to-sql-server-2005-database/215876#215876 2 Answer by Brent Ozar for Undo changes to SQL Server 2005 database Brent Ozar 2008-10-19T01:56:21Z 2008-10-19T01:56:21Z <p>In case anybody else has the same problem - Were you doing transaction log backups every X minutes? If so, you can use Quest LiteSpeed's log reader or Quest Toad for SQL Server's log reader to read the log file backups. It gives undo/redo scripts too for any transaction in the log backups or the ldf.</p>