Undo changes to SQL Server 2005 database - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T02:12:25Zhttp://stackoverflow.com/feeds/question/203200http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/203200/undo-changes-to-sql-server-2005-database2Undo changes to SQL Server 2005 databaseroman m2008-10-14T23:25:48Z2009-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#2032194Answer by Pittsburgh DBA for Undo changes to SQL Server 2005 databasePittsburgh DBA2008-10-14T23:31:35Z2008-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#2032651Answer by Cade Roux for Undo changes to SQL Server 2005 databaseCade Roux2008-10-14T23:58:39Z2008-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#2158762Answer by Brent Ozar for Undo changes to SQL Server 2005 databaseBrent Ozar2008-10-19T01:56:21Z2008-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>