{"id":969,"date":"2025-01-31T10:18:24","date_gmt":"2025-01-31T15:18:24","guid":{"rendered":"https:\/\/www.sqltabletalk.com\/?p=969"},"modified":"2025-01-31T10:18:25","modified_gmt":"2025-01-31T15:18:25","slug":"understanding-and-managing-the-model-msdb-and-master-databases-in-sql-server","status":"publish","type":"post","link":"https:\/\/www.sqltabletalk.com\/?p=969","title":{"rendered":"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server"},"content":{"rendered":"<p><!-- Title --><\/p>\n<h2>Introduction<\/h2>\n<p><!-- Introduction --><\/p>\n<p>It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.<\/p>\n<p><!-- Master Database Section --><\/p>\n<h2>The Master Database<\/h2>\n<p>The master database is the foundation of your SQL Server instance. It holds data on all databases residing on the server, as well as critical instance-level settings like logins, linked servers, and endpoints. If master is inaccessible or corrupted, SQL Server may not even start.<\/p>\n<p>Although you can make custom changes in master, it\u2019s safer to keep these minimal. Storing user objects in master can introduce major risks. If corruption occurs, it can affect the entire instance. If you need to add custom configurations at the server level\u2014like server-wide settings\u2014always document them and keep scripts on hand so you can reapply them if you need to rebuild or fix master in the future.<\/p>\n<p>Because master stores fundamental server information, regular backups are essential. A good practice is to capture a fresh backup whenever you make critical configuration changes. Restoring master typically involves starting SQL Server in single-user mode, so it\u2019s wise to rehearse that procedure in a test environment. This ensures you won\u2019t be caught off-guard if a real emergency ever arises.<\/p>\n<p><!-- MSDB Database Section --><\/p>\n<h2>The MSDB Database<\/h2>\n<p>While master handles the \u201cwhat and where\u201d of your SQL Server environment, msdb is all about operations. It stores SQL Server Agent jobs, alerts, operators, backup history, and potentially service broker objects. When you schedule routine backups or set up automated tasks, msdb is where those definitions and histories live.<\/p>\n<p>Because SQL Server places job and backup data in msdb by default, it can grow substantially over time. Old backup history and extensive job logs can clutter the database, so it\u2019s a good idea to configure regular cleanups or use stored procedures such as <code>sp_delete_backuphistory<\/code> to remove stale records. This prevents msdb from growing out of control and helps maintain performance.<\/p>\n<p>Frequent backups of msdb are just as important as they are for master, especially if you update SQL Server Agent jobs or alerts daily. Corruption in msdb can disrupt your entire automation schedule, so it\u2019s imperative to include msdb in regular integrity checks (<code>DBCC CHECKDB<\/code>). If trouble strikes, you\u2019ll want a current backup to restore your jobs and historical data.<\/p>\n<p><!-- Model Database Section --><\/p>\n<h2>The Model Database<\/h2>\n<p>While master and msdb often take center stage in discussions about system databases, the model database shapes the creation of every new database on the server. Whenever you issue a <code>CREATE DATABASE<\/code> command, SQL Server clones model to form the new database. This means file size settings, recovery models, or any objects you create in model will appear in each new database you generate.<\/p>\n<p>Customizing model can be a powerful way to enforce standard configurations. For example, if you typically prefer larger initial file sizes, or if you want every new database to start in the FULL recovery model, you can set those defaults in model. You might also add common utility stored procedures you find yourself installing repeatedly. However, be careful not to clutter model with unnecessary objects. Anything you put there becomes part of every new database you create\u2014sometimes leading to confusion or wasted storage.<\/p>\n<p>Because model may not change as frequently as master or msdb, some DBAs treat it as \u201cset it and forget it.\u201d But it\u2019s best practice to include model in your routine backups and integrity checks. Even if changes are rare, you don\u2019t want to discover corruption only when you try to create a new database and run into errors. As with master and msdb, it\u2019s best to create a backup of model after making any significant changes to its settings or objects.<\/p>\n<p><!-- Corruption Checks and Maintenance Section --><\/p>\n<h2>Corruption Checks and Maintenance<\/h2>\n<p>System databases deserve the same level of attention as user databases\u2014if not more. A common strategy is to include master, msdb, and model in scheduled <code>DBCC CHECKDB<\/code> tasks, which help you detect and address corruption early. While master and msdb often warrant daily checks in production environments, model may be checked less frequently, but it should still be part of the regular cycle.<\/p>\n<p>Full backups of these system databases are also crucial. Many DBAs use the SIMPLE recovery model for master and model, performing a backup after any important change. For msdb, some prefer FULL recovery if they want point-in-time recovery for job or alert configurations, although this can vary depending on the environment\u2019s needs. No matter which recovery model you choose, consistent backups ensure you\u2019re ready to restore if trouble arises.<\/p>\n<p><!-- Conclusion --><\/p>\n<h2>Conclusion<\/h2>\n<p>The master, msdb, and model databases underpin the functionality of your entire SQL Server instance. The master database supplies the roadmap of your server, the msdb database orchestrates critical automation, and the model database shapes the default structure of every new database. When you regularly back them up, include them in integrity checks, and manage their growth, you ensure a robust SQL Server environment that\u2019s resilient in the face of hardware failure, user error, or corruption. By paying attention to these often-overlooked system databases, you lay the groundwork for a more secure, efficient, and dependable SQL Server deployment.<\/p>\n<p>Further Reading:<\/p>\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/relational-databases\/databases\/system-databases?view=sql-server-ver16\">Microsoft Documentation: System Databases<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.<\/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":[82,12,54],"tags":[487,484,486,4,481,483,482,131,485,460],"class_list":["post-969","post","type-post","status-publish","format-standard","hentry","category-database-configuration","category-internals","category-maintenance","tag-database-corruption-prevention","tag-database-maintenance","tag-dbcc-checkdb","tag-internals","tag-master-database","tag-model-database","tag-msdb-database","tag-sql-server","tag-sql-server-backup","tag-sql-server-best-practices"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Understanding and Managing the Model, MSDB, and Master Databases in SQL Server - SQL Table Talk<\/title>\n<meta name=\"description\" content=\"It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.\" \/>\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=969\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server - SQL Table Talk\" \/>\n<meta property=\"og:description\" content=\"It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltabletalk.com\/?p=969\" \/>\n<meta property=\"og:site_name\" content=\"SQL Table Talk\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-31T15:18:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-31T15:18:25+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=\"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=969#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=969\"},\"author\":{\"name\":\"Stephen Planck\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"headline\":\"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server\",\"datePublished\":\"2025-01-31T15:18:24+00:00\",\"dateModified\":\"2025-01-31T15:18:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=969\"},\"wordCount\":925,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"keywords\":[\"Database Corruption Prevention\",\"Database Maintenance\",\"DBCC CHECKDB\",\"Internals\",\"Master Database\",\"Model Database\",\"MSDB Database\",\"SQL Server\",\"SQL Server Backup\",\"SQL Server Best Practices\"],\"articleSection\":[\"Database Configuration\",\"Internals\",\"Maintenance\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=969#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=969\",\"url\":\"https:\/\/www.sqltabletalk.com\/?p=969\",\"name\":\"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server - SQL Table Talk\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\"},\"datePublished\":\"2025-01-31T15:18:24+00:00\",\"dateModified\":\"2025-01-31T15:18:25+00:00\",\"description\":\"It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=969#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=969\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=969#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltabletalk.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server\"}]},{\"@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":"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server - SQL Table Talk","description":"It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.","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=969","og_locale":"en_US","og_type":"article","og_title":"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server - SQL Table Talk","og_description":"It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.","og_url":"https:\/\/www.sqltabletalk.com\/?p=969","og_site_name":"SQL Table Talk","article_published_time":"2025-01-31T15:18:24+00:00","article_modified_time":"2025-01-31T15:18:25+00:00","author":"Stephen Planck","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stephen Planck","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqltabletalk.com\/?p=969#article","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/?p=969"},"author":{"name":"Stephen Planck","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"headline":"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server","datePublished":"2025-01-31T15:18:24+00:00","dateModified":"2025-01-31T15:18:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqltabletalk.com\/?p=969"},"wordCount":925,"commentCount":1,"publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"keywords":["Database Corruption Prevention","Database Maintenance","DBCC CHECKDB","Internals","Master Database","Model Database","MSDB Database","SQL Server","SQL Server Backup","SQL Server Best Practices"],"articleSection":["Database Configuration","Internals","Maintenance"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqltabletalk.com\/?p=969#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqltabletalk.com\/?p=969","url":"https:\/\/www.sqltabletalk.com\/?p=969","name":"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server - SQL Table Talk","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/#website"},"datePublished":"2025-01-31T15:18:24+00:00","dateModified":"2025-01-31T15:18:25+00:00","description":"It\u2019s easy to focus on user databases and overlook the system databases at the core of every SQL Server instance. However, the master, msdb, and model databases form the backbone of your environment. Understanding each database\u2019s specific responsibilities, how to safely customize them, and how to protect them from data loss or corruption is important for maintaining a stable server. In this post we take a look at all three databases to better understand their purposes and proper maintenance.","breadcrumb":{"@id":"https:\/\/www.sqltabletalk.com\/?p=969#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltabletalk.com\/?p=969"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltabletalk.com\/?p=969#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltabletalk.com\/"},{"@type":"ListItem","position":2,"name":"Understanding and Managing the Model, MSDB, and Master Databases in SQL Server"}]},{"@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\/969","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=969"}],"version-history":[{"count":1,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/969\/revisions"}],"predecessor-version":[{"id":971,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/969\/revisions\/971"}],"wp:attachment":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=969"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=969"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=969"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}