edwalt's - Things I Wish I'd known about SBS 2003....
SharePoint Database Explorer
This tool will help you export files from a corrupt .mdf database. In order for this to work you must be able to successfully mount the database either through OSQL or SQL. This tool should be used at your own risk. Thanks
Program Download location: http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx
Database Files needed:
1. STS_Servername_1.mdf
2. STS_Servername _1_log.ldf.
Using SharePoint Database Explorer with OSQL
osql -S servername\sharepoint –E1>EXEC sp_attach_db @dbname = 'STS_SERVERNAME_1', @filename1 = 'C:\Program Files\Microsoft SQL Server\MSSQL$SHAREPOINT\Data\ STS_SERVERNAME_1.mdf', @filename2 = 'C:\Microsoft SQL Server\MSSQL$SHAREPOINT\Data\STS_SERVERNAME_1_log.LDF'
2>Go
Using SharePoint Database Explorer with SQL Server
Installation
The database should now be attached.
Open SharePoint Database Explorer
Thanks,
>edwalt