You can try to recover your database from the "SUSPECT" state:
Set the Database to Emergency Mode:
ALTER DATABASE [MYDB] SET EMERGENCY;
Set the Database to Single User Mode:
ALTER DATABASE [MYDB] SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
Run DBCC CHECKDB with REPAIR_ALLOW_DATA_LOSS:
DBCC CHECKDB ([MYDB], REPAIR_ALLOW_DATA_LOSS);
Set the Database to Multi-User Mode:
ALTER DATABASE [MYDB] SET MULTI_USER;