Hi,
I have downloaded the bugnet project and tried to attached the database "BugNET\App_Data\Database.mdf" in Microsoft SQL Server 2008 R2 using the below code. But getting exceptions.
USE master;
GO
CREATE DATABASE BugTrack1
ON (FILENAME = 'I:\BugNET\App_Data\Database.mdf')
FOR ATTACH_REBUILD_LOG;
GO
File activation failure. The physical file name "C:\Projects\CodePlex\bugnet\src\BugNET_WAP\App_Data\Database_log.ldf" may be incorrect.
The log cannot be rebuilt when the primary file is read-only.
Msg 1813, Level 16, State 2, Line 1
Could not open new database 'BugTrack1'. CREATE DATABASE is aborted.