2017-04-21 1 views
5

Durch die Installation von SQL 2016 werden alle "CEIP" - oder Elemente des Programms zur Verbesserung des Benutzererlebnisses automatisch aktiviert. Diese Elemente berichten Microsoft über verschiedene Aspekte Ihrer Installationserfahrung sowie Ihrer Feature-Verwendung. Ich möchte es abstellen, weil es ohnehin von unseren Firewalls blockiert ist und ich keine Kopfschmerzen brauche.So deaktivieren Sie die Telemetrie für SQL 2016

Antwort

12

Stellt sich heraus, dies scheint ziemlich einfach. Legen Sie die folgenden Registrierungsschlüssel:

HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\130\CustomerFeedback=0 
HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\130\EnableErrorReporting=0 
HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSAS13.TESTINSTANCE\CPE\CustomerFeedback=0 
HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSAS13.TESTINSTANCE\CPE\EnableErrorReporting=0 
HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSRS13.TESTINSTANCE\CPE\CustomerFeedback=0 
HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSRS13.TESTINSTANCE\CPE\EnableErrorReporting=0 
HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSSQL13.TESTINSTANCE\CPE\CustomerFeedback=0 
HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSSQL13.TESTINSTANCE\CPE\EnableErrorReporting=0 
HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Microsoft SQL Server\130\CustomerFeedback=0 
HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Microsoft SQL Server\130\EnableErrorReporting=0 

Wenn eine der Tasten nicht vorhanden sind, dann OK, das ist, weil Sie anscheinend nicht dieses Feature installiert haben.

Deaktivieren Sie die folgenden Leistungen:

SQL Analysis Services CEIP 
SQL Server CEIP service 
SQL Server Integration Services CEIP service 13.0 
+2

Danke. Ich weiß nicht warum, aber die drei Telemetrie-Dienste haben eine Menge RAM auf unserem Server benutzt ... – appl3r

2

Necromancing.
Quick-Fix-Version:

Windows Registry Editor Version 5.00 

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\130] 
"EnableErrorReporting"=dword:00000000 
"CustomerFeedback"=dword:00000000 

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SQL Server\130] 
"EnableErrorReporting"=dword:00000000 
"CustomerFeedback"=dword:00000000 




[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL13.MSSQLSERVER\CPE] 
"EnableErrorReporting"=dword:00000000 
"CustomerFeedback"=dword:00000000 

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSAS13.MSSQLSERVER\CPE] 
"EnableErrorReporting"=dword:00000000 
"CustomerFeedback"=dword:00000000 

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSRS13.MSSQLSERVER\CPE] 
"EnableErrorReporting"=dword:00000000 
"CustomerFeedback"=dword:00000000 

Suchen und Ersetzen MSSQLSERVER mit Instanznamen.

0

Sie können auch die „Fehler- und Verwendungsbericht Einstellungen“ App verwenden, die mit Microsoft SQL Server installiert ist 2016.

Diese article zeigt die Details mit schönen Bildern. Könnte Fat-Finger speichern, die Ihre Registrierung bearbeiten. Bei meinen Tests war kein Neustart erforderlich, es funktionierte einfach.

Verwandte Themen