SQL Server 2012 installation Reporting Services Catalog error

52,878

Solution 1

Since you already had one installation of SQL Server done before, there was a database already created. That did not get removed. So when you reinstall, its trying to create the database with the same name, hence, the error. You need to delete the old files to continue the new installation.

From the direcotry

C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA

Remove the following files

  • ReportServer.mdf
  • ReportServer_log.LDF
  • ReportServerTempDB.mdf
  • ReportServerTempDB_log.LDF

Screenshot

Try the Following link for further help.

Reporting Services Catalog Error.


For the path is:

C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQL2012\MSSQL\DATA

where MSSQL2012 is the instance name and the respective file names are:

  • ReportServer$MSSQL2012.mdf
  • ReportServer$MSSQL2012_log.mdf
  • ReportServer$MSSQL2012TempDB.mdf
  • ReportServer$MSSQL2012TempDB_log.mdf

Solution 2

Remove the following files from the C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA directory:

bulletReportServer.mdf
bulletReportServer_log.LDF
bulletReportServerTempDB.mdf
bulletReportServerTempDB_log.LDF.

This happens if you reinstall SQL Server and these files weren't deleted.

Share:
52,878
Humza Khan
Author by

Humza Khan

Developer, Designer & deeply interested in Astrophysics.

Updated on July 09, 2022

Comments

  • Humza Khan
    Humza Khan almost 2 years

    I'm installing SQL Server 2012 at the moment and when I was about to run the installation, this error pops up:

    The errors can be seen clearly in this picture

    On clicking the first failed test, which is "Reporting Services Catalog Database File Existence", this is what i get:

    enter image description here

    On clicking the second failed test, which is "Reporting Services Catalog Temporary Database File Existence", this is what i get:

    enter image description here

    So basically, both of the message box says me that "Catalog Database File" & "Catalog Temporary database files exists". Because of this, i need to select Reporting Services file-only mode installation.

    My questions are:

    1. How do i select file-only mode installation?
    2. Do i've to close the setup and do something and afterwards run the setup again?

    Btw, I had SQL Server 2012 installed before. I uninstalled it completely due to some strange errors and decided to reinstall a fresh copy of SQL Server 2012 and now I'm stuck with these errors. Any help will be sincerely appreciated. :)

  • Boy Pasmo
    Boy Pasmo over 9 years
    Hi. This post and solution really helped me a lot of hours. Thank you!
  • Mason240
    Mason240 almost 9 years
    For me it was in C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA
  • call-me
    call-me over 7 years
    Exact same problem exact same solution.
  • Tiago Martins Peres
    Tiago Martins Peres about 7 years
    this fixed my problem as well. Thank you
  • Tiago Martins Peres
    Tiago Martins Peres almost 7 years
    had the exact same problem just now while installing in another machine haha
  • Jagz W
    Jagz W over 6 years
    Thanks. I was reinstalling Sql Server 2008 R2. Deleting the old files resolved the issue.