{"id":51743,"date":"2022-07-23T17:16:33","date_gmt":"2022-07-23T17:16:33","guid":{"rendered":"https:\/\/dbtut.com\/?p=51743"},"modified":"2022-07-23T17:35:08","modified_gmt":"2022-07-23T17:35:08","slug":"sql-server-telemetry-ceip-services","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/","title":{"rendered":"SQL Server Telemetry \\ CEIP Services"},"content":{"rendered":"<p>In today&#8217;s article we will talk about SQL Server Telemetry \\ CEIP Services.<\/p>\n<p>CEIP (Customer Experience Improvement Program) is a thing of the past and almost every supplier is running it to collect product usage data, problems encountered and other information.<\/p>\n<p>Every supplier has a Customer Experience Improvement Program \u2013 CEIP \u2013 to collect product usage data, issues encountered, and other information. Basically, it is a well-known and used method.<\/p>\n<p>Before SQL Server 2016, you could choose whether to participate in CEIP at the installation stage, but with the data and data management becoming more important, you join CEIP by default after SQL Server 2016, and if your server can access the internet, the data collected here is sent to the developer via CEIP. forwards it to the team.<\/p>\n<p>By the way, while talking about the CEIP incident, I would like to inform you that this is not a bad situation.<\/p>\n<p>It is certain to give Microsoft the ability to collect &#8220;useful&#8221; data in the development of the processes I have outlined below and to maximize the impact on future developments.<\/p>\n<p>Incident Management<\/p>\n<p>Alert management (proactive approach)<\/p>\n<p>Automatic management via bots (based on alerts)<\/p>\n<p>Machine learning \/ data science<\/p>\n<p>Exploring potential new features that can benefit maximum customers<\/p>\n<p>Microsoft implements and uses the CEIP event differently for multiple products it develops. If you want to opt out and disable CEIP, you can run the powershell script below.<\/p>\n<pre class=\"lang:default decode:true \">[code lang=\u201dps\u201d]\r\nGet-Service |\r\nWhere-Object { $_.Name -like \u2018*telemetry*\u2019 -or $_.DisplayName -like \u2018*CEIP*\u2019 } |\r\nForEach-Object {\r\n$servicename = $_.Name;\r\n$displayname = $_.DisplayName;\r\nSet-Service -Name $servicename -StartupType Disabled\r\n$serviceinfo = Get-Service -Name $servicename\r\n$startup = $serviceinfo.StartType\r\nWrite-Host \"$servicename : $startup : $displayname\";\r\n}\r\n\r\nSet-Location \"HKLM:\\\"\r\n$sqlentries = @( \"\\Software\\Microsoft\\Microsoft SQL Server\\\", \"\\Software\\Wow6432Node\\Microsoft\\Microsoft SQL Server\\\" )\r\nGet-ChildItem -Path $sqlentries -Recurse |\r\nForEach-Object {\r\n$keypath = $_.Name\r\n(Get-ItemProperty -Path $keypath).PSObject.Properties |\r\nWhere-Object { $_.Name -eq \"CustomerFeedback\" -or $_.Name -eq \"EnableErrorReporting\" } |\r\nForEach-Object {\r\n$itemporpertyname = $_.Name\r\n$olditemporpertyvalue = Get-ItemPropertyValue -Path $keypath -Name $itemporpertyname\r\nSet-ItemProperty -Path $keypath -Name $itemporpertyname -Value 0\r\n$newitemporpertyvalue = Get-ItemPropertyValue -Path $keypath -Name $itemporpertyname\r\nWrite-Host \"$keypath.$itemporpertyname = $olditemporpertyvalue \u2013&gt; $newitemporpertyvalue\"\r\n}\r\n}\r\n[\/code]<\/pre>\n<p>If you want to perform the operation performed with the above script manually, you can follow the steps below.<\/p>\n<p>First of all, stop the services that pass CEIP you see in services.msc.<\/p>\n<p>Then, make sure that the following records are changed via regedit, depending on the installed SQL Server features.<\/p>\n<pre class=\"lang:default decode:true \">HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\130\\CustomerFeedback=0HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\130\\EnableErrorReporting=0HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\MSAS13.TESTINSTANCE\\CPE\\CustomerFeedback=0HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\MSAS13.TESTINSTANCE\\CPE\\EnableErrorReporting=0HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\MSRS13.TESTINSTANCE\\CPE\\CustomerFeedback=0HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\MSRS13.TESTINSTANCE\\CPE\\EnableErrorReporting=0HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\MSSQL13.TESTINSTANCE\\CPE\\CustomerFeedback=0HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Microsoft SQL\r\nServer\\MSSQL13.TESTINSTANCE\\CPE\\EnableErrorReporting=0HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\r\n\\Microsoft SQL Server\\130\\CustomerFeedback=0HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Microsoft SQL Server\r\n\\130\\EnableErrorReporting=0<\/pre>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_51743\" class=\"pvc_stats all  \" data-element-id=\"51743\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s article we will talk about SQL Server Telemetry \\ CEIP Services. CEIP (Customer Experience Improvement Program) is a thing of the past and almost every supplier is running it to collect product usage data, problems encountered and other information. Every supplier has a Customer Experience Improvement Program \u2013 CEIP \u2013 to collect product &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_51743\" class=\"pvc_stats all  \" data-element-id=\"51743\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1414,"featured_media":51744,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-51743","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-mssql"],"aioseo_notices":[],"a3_pvc":{"activated":true,"total_views":450,"today_views":0},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SQL Server Telemetry \\ CEIP Services - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article we will talk about SQL Server Telemetry  CEIP Services.CEIP (Customer Experience Improvement Program)\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server Telemetry \\ CEIP Services - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article we will talk about SQL Server Telemetry  CEIP Services.CEIP (Customer Experience Improvement Program)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-23T17:16:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-23T17:35:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png\" \/>\n\t<meta property=\"og:image:width\" content=\"807\" \/>\n\t<meta property=\"og:image:height\" content=\"348\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"\u00c7a\u011flar \u00d6zen\u00e7\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u00c7a\u011flar \u00d6zen\u00e7\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/\"},\"author\":{\"name\":\"\u00c7a\u011flar \u00d6zen\u00e7\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab\"},\"headline\":\"SQL Server Telemetry \\\\ CEIP Services\",\"datePublished\":\"2022-07-23T17:16:33+00:00\",\"dateModified\":\"2022-07-23T17:35:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/\"},\"wordCount\":288,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png\",\"articleSection\":[\"MSSQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/\",\"name\":\"SQL Server Telemetry \\\\ CEIP Services - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png\",\"datePublished\":\"2022-07-23T17:16:33+00:00\",\"dateModified\":\"2022-07-23T17:35:08+00:00\",\"description\":\"In today's article we will talk about SQL Server Telemetry \\\\ CEIP Services.CEIP (Customer Experience Improvement Program)\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png\",\"width\":807,\"height\":348},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Telemetry \\\\ CEIP Services\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab\",\"name\":\"\u00c7a\u011flar \u00d6zen\u00e7\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g\",\"caption\":\"\u00c7a\u011flar \u00d6zen\u00e7\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/caglarozenc\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Server Telemetry \\ CEIP Services - Database Tutorials","description":"In today's article we will talk about SQL Server Telemetry  CEIP Services.CEIP (Customer Experience Improvement Program)","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server Telemetry \\ CEIP Services - Database Tutorials","og_description":"In today's article we will talk about SQL Server Telemetry  CEIP Services.CEIP (Customer Experience Improvement Program)","og_url":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/","og_site_name":"Database Tutorials","article_published_time":"2022-07-23T17:16:33+00:00","article_modified_time":"2022-07-23T17:35:08+00:00","og_image":[{"width":807,"height":348,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png","type":"image\/png"}],"author":"\u00c7a\u011flar \u00d6zen\u00e7","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\u00c7a\u011flar \u00d6zen\u00e7","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/"},"author":{"name":"\u00c7a\u011flar \u00d6zen\u00e7","@id":"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab"},"headline":"SQL Server Telemetry \\ CEIP Services","datePublished":"2022-07-23T17:16:33+00:00","dateModified":"2022-07-23T17:35:08+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/"},"wordCount":288,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png","articleSection":["MSSQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/","url":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/","name":"SQL Server Telemetry \\ CEIP Services - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png","datePublished":"2022-07-23T17:16:33+00:00","dateModified":"2022-07-23T17:35:08+00:00","description":"In today's article we will talk about SQL Server Telemetry \\ CEIP Services.CEIP (Customer Experience Improvement Program)","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/07\/Ekran-goruntusu-2022-07-23-201524.png","width":807,"height":348},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/07\/23\/sql-server-telemetry-ceip-services\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"SQL Server Telemetry \\ CEIP Services"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab","name":"\u00c7a\u011flar \u00d6zen\u00e7","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g","caption":"\u00c7a\u011flar \u00d6zen\u00e7"},"url":"https:\/\/dbtut.com\/index.php\/author\/caglarozenc\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/51743","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/1414"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=51743"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/51743\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/51744"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=51743"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=51743"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=51743"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}