{"id":2150,"date":"2018-12-01T01:13:55","date_gmt":"2018-12-01T01:13:55","guid":{"rendered":"https:\/\/www.pcvita.com\/blog\/?p=2150"},"modified":"2021-12-18T15:36:59","modified_gmt":"2021-12-18T10:06:59","slug":"how-to-rebuild-indexes-sql-server","status":"publish","type":"post","link":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html","title":{"rendered":"Know How to Rebuild Indexes in SQL Server Database"},"content":{"rendered":"<p>The main function of a database administrator (DBA) is to maintain the database. Indexes play an important role as they are one of the important aspects of high performance in SQL Server. Mainly SQL Server maintains indexes after any data modifications, still, maintenance of indexes is still required, due to Fragmentation. Index fragmentation affects the performance of SQL Server, so it is recommended to monitor the level of fragmentation. Index fragmentation occurs in the form of gaps in data pages and logical fragmentation. Thus, the only way to remove the unnecessary space and logical fragmentation is to restore indexes in SQL Server.<\/p>\n<p>In the following segment, we are going to discuss a step-by-step procedure to let users understand how to rebuild indexes in SQL Server in an absolute manner. Before that, let us know when and how often should you restore indexes in SQL server.<\/p>\n<h2 class=\"heading-style\">When to Rebuild Indexes in SQL Server?<\/h2>\n<p>As the indexes become fragmented so, the performance of all indexes is degraded. The Rebuild Index task is a very good option to rebuild indexes to remove the logical fragmentation and free space, and update statistics. It is important to schedule tasks for timely rebuilding indexes in SQL Server database.<\/p>\n<p>Otherwise, the Rebuild Indexes in SQL Server will become a resource-intensive task. Moreover, if the index gets rebuilt, locks can be placed on the index, prevent someone from accessing it while rebuilding occurs. If anyone tries to access the index in order to return actual results can be temporarily blocked before the rebuild is complete. For instance, the Rebuild Index task is examined the offline activity, to be run when some people want to access the database. Generally, this means during the scheduled maintenance window.<\/p>\n<p><strong>Nightly, if needed:<\/strong> If the index gets fragmented fast, and users have a maintenance window every night that allows to run Rebuild Index task, with all other maintenance tasks; then do so. The index fragmentation will degrade the overall performance of each index. As such, users have a nightly maintenance window, rebuilding will not harm, and also help to boost the performance of the server.<br \/>\n<strong>Weekly, at minimal:<\/strong> If users cannot perform this task every night, then, at minimum, it will run once a week, during the maintenance window. If users can wait more than a week, risk hurting the SQL performance due to the negative effect of empty space and logical fragmentation.<br \/>\n<strong>Consider other alternatives:<\/strong> If users do not have a maintenance window long enough to run the task at least once a week, then they can consider other alternatives like :<\/p>\n<p><strong>Note:<\/strong> If you want to repair your corrupted Indexes then you can take the help of <a href=\"https:\/\/www.pcvita.com\/sql-database-recovery.html\"><strong>SQL Database Recovery<\/strong><\/a> Software.<\/p>\n<p><a class=\"btn btn-success btn-lg btn-md-block p-3 text-white\" href=\"https:\/\/systoolskart.com\/download\/SYS1S2Q7L\/18\">Download<\/a> <a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #ff6800; color: #fff !important;\" href=\"https:\/\/systoolskart.com\/buy\/SYS1S2Q7L\/18\" target=\"_blank\" rel=\"noopener noreferrer\"> Purchase Now<\/a><\/p>\n<p>&nbsp;<\/p>\n<h2 class=\"heading-style\">How often to Rebuild Indexes in SQL Server?<\/h2>\n<p>The speed of index fragments depends on how it is used and will vary from one database to another. Let us consider the percent of index fragmentation:<\/p>\n<ul>\n<li><strong>avg_page_space_used_in_percent:<\/strong> This column can store the total amount of space that is used on a particular page. For e.g, the specific index may have 50% space used, which means only half of the space available on a data page, on average, it is used to preserve rows of data<\/li>\n<li><strong>avg_fragmentation_in_percent:<\/strong> This column can store the degree of a logical fragmentation of index, as a percentage. For example, a particular index might be 80% fragmented, which means, on average, 80% of data pages physical ordering does not match the logical ordering<\/li>\n<\/ul>\n<p>If users will be able to track this data for a period of time, they will determine how quickly all indexes fragments, and how often you should rebuild them. But, if at this level, there might be chances that users can use scripting techniques to rebuild all indexes rather than Maintenance Plan Wizard.<\/p>\n<h3 class=\"heading-style\">How to Rebuild Indexes in SQL Server Manually<\/h3>\n<p>Go through these two manual approaches that will help to rebuild indexes SQL server database. Have a look:<\/p>\n<ul>\n<li class=\"sub-style h4\"><strong>Using MS SQL Server Management Studio:<\/strong><\/li>\n<\/ul>\n<p>a) Under the <strong>Object Explorer<\/strong> pane, expand the SQL Server, and then Databases node<br \/>\nb) Then, click the specific database with fragmented index<br \/>\nc) Expand each Table node and table with fragmented index<br \/>\nd) Expand the particular table&gt;&gt; <strong>Indexes<\/strong> node<br \/>\ne) Now, right-click on fragmented index and select <strong>Rebuild<\/strong> option<\/p>\n<p><a href=\"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2018\/11\/rebuil.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2154\" src=\"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2018\/11\/rebuil.png\" alt=\"\" width=\"430\" height=\"656\" \/><\/a><\/p>\n<p>f) Click the OK button and wait for a process to finish<\/p>\n<ul>\n<li class=\"sub-style h4\">Using <strong>Transact-SQL<\/strong> to Rebuild Indexes in Table<\/li>\n<\/ul>\n<p>Provide suitable database and table information. After that, you can execute the following code in SSMS (SQL Server Management Studio) to rebuild indexes in SQL Server on the particular table:<\/p>\n<p><a href=\"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2018\/11\/tsql.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2155\" src=\"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2018\/11\/tsql.png\" alt=\"\" width=\"364\" height=\"105\" \/><\/a><\/p>\n<p>Read More:<\/p>\n<p>&gt;&gt; How to <a href=\"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html\">Check Database Corruption in SQL Server<\/a><\/p>\n<p>&gt;&gt; How to <a href=\"https:\/\/www.pcvita.com\/blog\/how-to-repair-corrupted-page-in-sql-server.html\">Repair Corrupted Page in SQL Server<\/a><\/p>\n<h3 class=\"heading-style\">Summing Up<\/h3>\n<p>Index fragmentation is a critical issue as it can cause performance problems in SQL Server databases if they are not rebuilt timely. One simple way to remove index fragmentation is to Rebuild Index tasks regularly, which helps to rebuild all indexes in the SQL database and make performance consistent. Thus, in this blog, we have discussed two different ways that will help to understand how to rebuild indexes in SQL server. Make sure you have followed each step very carefully.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The main function of a database administrator (DBA) is to maintain the database. Indexes play an important role as they <\/p>\n","protected":false},"author":17,"featured_media":2150,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[118],"tags":[],"class_list":["post-2150","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sql-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>When and How to Rebuild Indexes in SQL Server Database<\/title>\n<meta name=\"description\" content=\"Check out how to rebuild indexes in SQL Server. Also, get to know how and when you should rebuild indexes in SQL Server database.\" \/>\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.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"When and How to Rebuild Indexes in SQL Server Database\" \/>\n<meta property=\"og:description\" content=\"Check out how to rebuild indexes in SQL Server. Also, get to know how and when you should rebuild indexes in SQL Server database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html\" \/>\n<meta property=\"og:site_name\" content=\"PCVITA Official Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-12-01T01:13:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-18T10:06:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2018\/11\/rebuil.png\" \/>\n<meta name=\"author\" content=\"Mohit Jha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohit Jha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html\"},\"author\":{\"name\":\"Mohit Jha\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/46d7590809ce0596a0f14a1fbc5d56fe\"},\"headline\":\"Know How to Rebuild Indexes in SQL Server Database\",\"datePublished\":\"2018-12-01T01:13:55+00:00\",\"dateModified\":\"2021-12-18T10:06:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html\"},\"wordCount\":883,\"image\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/rebuild-indexes-in-sql-server-database.jpg\",\"articleSection\":[\"SQL Server\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html\",\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html\",\"name\":\"When and How to Rebuild Indexes in SQL Server Database\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/rebuild-indexes-in-sql-server-database.jpg\",\"datePublished\":\"2018-12-01T01:13:55+00:00\",\"dateModified\":\"2021-12-18T10:06:59+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/46d7590809ce0596a0f14a1fbc5d56fe\"},\"description\":\"Check out how to rebuild indexes in SQL Server. Also, get to know how and when you should rebuild indexes in SQL Server database.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html#primaryimage\",\"url\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/rebuild-indexes-in-sql-server-database.jpg\",\"contentUrl\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/rebuild-indexes-in-sql-server-database.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/how-to-rebuild-indexes-sql-server.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pcvita.com\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Know How to Rebuild Indexes in SQL Server Database\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/\",\"name\":\"PCVITA Official Blog\",\"description\":\"Technology Solution that Matters\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/46d7590809ce0596a0f14a1fbc5d56fe\",\"name\":\"Mohit Jha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g\",\"caption\":\"Mohit Jha\"},\"description\":\"Mohit is a Microsoft-certified expert who has assisted thousands of clients with Outlook &amp; Microsoft Office 365 issues. He enjoys writing on email clients as well as data migration. He is always excited about giving troubled readers the most up-to-date knowledge, explanation, and refinements.\",\"sameAs\":[\"https:\\\/\\\/in.linkedin.com\\\/in\\\/mohitkumarjha\",\"https:\\\/\\\/www.pcvita.com\\\/assets\\\/author\\\/mohit.png\"],\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/author\\\/mohit\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"When and How to Rebuild Indexes in SQL Server Database","description":"Check out how to rebuild indexes in SQL Server. Also, get to know how and when you should rebuild indexes in SQL Server database.","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.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html","og_locale":"en_US","og_type":"article","og_title":"When and How to Rebuild Indexes in SQL Server Database","og_description":"Check out how to rebuild indexes in SQL Server. Also, get to know how and when you should rebuild indexes in SQL Server database.","og_url":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html","og_site_name":"PCVITA Official Blog","article_published_time":"2018-12-01T01:13:55+00:00","article_modified_time":"2021-12-18T10:06:59+00:00","og_image":[{"url":"https:\/\/www.pcvita.com\/blog\/wp-content\/uploads\/2018\/11\/rebuil.png","type":"","width":"","height":""}],"author":"Mohit Jha","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mohit Jha","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html#article","isPartOf":{"@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html"},"author":{"name":"Mohit Jha","@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/46d7590809ce0596a0f14a1fbc5d56fe"},"headline":"Know How to Rebuild Indexes in SQL Server Database","datePublished":"2018-12-01T01:13:55+00:00","dateModified":"2021-12-18T10:06:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html"},"wordCount":883,"image":{"@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html#primaryimage"},"thumbnailUrl":"https:\/\/cdnxtra.com\/feature\/rebuild-indexes-in-sql-server-database.jpg","articleSection":["SQL Server"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html","url":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html","name":"When and How to Rebuild Indexes in SQL Server Database","isPartOf":{"@id":"https:\/\/www.pcvita.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html#primaryimage"},"image":{"@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html#primaryimage"},"thumbnailUrl":"https:\/\/cdnxtra.com\/feature\/rebuild-indexes-in-sql-server-database.jpg","datePublished":"2018-12-01T01:13:55+00:00","dateModified":"2021-12-18T10:06:59+00:00","author":{"@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/46d7590809ce0596a0f14a1fbc5d56fe"},"description":"Check out how to rebuild indexes in SQL Server. Also, get to know how and when you should rebuild indexes in SQL Server database.","breadcrumb":{"@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html#primaryimage","url":"https:\/\/cdnxtra.com\/feature\/rebuild-indexes-in-sql-server-database.jpg","contentUrl":"https:\/\/cdnxtra.com\/feature\/rebuild-indexes-in-sql-server-database.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.pcvita.com\/blog\/how-to-rebuild-indexes-sql-server.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pcvita.com\/blog"},{"@type":"ListItem","position":2,"name":"Know How to Rebuild Indexes in SQL Server Database"}]},{"@type":"WebSite","@id":"https:\/\/www.pcvita.com\/blog\/#website","url":"https:\/\/www.pcvita.com\/blog\/","name":"PCVITA Official Blog","description":"Technology Solution that Matters","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pcvita.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/46d7590809ce0596a0f14a1fbc5d56fe","name":"Mohit Jha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g","caption":"Mohit Jha"},"description":"Mohit is a Microsoft-certified expert who has assisted thousands of clients with Outlook &amp; Microsoft Office 365 issues. He enjoys writing on email clients as well as data migration. He is always excited about giving troubled readers the most up-to-date knowledge, explanation, and refinements.","sameAs":["https:\/\/in.linkedin.com\/in\/mohitkumarjha","https:\/\/www.pcvita.com\/assets\/author\/mohit.png"],"url":"https:\/\/www.pcvita.com\/blog\/author\/mohit"}]}},"_links":{"self":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/2150","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/comments?post=2150"}],"version-history":[{"count":0,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/2150\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/2150"}],"wp:attachment":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/media?parent=2150"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/categories?post=2150"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/tags?post=2150"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}