I just made a dizzying mistake. I think that I was connected to my local dev db, I accidentally used the following script for my Azure SQL database for production:
DELETE myTable
GO
My data is gone forever, as I'm afraid, or does SQL Azure have a magic button "Roll back to 1 hour ago"?
Is there anything I can do to recover the data from the table?
(BTW, no, I don’t have a database backup. Azure SQL does not support backups. And, yes, I understand that it probably answers my own question ... I just hope I'm wrong.)
source
share