More information you can dig out from resources directly connected with SQL Server databases and database corruption in MS SQL Server any version...
http://www.sqlservercentral.com/Forums/Topic1602448-266-1.aspx
http://www.filerepairforum.com/foru.../sql-server/1413-sql-database-in-suspect-mode
https://www.repairtoolbox.com/sqlserverrepair.html SQL Server Repair Toolbox
One of the commands and types of restoring must assist you, good luck...
Restore full backup WITH RECOVERY
Note: As mentioned above this option is the default, but you can specify as follows.
Command:
RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.BAK'
WITH RECOVERY
GO
Recover a database that is in the "restoring" state
Note: The following command will take a database that is in the "restoring" state and make it available for end users.
Command:
RESTORE DATABASE AdventureWorks WITH RECOVERY
GO
Restore multiple backups using WITH RECOVERY for last backup
Note: The first restore uses the NORECOVERY option so additional restores can be done. The second command restores the transaction log and then brings the database online for end user use.
Command:
RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.BAK'
WITH NORECOVERY
GO
RESTORE LOG AdventureWorks FROM DISK = 'C:\AdventureWorks.TRN'
WITH RECOVERY
GO