How to recover table after drop it in SQL Server -
i drop table in sql server using code:
drop table temp
now, try recover table, don't know solution :(
please, tell me solution problem if know.
thanks!
if drop table executed inside transaction , has not been committed can rollback. if isn't, need backup of database. recover table database. if backup not present, search 3rd party recovery tools.
Comments
Post a Comment