sp_configure
'allow updates'
,
'0'
RECONFIGURE
WITH
OVERRIDE
If using Windows 8, you should instead make sure that the .Net 4.5 WCF services features are installed, and HTTP Activation feature is installed, as shown highlighted here:
In MDS Configuration Manager, when you click the button [Enable integration with Data Quality Services] , it may fail with an error when the server is a Windows Domain Controller (DC). The error is:
"Error while trying to enable integration with Data Quality Services. SQL Server returned the following error: Windows NT user or group 'ComputerName\MDS_ServiceAccounts' not found. Check the name again.
The cause of the problem is that MDS has created a global domain group called MDS_ServiceAccounts, and is trying to put the group into the DQS security role. Instead it should use the domainname\MDS_ServiceAccounts. SQL only allows windows user names (not group names), and MDS is confusing it about group vs. user. This is not fixed in the SQL 2012 released product, so use an easy workaround. Manual Workaround: 1. Manually add DOMAIN\MDS_ServiceAccounts as a Windows User login into your SQL Server security. Query to run in Management Studio. Replace the placeholder DOMAIN with your own domain name. use [DQS_MAIN] GO IF NOT EXISTS (SELECT * FROM SYS.SYSUSERS WHERE NAME = 'MDS_ServiceAccounts') CREATE USER [MDS_ServiceAccounts] FOR LOGIN [DOMAIN\MDS_ServiceAccounts] 2. Map the login to access DQS_MAIN role dqs_administrator which in effect is the same thing that the button does. Query to run in Management Studio: USE DQS_MAIN GO EXEC sp_addrolemember @rolename=N'dqs_administrator',@membername=N'MDS_ServiceAccounts' // It will call - ALTER ROLE [dqs_administrator] ADD MEMBER [MDS_ServiceAccounts] within the DQS_MAIN database. Now the MDS_ServiceAccounts are part of the dqs_administrator role, and MDS can interface with DQS on the same SQL Server instance.
Richard Mueller edited Revision 40. Comment: Change tag "sql server 2012 "Denali" columnstore index tuning" to "SQL Serrver 2012 "Denali"
Jason H - SQL edited Revision 39. Comment: Added "Error while trying to enable integration with Data Quality Services when running on a Domain Controller"
Fernando Lugão Veltem edited Revision 28. Comment: added portuguese version
Jason H - SQL edited Revision 4. Comment: added 404.3 error
Ed Price MSFT edited Revision 3. Comment: Title and tag
LarenC_MSFT edited Revision 2. Comment: Added HTTP 500.21 section
To solve "The required svc handler mappings are not installed in IIS." and some other issues you need to join computer where MDS is installed to an Active Directory domain. This issue has been identified in RCO and fixed in RTM.
I'm running into an issue with my SQL Server 2012 MDS installation and it doesn't seem to be covered anywhere.
The site is configured and I can access it, but the second I try to do anything on the Integration page, I get an error from Silverlight -- "The remote server returned an error: NotFound.".
Any ideas?
Thanks!!
Shawn