0

I wanted to modified (deleting 4-5 columns via table design mode) the table structure. but by mistakenly I have deleted from Live database. I don't have latest back of the live database.

Can I get the data (200 rows) which get deleted? Help appreciated.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Giri
  • 3
  • 4

2 Answers2

1

Theres no good easy way to do this if you dont have a backup. This thread details your options:

Rollback transaction using transaction log

Basically if the database is not in full logging mode, youre likely out of luck.

Community
  • 1
  • 1
Unicorno Marley
  • 1,744
  • 1
  • 14
  • 17
-1

try this..

BEGIN TRAN TRUNCATE TABLE table name ROLLBACK SELECT * FROM table name - See more at: http://solutioncenter.apexsql.com/rollback-truncate-operation-without-backups/#sthash.CRIRGE9b.dpuf

  • That command will not restore the data that he has lost by dropping columns. I would not recommend running it because you could do even more damage for no reason. However, from your link, ApexSQL Recover says it can restore the data lost through dropped columns. – Unicorno Marley Jul 05 '15 at 23:00