Can't restore bak file from MS SQL Server 2000

I have a database that I am frantically trying to restore. I'm not sure if I initilly created the database in MS SQL Server 7.0 or 2000. I've attached the database bak file. I've tried to restore the database in 2000 and 7.0 but it keep giving me errors. These are the errors that I am getting:

When I try to restore using MS SQL 2000 this is the script that I user:

Go
restore database DTH
from file ='c:\DTH.bak'
go

When I run this query, this is the error that I get:

Too many backup devices specified for backup or restore; only 64 allowed.
Server 3013, Level 16, State 1, Line 1

Any help would be greatly appreciated.

I am not familiar with this error message. So the steps I outline below may not address the problem. That said, you should be able to examine what is in the backup file using these commands:

RESTORE HEADERONLY FROM DISK = N'c:\DTH.bak'
RESTORE FILELISTONLY FROM DISK=  N'c:\DTH.bak'

Once you determine that, try to restore it with the same name and same file locations as where the backup points to. If that is not possible, use the with move option in restore.