Topic: Rebuilding master database when corrupt
Recorder crashed and now will not open, in the error log I found
The log scan number (395:216:1) passed to log scan in database 'master' is not valid. This error may indicate data corruption or that the log file (.ldf) does not match the data file (.mdf). If this error occurred during replication, re-create the publication. Otherwise, restore from backup if the problem results in a failure during startup.
Cannot recover the master database. SQL Server is unable to run. Restore master from a full backup, repair it, or rebuild it. For more information about how to rebuild the master database, see SQL Server Books Online.
I have no backups of the master database so assume I need to rebuild it.
More googling found the setup command in C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Release which should be run at the command prompt
Setup /QUIET /ACTION=REBUILDDATABASE /INSTANCENAME=InstanceName
/SQLSYSADMINACCOUNTS=accounts [/SAPWD= StrongPassword][/SQLCOLLATION=CollationName]
Am I on the right lines and what parameters should I use
Many thanks in anticipation