You cannot restore the individual table(s) from a database backup!
So, you had to follow the following steps to restore single table from Backup:
1. Drop the corrupt table from your existing database.
2. Restore your database from a backup under a different name (for example, test_db).
3. Use DTS/Data Transformation Wizard to move/copy table from a newly restored test_db to your production database.
This is the simplest way to implement what you require.
So, you had to follow the following steps to restore single table from Backup:
1. Drop the corrupt table from your existing database.
2. Restore your database from a backup under a different name (for example, test_db).
3. Use DTS/Data Transformation Wizard to move/copy table from a newly restored test_db to your production database.
This is the simplest way to implement what you require.