Wednesday, July 20, 2011

SSRS Scale-out Deployment–How to remove Instance

If you need to remove a SSRS SQL Server database instance from Reporting Services Configuration Manager such as due to migrating a RS database from one server to another, you can do so by running the RSKeyMgmt command.

On your Report Server, open a command prompt and enter the following to find the GUID you want to remove.

RSKeyMgmt –l

The above parameter is a lower case “L” not a one. Smile  That will return your list of machine instances. Mark and copy the GUID of the instance to remove. Then enter the following to remove that instance from that Report Server’s configuration.

RSKeyMgmt –r <GUID>

Yes or No: Y

Now your instance is removed from this RS configuration.

Reference Material:  http://msdn.microsoft.com/es-py/library/ms162822(v=SQL.110).aspx

4 comments:

  1. Sadly, Linda, SQL2012 doesn't support this argument in RTM through CU4.

    ReplyDelete
  2. I got an error "unable to locate the report server windows service for instance mssqlserver Can u advise

    ReplyDelete
    Replies
    1. hi, I also had the same error. How where you able to resolve this?

      Delete
  3. SQL 2012 does support the argument actually. The actual SQL instance needs to be specified though.

    Try using this:

    RSKeyMgmt –i "InstanceName" -l

    ReplyDelete