Microsoft (R) SQL Server 2022 16.00.1170.05
Copyright (c) 2022 Microsoft. All rights reserved.
SQL Server 2022 transmits information about your installation experience, as well as other usage and performance data, to Microsoft to help improve the product. To learn more about SQL Server 2022 data processing and privacy controls, please see the Privacy Statement.
Sprawdzenie aktualnego ustawienia telemetrii:
SELECT name, value, value_in_useFROM sys.configurationsWHERE name = 'telemetry enabled';
Jak wyłączyć telemetrię ?
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'telemetry enabled', 0;
RECONFIGURE;