Torn page errors are given when the SQL engine detects database corruption. This is usually the result of an incomplete write operation due to a power failure local to the db server (for some reason the db server was not able to finish writing data).
You can try dbcc checkdb to see if it is able to correct the matter, however this can result in dataloss so generally it is best to restore the last known good backup.
Best of luck