RE: Management Reporter and Data Mart
Hi Teh
I have recently done a move and an upgrade of MR successfully, but it took some steps in order for me to get there. What I did was the move the MR database only.
Firstly, are you moving the MR databases to a new domain? If you are then you need to check your AD SID for the Administrator to see if it matches what is in the MR Database. Here are some below steps to determine if it is the same or different. Once that is verified and would let you know what I did to continue to troubleshoot and resolve the issue.
Let's verify this.
1. Log onto the MR server.
2. Click Start | Run and enter CMD
a. At the Dos command type:
Whoami /user
b. In the DOS window, right-click, select “Select All”, and then press Enter.
c. Paste the information into Notepad.
d. Save the Notepad file.
3. Run this against the MR database:
SELECT A.UserName,
B.Name,
CASE A.ROLETYPE
WHEN 2 THEN 'VIEWER'
WHEN 3 THEN 'GENERATOR'
WHEN 4 THEN 'DESIGNER'
WHEN 5 THEN 'ADMINISTRATOR'
END AS SecurityRole,
A.WindowsSecurityIdentifier,
A.UserID,
CASE A. AccountDisabled
When 0 Then 'Enabled'
When 1 Then 'Disabled'
End AS AccountStatus
FROM Reporting.SecurityUser A
JOIN Reporting.SecurityPrincipal B
ON A.USERID = B.ID
ORDER BY A.UserName