{"id":1171,"date":"2025-08-05T12:30:41","date_gmt":"2025-08-05T17:30:41","guid":{"rendered":"https:\/\/www.sqltabletalk.com\/?p=1171"},"modified":"2025-08-05T12:30:42","modified_gmt":"2025-08-05T17:30:42","slug":"tempdb-space-resource-governance-sql-server-2025","status":"publish","type":"post","link":"https:\/\/www.sqltabletalk.com\/?p=1171","title":{"rendered":"Controlling TempDB Resources with Resource Governor in SQL Server 2025"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. <strong>SQL Server 2025<\/strong>\u00a0finally gives database administrators a precise brake pedal: <em>TempDB Space Resource Governance<\/em>, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.<\/p>\n<h2>How the new governance works<\/h2>\n<p>Resource Governor already funnels incoming sessions into workload groups and can throttle their CPU, memory, and I\/O. SQL Server 2025 adds two new settings that you can attach to any workload group:<\/p>\n<ul>\n<li>GROUP_MAX_TEMPDB_DATA_MB \u2013 a hard limit expressed in megabytes.<\/li>\n<li>GROUP_MAX_TEMPDB_DATA_PERCENT \u2013 a limit expressed as a percentage of the maximum size of tempdb.<\/li>\n<\/ul>\n<p>When a statement would push the group past its quota, SQL Server cancels the request with error 1138 and increments a violation counter. The failure happens before the data-file grows, so other workloads remain unaffected. Internally, the engine tracks every 8-KB allocation tied to a session\u2014temporary tables, hash and sort spill files, version-store pages, and more. Space used by the common version store is not governed because those pages can be shared by multiple groups.<\/p>\n<h2>Why you should enable it<\/h2>\n<ul>\n<li><strong>Contain runaway queries<\/strong> \u2013 A single ad-hoc query can no longer fill the drive and crash the instance.<\/li>\n<li><strong>Fair multi-tenancy<\/strong> \u2013 Allocate separate quotas for each application, tenant, or business unit on a shared server.<\/li>\n<li><strong>Reliable batch windows<\/strong> \u2013 Large ETL or index-rebuild jobs get their own ceiling, protecting interactive workloads.<\/li>\n<li><strong>Proactive alerting<\/strong> \u2013 Limit violations are surfaced instantly in dynamic-management views, so monitoring tools can raise alerts before disk-space alarms fire.<\/li>\n<\/ul>\n<h2>Practical scenarios<\/h2>\n<ul>\n<li>SaaS platforms hosting dozens of customer databases on one VM.<\/li>\n<li>Banking systems where overnight batch cycles share a server with daytime OLTP.<\/li>\n<li>Development and QA boxes where testers often run \u201cSELECT * INTO #huge_table\u201d.<\/li>\n<li>Analytics workloads that spill to tempdb during large joins or sorts.<\/li>\n<\/ul>\n<h2>Quick configuration example<\/h2>\n<p>The script below caps the default workload at <strong>20 GB<\/strong> and places an ETL tool in its own workload group limited to <strong>15%<\/strong> of tempdb. Adjust the classifier logic to match your environment.<\/p>\n<pre><code>-- Create a workload group for ETL sessions and cap it at 15% of tempdb\nCREATE WORKLOAD GROUP etl_group\nWITH (GROUP_MAX_TEMPDB_DATA_PERCENT = 15);\n\n-- Classify sessions whose application name is 'DataStage' into that group\nUSE master;\nGO\nCREATE OR ALTER FUNCTION dbo.rg_classifier()\nRETURNS sysname WITH SCHEMABINDING AS\nBEGIN\n    RETURN (CASE WHEN APP_NAME() = 'DataStage'\n                 THEN 'etl_group'\n                 ELSE 'default'\n            END);\nEND;\nGO\n\nALTER RESOURCE GOVERNOR WITH (CLASSIFIER_FUNCTION = dbo.rg_classifier);\n\n-- Cap all remaining sessions (default group) at 20 GB\nALTER WORKLOAD GROUP default\n    WITH (GROUP_MAX_TEMPDB_DATA_MB = 20480);\n\n-- Turn the new rules on\nALTER RESOURCE GOVERNOR RECONFIGURE;<\/code><\/pre>\n<p>After deployment you can monitor usage and any limit breaches in real time:<\/p>\n<pre><code>SELECT name,\n       group_max_tempdb_data_mb,\n       group_max_tempdb_data_percent,\n       tempdb_data_space_kb,\n       total_tempdb_data_limit_violation_count\nFROM   sys.dm_resource_governor_workload_groups;<\/code><\/pre>\n<h2>Operational tips<\/h2>\n<ul>\n<li><strong>Measure before you restrict.<\/strong> Leave the limits at NULL for a week and record each group\u2019s peak usage to establish a safe ceiling.<\/li>\n<li><strong>Assign everything.<\/strong> Internal engine tasks run in the default group, so give that group enough headroom or explicitly classify those sessions elsewhere.<\/li>\n<li><strong>Fix file sizes if you use percentages.<\/strong> GROUP_MAX_TEMPDB_DATA_PERCENT relies on tempdb having a firm MAXSIZE or disabled autogrowth; otherwise the percentage moves as the files grow.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>TempDB Space Resource Governance in SQL Server 2025 brings long-awaited protection against runaway tempdb usage. By defining just a few workload-group limits you can keep critical workloads responsive, prevent emergency disk-full events, and make multi-tenant instances predictable. If you manage any busy or shared SQL Server, add this feature to your standard build script on day one.<\/p>\n<p>Further Reading from Microsoft documentation:<\/p>\n<ul>\n<li><a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/relational-databases\/resource-governor\/tempdb-space-resource-governance?view=sql-server-ver17\">TempDB Space Resource Governance<\/a><\/li>\n<li><a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/relational-databases\/resource-governor\/tempdb-space-resource-governance-walkthrough?view=sql-server-ver17\">TempDB Space Resource Governance Walkthrough<\/a><\/li>\n<\/ul>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. SQL Server 2025\u00a0finally gives database administrators a precise brake pedal: TempDB Space Resource Governance, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.<\/p>\n","protected":false},"author":1,"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":[87,6,5,427],"tags":[624,621,85,622,619,625,585,620,443,623],"class_list":["post-1171","post","type-post","status-publish","format-standard","hentry","category-etl","category-memory","category-performance","category-sql-server-2025","tag-database-administration-2","tag-database-performance-2","tag-etl","tag-multi-tenancy","tag-resource-governor-2","tag-sql-performance","tag-sql-server-2","tag-sql-server-2025-2","tag-tempdb","tag-workload-management"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Controlling TempDB Resources with Resource Governor in SQL Server 2025 - SQL Table Talk<\/title>\n<meta name=\"description\" content=\"Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. SQL Server 2025\u00a0finally gives database administrators a precise brake pedal: TempDB Space Resource Governance, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.\" \/>\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=1171\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Controlling TempDB Resources with Resource Governor in SQL Server 2025 - SQL Table Talk\" \/>\n<meta property=\"og:description\" content=\"Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. SQL Server 2025\u00a0finally gives database administrators a precise brake pedal: TempDB Space Resource Governance, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltabletalk.com\/?p=1171\" \/>\n<meta property=\"og:site_name\" content=\"SQL Table Talk\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-05T17:30:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-05T17:30:42+00:00\" \/>\n<meta name=\"author\" content=\"Stephen Planck\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stephen Planck\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=1171#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=1171\"},\"author\":{\"name\":\"Stephen Planck\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"headline\":\"Controlling TempDB Resources with Resource Governor in SQL Server 2025\",\"datePublished\":\"2025-08-05T17:30:41+00:00\",\"dateModified\":\"2025-08-05T17:30:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=1171\"},\"wordCount\":531,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"keywords\":[\"database-administration\",\"database-performance\",\"ETL\",\"multi-tenancy\",\"resource-governor\",\"sql-performance\",\"sql-server\",\"sql-server-2025\",\"TempDB\",\"workload-management\"],\"articleSection\":[\"ETL\",\"Memory\",\"Performance\",\"SQL Server 2025\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=1171#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=1171\",\"url\":\"https:\/\/www.sqltabletalk.com\/?p=1171\",\"name\":\"Controlling TempDB Resources with Resource Governor in SQL Server 2025 - SQL Table Talk\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\"},\"datePublished\":\"2025-08-05T17:30:41+00:00\",\"dateModified\":\"2025-08-05T17:30:42+00:00\",\"description\":\"Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. SQL Server 2025\u00a0finally gives database administrators a precise brake pedal: TempDB Space Resource Governance, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=1171#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=1171\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=1171#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltabletalk.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Controlling TempDB Resources with Resource Governor in SQL Server 2025\"}]},{\"@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\"],\"url\":\"https:\/\/www.sqltabletalk.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Controlling TempDB Resources with Resource Governor in SQL Server 2025 - SQL Table Talk","description":"Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. SQL Server 2025\u00a0finally gives database administrators a precise brake pedal: TempDB Space Resource Governance, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.","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=1171","og_locale":"en_US","og_type":"article","og_title":"Controlling TempDB Resources with Resource Governor in SQL Server 2025 - SQL Table Talk","og_description":"Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. SQL Server 2025\u00a0finally gives database administrators a precise brake pedal: TempDB Space Resource Governance, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.","og_url":"https:\/\/www.sqltabletalk.com\/?p=1171","og_site_name":"SQL Table Talk","article_published_time":"2025-08-05T17:30:41+00:00","article_modified_time":"2025-08-05T17:30:42+00:00","author":"Stephen Planck","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stephen Planck","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqltabletalk.com\/?p=1171#article","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/?p=1171"},"author":{"name":"Stephen Planck","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"headline":"Controlling TempDB Resources with Resource Governor in SQL Server 2025","datePublished":"2025-08-05T17:30:41+00:00","dateModified":"2025-08-05T17:30:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqltabletalk.com\/?p=1171"},"wordCount":531,"commentCount":0,"publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"keywords":["database-administration","database-performance","ETL","multi-tenancy","resource-governor","sql-performance","sql-server","sql-server-2025","TempDB","workload-management"],"articleSection":["ETL","Memory","Performance","SQL Server 2025"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqltabletalk.com\/?p=1171#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqltabletalk.com\/?p=1171","url":"https:\/\/www.sqltabletalk.com\/?p=1171","name":"Controlling TempDB Resources with Resource Governor in SQL Server 2025 - SQL Table Talk","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/#website"},"datePublished":"2025-08-05T17:30:41+00:00","dateModified":"2025-08-05T17:30:42+00:00","description":"Every SQL Server instance relies on tempdb as its universal scratch pad. When one poorly-written report or maintenance job floods that database with temporary objects, the entire server can stall or even go offline. SQL Server 2025\u00a0finally gives database administrators a precise brake pedal: TempDB Space Resource Governance, an extension to Resource Governor that lets you cap how much tempdb space each workload can consume.","breadcrumb":{"@id":"https:\/\/www.sqltabletalk.com\/?p=1171#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltabletalk.com\/?p=1171"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltabletalk.com\/?p=1171#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltabletalk.com\/"},{"@type":"ListItem","position":2,"name":"Controlling TempDB Resources with Resource Governor in SQL Server 2025"}]},{"@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"],"url":"https:\/\/www.sqltabletalk.com\/?author=1"}]}},"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\/1171","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1171"}],"version-history":[{"count":1,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/1171\/revisions"}],"predecessor-version":[{"id":1172,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/1171\/revisions\/1172"}],"wp:attachment":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1171"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1171"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1171"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}