Take a look here: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=92347&SiteID=1
What I did instead of running a manual DB installis;
(- all as described in the forumlinked toabove)
Once the installer got to the installation DB, I went to
...\Program Files\IssueVision\1.0\CS\Database\SqlServer_IssueVision_Schema.sql
and deleted the line containing:
exec sp_addlogin N'IVUser', N'IVUser', @logindb ...
and replaced it with:
create login IVUser WITH PASSWORD = 'IVUser' , DEFAULT_DATABASE = IssueVision, CHECK_POLICY=OFF;
I then saved the SqlServer_IssueVision_Schema.sql , went back to the installer and proceeded with the installation completing without any further hickups.
Hope this helps.
Asside the little manual script-runevation twist,Full credit isdue to DongbumLee .
Thanx