{"id":903,"date":"2025-02-11T11:06:11","date_gmt":"2025-02-11T16:06:11","guid":{"rendered":"https:\/\/www.sqltabletalk.com\/?p=903"},"modified":"2025-02-11T11:06:13","modified_gmt":"2025-02-11T16:06:13","slug":"tls-1-3-vs-tls-1-2-sql-server","status":"publish","type":"post","link":"https:\/\/www.sqltabletalk.com\/?p=903","title":{"rendered":"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections"},"content":{"rendered":"<h1>Introduction<\/h1>\n<p>Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Below is a look at these improvements and how you can implement TLS 1.3 in SQL Server.<\/p>\n<h2>1. Handshake Efficiency<\/h2>\n<h3>Reduced Round Trips<\/h3>\n<p><strong>TLS 1.2:<\/strong> Requires two round trips during the handshake phase.<br \/>\n<strong>TLS 1.3:<\/strong> Reduces this to one round trip (1-RTT), cutting latency and speeding up the establishment of secure connections.<\/p>\n<p>In practical terms, when a client initiates a connection, it sends the \u201cClient Hello\u201d message. With TLS 1.3, the server can respond with an encrypted \u201cServer Hello\u201d in a single pass, establishing keys and negotiating parameters more efficiently.<\/p>\n<h3>0-RTT Resumption<\/h3>\n<p><strong>0-RTT Resumption:<\/strong> TLS 1.3 allows reconnections without a full handshake, using previously shared session information. This reduces overhead in repeated connections, although implementers must manage replay attack risks carefully.<br \/>\nIn TLS 1.2, <strong>1-RTT resumption<\/strong> required an extra exchange, which adds latency for subsequent connections.<\/p>\n<h2>2. Enhanced Encryption<\/h2>\n<h3>Encrypted Server Hello<\/h3>\n<p>TLS 1.3 encrypts the Server Hello and accompanying server certificate almost immediately, significantly reducing the risk of intermediaries intercepting or tampering with certificate details. In TLS 1.2, parts of the handshake, including the server certificate, were sent in the clear before the encryption keys were established.<\/p>\n<h3>Forward Secrecy<\/h3>\n<p>TLS 1.3 enforces ephemeral key exchange (typically ECDHE), ensuring that past sessions cannot be decrypted retroactively if a private key is compromised. This guarantees forward secrecy, meaning each session has a unique session key that cannot be reused or decrypted once the session is completed.<\/p>\n<h2>3. Deprecation of Insecure Algorithms<\/h2>\n<p>TLS 1.3 removes several outdated or vulnerable cryptographic constructs:<\/p>\n<ul>\n<li>Static RSA key exchange methods<\/li>\n<li>CBC (Cipher Block Chaining) modes<\/li>\n<li>Weak ciphers such as RC4<\/li>\n<\/ul>\n<p>By eliminating these legacy algorithms, TLS 1.3 significantly hardens the security posture of your SQL Server connections.<\/p>\n<h2>4. Streamlined Cipher Suites<\/h2>\n<p>In TLS 1.3, the negotiation of cipher suites is simplified. Fewer cipher suite options mean reduced complexity and less chance of misconfiguration. This simplification ensures that modern, secure algorithms\u2014such as <strong>AES-GCM<\/strong> and <strong>ChaCha20-Poly1305<\/strong>\u2014are used for bulk encryption.<\/p>\n<h2>5. SQL Server Implementation: TDS8 and Driver Requirements<\/h2>\n<h3>TDS8 Protocol<\/h3>\n<p>SQL Server\u2019s Tabular Data Stream (TDS) protocol has been updated to TDS8 to support TLS 1.3. When establishing a connection with TDS8, the SQL client and server negotiate TLS 1.3 during the handshake. Once established, all TDS traffic is encrypted under the newly derived TLS 1.3 session keys.<\/p>\n<h3>Required Driver Versions<\/h3>\n<p>To take advantage of TLS 1.3, you must ensure both SQL Server and client drivers are updated. At minimum, use:<\/p>\n<ul>\n<li>Microsoft ADO.NET for SQL Server and Azure SQL Database: Version 5.1 or higher<\/li>\n<li>ODBC Driver for SQL Server: Version 18.1.2.1 or higher<\/li>\n<li>OLE DB Driver for SQL Server: Version 19.2.0 or higher<\/li>\n<li>Microsoft JDBC Driver for SQL Server: Version 11.2.0 or higher<\/li>\n<li>Microsoft Drivers for PHP for SQL Server: Version 5.10 or higher<\/li>\n<li>Python SQL Driver (pyodbc): Ensure you have a release that supports TLS 1.3<\/li>\n<\/ul>\n<h3>SSMS and Connection String<\/h3>\n<p><strong>SQL Server Management Studio (SSMS) 20 or later<\/strong> (or the latest SQL drivers)<br \/>\n<strong>Connection String:<\/strong> Include <code>encrypt=Strict<\/code> to enforce TLS 1.3. For example:<\/p>\n<pre><code>Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;Encrypt=Strict;<\/code><\/pre>\n<p>With <code>encrypt=Strict<\/code>, the client will only connect using TLS, and if TLS 1.3 is supported on both client and server, the connection will use the latest protocol.<\/p>\n<h2>6. Deployment Considerations<\/h2>\n<p><strong>Server Configuration:<\/strong> Ensure the operating system and SQL Server instance are both configured to support TLS 1.3. This may require OS-level patches and registry configurations.<\/p>\n<p><strong>Performance Analysis:<\/strong> The improved handshake reduces initial latency, which can be critical for applications making frequent short-lived connections to SQL Server.<\/p>\n<p><strong>Monitoring and Validation:<\/strong> Use tools like Wireshark or built-in SQL Server logs to verify that connections are indeed leveraging TLS 1.3. Validate that no fallback to older protocols occurs unless explicitly allowed for compatibility.<\/p>\n<p><strong>Replay Attack Mitigation:<\/strong> If you enable 0-RTT resumption, be aware of replay attack scenarios. Implement stricter controls or design your application to avoid sensitive operations during 0-RTT phases.<\/p>\n<p><strong>Backward Compatibility:<\/strong> If you manage legacy clients that cannot support TLS 1.3, you may need to allow TLS 1.2 or older protocols. However, this can weaken security if not carefully segmented or controlled.<\/p>\n<h2>Conclusion<\/h2>\n<p>Migrating from TLS 1.2 to TLS 1.3 in SQL Server environments yields tangible benefits: reduced handshake latency, stronger encryption, and the deprecation of insecure algorithms. By updating to TDS8-capable drivers, configuring <code>encrypt=Strict<\/code> in your connection strings, and ensuring your SQL Server instance supports TLS 1.3, you can immediately enhance performance and security for your database applications. For further details on setup, troubleshooting, and compatibility, consult the official Microsoft documentation. It\u2019s a worthwhile upgrade to keep your SQL Server environment both efficient and secure in the modern threat landscape.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Learn more about it in this post.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[116,120,29,84],"tags":[93,403,509,507,508,131,161,506,505,504],"class_list":["post-903","post","type-post","status-publish","format-standard","hentry","category-connectivity","category-encryption","category-security","category-sql-developer","tag-ado-net","tag-database-performance","tag-encryptstrict","tag-odbc-driver","tag-secure-connections","tag-sql-server","tag-sql-server-security","tag-tds8","tag-tls-1-2","tag-tls-1-3"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections - SQL Table Talk<\/title>\n<meta name=\"description\" content=\"Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Learn more about it in this post.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqltabletalk.com\/?p=903\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections - SQL Table Talk\" \/>\n<meta property=\"og:description\" content=\"Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Learn more about it in this post.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltabletalk.com\/?p=903\" \/>\n<meta property=\"og:site_name\" content=\"SQL Table Talk\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-11T16:06:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-11T16:06:13+00:00\" \/>\n<meta name=\"author\" content=\"Yvonne Vanslageren\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yvonne Vanslageren\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=903#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=903\"},\"author\":{\"name\":\"Yvonne Vanslageren\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082\"},\"headline\":\"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections\",\"datePublished\":\"2025-02-11T16:06:11+00:00\",\"dateModified\":\"2025-02-11T16:06:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=903\"},\"wordCount\":769,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"keywords\":[\"ADO.NET\",\"Database Performance\",\"Encrypt=Strict\",\"ODBC Driver\",\"Secure Connections\",\"SQL Server\",\"SQL Server security\",\"TDS8\",\"TLS 1.2\",\"TLS 1.3\"],\"articleSection\":[\"Connectivity\",\"Encryption\",\"Security\",\"SQL Developer\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=903#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=903\",\"url\":\"https:\/\/www.sqltabletalk.com\/?p=903\",\"name\":\"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections - SQL Table Talk\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\"},\"datePublished\":\"2025-02-11T16:06:11+00:00\",\"dateModified\":\"2025-02-11T16:06:13+00:00\",\"description\":\"Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Learn more about it in this post.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=903#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=903\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=903#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltabletalk.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\",\"url\":\"https:\/\/www.sqltabletalk.com\/\",\"name\":\"SQL Table Talk\",\"description\":\"Breaking Down SQL Server, One Post at a Time.\",\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqltabletalk.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\",\"name\":\"Stephen Planck\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"caption\":\"Stephen Planck\"},\"logo\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/dexterwiki.com\",\"https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI\",\"https:\/\/www.youtube.com\/linuxmate\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082\",\"name\":\"Yvonne Vanslageren\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g\",\"caption\":\"Yvonne Vanslageren\"},\"url\":\"https:\/\/www.sqltabletalk.com\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections - SQL Table Talk","description":"Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Learn more about it in this post.","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:\/\/www.sqltabletalk.com\/?p=903","og_locale":"en_US","og_type":"article","og_title":"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections - SQL Table Talk","og_description":"Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Learn more about it in this post.","og_url":"https:\/\/www.sqltabletalk.com\/?p=903","og_site_name":"SQL Table Talk","article_published_time":"2025-02-11T16:06:11+00:00","article_modified_time":"2025-02-11T16:06:13+00:00","author":"Yvonne Vanslageren","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yvonne Vanslageren","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqltabletalk.com\/?p=903#article","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/?p=903"},"author":{"name":"Yvonne Vanslageren","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082"},"headline":"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections","datePublished":"2025-02-11T16:06:11+00:00","dateModified":"2025-02-11T16:06:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqltabletalk.com\/?p=903"},"wordCount":769,"commentCount":0,"publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"keywords":["ADO.NET","Database Performance","Encrypt=Strict","ODBC Driver","Secure Connections","SQL Server","SQL Server security","TDS8","TLS 1.2","TLS 1.3"],"articleSection":["Connectivity","Encryption","Security","SQL Developer"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqltabletalk.com\/?p=903#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqltabletalk.com\/?p=903","url":"https:\/\/www.sqltabletalk.com\/?p=903","name":"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections - SQL Table Talk","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/#website"},"datePublished":"2025-02-11T16:06:11+00:00","dateModified":"2025-02-11T16:06:13+00:00","description":"Transport Layer Security (TLS) is a cryptographic protocol designed to safeguard data in transit. While TLS 1.2 has been a long-standing standard, TLS 1.3 introduces significant technical enhancements that make SQL Server connections both faster and more secure. Learn more about it in this post.","breadcrumb":{"@id":"https:\/\/www.sqltabletalk.com\/?p=903#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltabletalk.com\/?p=903"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltabletalk.com\/?p=903#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltabletalk.com\/"},{"@type":"ListItem","position":2,"name":"TLS 1.3 vs. TLS 1.2 for SQL Server: Faster, More Secure Connections"}]},{"@type":"WebSite","@id":"https:\/\/www.sqltabletalk.com\/#website","url":"https:\/\/www.sqltabletalk.com\/","name":"SQL Table Talk","description":"Breaking Down SQL Server, One Post at a Time.","publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqltabletalk.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0","name":"Stephen Planck","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","caption":"Stephen Planck"},"logo":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/dexterwiki.com","https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI","https:\/\/www.youtube.com\/linuxmate"]},{"@type":"Person","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082","name":"Yvonne Vanslageren","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g","caption":"Yvonne Vanslageren"},"url":"https:\/\/www.sqltabletalk.com\/?author=2"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/903","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=903"}],"version-history":[{"count":3,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/903\/revisions"}],"predecessor-version":[{"id":982,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/903\/revisions\/982"}],"wp:attachment":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=903"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=903"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=903"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}