vote up 2 vote down star
4

I've ran some "ALTER" scripts on the database [MSSQL Server 2005], and overwrote some sprocs. Is there any way to undo changes and get my old sprocs back?

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.

I don't have a backup file with old sprocs.

p.s. i backed the DB up as per @Gulzar's deleted answer, and looks like I'm "hosed".

@Pittsburgh DBA: thanx for the solution, but it doesn't seem to work after the backup.

MORAL: Wait for 10 minutes before trying the suggested answers out


Update from Gulzar: What I meant was a file backup before trying anything (to be safe). Not a SQL Server backup.

flag

Just goes to show: SO reputation isn't everything. – Mitch Wheat Oct 15 '08 at 0:05
yeah ... he got me fooled – roman m Oct 15 '08 at 0:16
Well, I reserved commenting further on the matter until I had a chance to see if there was some odd new feature of which I was somehow not aware. What happened to you is explained in greater detail. Here: blogs.msdn.com/arvindsh/archive/… – Pittsburgh DBA Oct 15 '08 at 0:34
first of all, i am really sorry. it was something i tried out and looks like it worked. usually, if i wanted to try something especially from suggestions in forums, i would have done it on a copy. i was thinking you would be doing the same. sorry again. – Gulzar Oct 16 '08 at 19:59
1  
by backup, I meant a file backup. Not a SQL server backup. – Gulzar Oct 16 '08 at 22:52
show 2 more comments

3 Answers

vote up 4 vote down check

FIRST: DO NOT TAKE ANY BACKUPS JUST YET.

There are several tools on the market to do this sort of thing.

You might try this one:

ApexSQL Log

link|flag
OK. I am with you on this. Will this tool undo DDL operations on SQL 2005? – Gulzar Oct 14 '08 at 23:36
I have never used it to recover dropped tables, but the documentation supports the idea that it will do this. – Pittsburgh DBA Oct 14 '08 at 23:43
Er, stored procedures, too – Pittsburgh DBA Oct 14 '08 at 23:44
by backing up, i actually meant making copies of the database and log files (as a backup) before trying anything. sql backup was not what i meant. – Gulzar Oct 16 '08 at 20:48
vote up 2 vote down

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.

link|flag
vote up 1 vote down

And after that, look into using ApexSQLScript to script out your databases on a regular basis (and store in version control).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.