{"id":329,"date":"2014-02-22T07:07:23","date_gmt":"2014-02-22T07:07:23","guid":{"rendered":"http:\/\/semnaitik.wordpress.com\/?p=329"},"modified":"2025-01-25T10:26:20","modified_gmt":"2025-01-25T09:26:20","slug":"repair-mdf-file","status":"publish","type":"post","link":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/","title":{"rendered":"Repair MDF File via Microsoft SQL Server Management Studio"},"content":{"rendered":"<p style=\"text-align: justify;\">Database corruption is the most frustrating situation for any individual, be it a database administrator or user. And the biggest challenge in front of any SQL Server user is to repair MDF file. An SQL database contains crucial data and information. But any sort of error may put your data at high risk. Just like any other file, SQL database file is also prone\u00a0to corruption. And due to this, you may lose your data. In this blog post, we&#8217;ll learn how to handle database corruption in Microsoft SQL Server by using <a href=\"https:\/\/en.wikipedia.org\/wiki\/SQL_Server_Management_Studio\"><strong>Microsoft SQL Server Management Studio<\/strong><\/a>. Also, we&#8217;ll talk about professional software utility to repair MDF file. Before we can look forward to any of these solutions, let&#8217;s first talk about the SQL database and why corruption takes place.<\/p>\n<p style=\"text-align: justify;\">In Microsoft SQL Server, the database files are saved with MDF file extension. An MDF file stores a large amount\u00a0of data and information in the form of tables and other file objects, such as\u00a0<em>views<\/em>, <em>stored procedures<\/em>, <em>triggers<\/em>, <em>indexes<\/em>, <em>keys<\/em>, <em>constraints<\/em>, <em>rules<\/em>, etc.\u00a0If a database is in an invalid state, you would have no problem regarding\u00a0its accessibility. But if your file is invalid due to corruption,\u00a0it becomes inaccessible, i.e. you can&#8217;t open it by any chance until unless you repair MDF file.<\/p>\n<h3 style=\"text-align: justify;\"><strong>Reasons for SQL Database Corruption<\/strong><\/h3>\n<p style=\"text-align: justify;\">One of the most common reasons behind database corruption is a collision with any 3rd party driver. MS SQL Server tool may collide with any other installed software and may harm the SQL database files. Other than this, virus attack or bug infection can also corrupt the database files. A hardware fault in your system or a <a href=\"https:\/\/wordpress.semnaitik.com\/2014\/06\/19\/fix-hard-disk-failure\/\"><strong>crash in the hard disk drive<\/strong><\/a> (HDD) may cause corruption in database files. Or, sometimes human errors may also play an important role in corruption. A few of database users store their files in a compressed volume or folder for having more disk space. This may cause database corruption in Microsoft SQL Server and make the SQL database files inaccessible. So make sure you never store SQL database files in compressed volumes or folders.<\/p>\n<h3 style=\"text-align: justify;\"><strong>How to Repair MDF File?<\/strong><\/h3>\n<p style=\"text-align: justify;\">To repair MDF file, you can use a couple of <em>Database Console Commands<\/em> aka <strong>DBCC<\/strong> in Microsoft SQL Server. Via DBCCs, you can check the logical and physical integrity of all the file objects in a\u00a0particular MDF file. The database console commands that you can use here are <strong>DBCC DBREPAIR<\/strong> and <strong>DBCC CHECKDB<\/strong>. If the corruption level is not that severe, you must run these commands on SQL Server Management Studio to repair MDF file.<\/p>\n<h3 style=\"text-align: justify;\"><strong>Consider the scenario given below:<\/strong><\/h3>\n<p style=\"text-align: justify;\">You have been working on an SQL database for the last few days. One day you find that the database file is tagged as suspected. This means the file has some corruption issues. Or, you&#8217;re having a problem while connecting to the database. Your database file is at high risk as this might be corrupt. What will you do to fix it?<\/p>\n<p style=\"text-align: justify;\">MS SQL administrators and users can also refer to\u00a0<a href=\"https:\/\/wordpress.semnaitik.com\/2013\/11\/14\/microsoft-sql-password-recovery\/\"><strong>Perform Microsoft SQL Password Recovery Safely<\/strong><\/a><\/p>\n<p style=\"text-align: justify;\">There&#8217;s a manual solution to fix this problem, but you must have <strong>SQL Server Management Studio<\/strong> for that. If you have it, you need to follow the steps given below:<\/p>\n<p style=\"text-align: justify;\"><strong>Step 1:<\/strong>\u00a0Launch\u00a0<strong>Microsoft SQL Server Management Studio<\/strong>\u00a0on your system.<\/p>\n<p style=\"text-align: justify;\"><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone wp-image-2131 size-full\" src=\"https:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2014\/02\/SQL-Server-Management-Studio.png\" alt=\"Microsoft SQL Server Management Studio\" width=\"476\" height=\"310\" srcset=\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/SQL-Server-Management-Studio.png 476w, https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/SQL-Server-Management-Studio-300x195.png 300w\" sizes=\"(max-width: 476px) 100vw, 476px\" \/><\/p>\n<p style=\"text-align: justify;\"><strong>Step 2:<\/strong>\u00a0Now click the\u00a0<strong>New Query<\/strong> button.<\/p>\n<p style=\"text-align: justify;\"><img decoding=\"async\" class=\"alignnone wp-image-2132 size-full\" src=\"https:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2014\/02\/create-new-query-in-sql-server.png\" alt=\"how to create new query in SQL Server?\" width=\"263\" height=\"153\" \/><\/p>\n<p style=\"text-align: justify;\">This will open a new query page.<\/p>\n<p style=\"text-align: justify;\"><strong>Step 3:<\/strong>\u00a0Write the <strong>SQL Scripts<\/strong>\u00a0(shown below) on the page:<\/p>\n<pre style=\"text-align: justify;\">EXEC sp_resetstatus [YourDatabase];\nALTER DATABASE [YourDatabase] SET EMERGENCY\nDBCC CHECKDB ([YourDatabase], REPAIR_ALLOW_DATA_LOSS)\nALTER DATABASE [YourDatabase] SET SINGLE_USER WITH ROLLBACK IMMEDIATE\nDBCC DATABASE\u00a0([YourDatabase], REPAIR_ALLOW_DATA_LOSS)\nALTER DATABASE [YourDatabase] SET MULTI_USER<\/pre>\n<p style=\"text-align: justify;\"><strong>Note:<\/strong>\u00a0Replace <strong><em>YourDatabase<\/em><\/strong> text with the original name of your database file.<\/p>\n<p style=\"text-align: justify;\"><strong>Step 4:<\/strong>\u00a0Now click <strong>Execute<\/strong>.<\/p>\n<p style=\"text-align: justify;\"><img decoding=\"async\" class=\"alignnone wp-image-2133 size-full\" src=\"https:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2014\/02\/execute-new-query-in-sql-server.png\" alt=\"How to execute new query in SQL Server?\" width=\"339\" height=\"199\" srcset=\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/execute-new-query-in-sql-server.png 339w, https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/execute-new-query-in-sql-server-300x176.png 300w\" sizes=\"(max-width: 339px) 100vw, 339px\" \/><\/p>\n<p style=\"text-align: justify;\">After that, you can check your database. It&#8217;ll be\u00a0no longer tagged as suspected.<\/p>\n<p style=\"text-align: justify;\">Database users might also be interested in <a href=\"https:\/\/wordpress.semnaitik.com\/2017\/02\/01\/repair-sqlite-database\/\"><strong>Repair SQLite Database via SQLite Data Recovery Tool<\/strong><\/a><\/p>\n<h2><strong>Professional Solution to Repair MDF File\u00a0<\/strong><\/h2>\n<p style=\"text-align: justify;\">Sometimes the manual approach may fail\u00a0to repair MDF file, especially when corruption is severe. In such a situation, you should look forward to a professional\u00a0solution that can smartly fix corrupt MDF file and restore SQL database objects from it. If you search on the Internet, you&#8217;ll find a wide range of tools for SQL database recovery. But choosing the best among many is very challenging.<\/p>\n<h3 style=\"text-align: justify;\"><strong>How would you choose the best one? <\/strong><\/h3>\n<p style=\"text-align: justify;\">It&#8217;s pretty tough to\u00a0find out the best SQL Database Recovery tool without prior testing. Thankfully, most of the vendors provide 3rd party tools with the free demo\/trial version. You can download the demo version to check what you can actually recover from the corrupt MDF file before paying for the software. If you&#8217;re satisfied with the results, then only you should purchase the licensed version.<\/p>\n<p><a href=\"https:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2014\/02\/sql-server-in-recovery.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-5863\" src=\"https:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2014\/02\/sql-server-in-recovery.png\" alt=\"SQL Server in recovery\" width=\"500\" height=\"250\" srcset=\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/sql-server-in-recovery.png 500w, https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/sql-server-in-recovery-300x150.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><\/a><\/p>\n<p style=\"text-align: justify;\"><strong>SysInfo <a href=\"https:\/\/www.sysinfotools.com\/recovery\/ms-sql-database-recovery.php\">SQL Database Recovery<\/a> Tool<\/strong> can repair MDF file and perform SQL data recovery from corrupt MDF file. It supports corrupt MDF file created by MS SQL Server 2000, 2005, 2008, 2012 and 2016. It can successfully fix corrupt MDF file and restore SQL database objects from it, such as <em>tables<\/em>, <em>triggers<\/em>, <em>indexes<\/em>, <em>keys<\/em>, <em>constraints<\/em>, <em>rules<\/em>, <em>defaults<\/em>, etc.\u00a0This SQL Database Recovery tool can save all the recovered data into an <strong>SQL Database<\/strong> and\/or in the form of <strong>SQL Scripts<\/strong>.<\/p>\n<p><a href=\"https:\/\/www.sysinfotools.com\/demo-version\/SysInfoTools-MS-SQL-Database-Recovery.exe\" rel=\"attachment wp-att-4273\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4273\" src=\"https:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2013\/11\/download-free-demo.png\" alt=\"\" width=\"217\" height=\"62\" \/><\/a><\/p>\n<h4 style=\"text-align: justify;\"><strong>Watch the online video tutorial below<\/strong><\/h4>\n<p><iframe src=\"https:\/\/www.youtube.com\/embed\/NAchcg6_3UY?rel=0\" width=\"690\" height=\"388\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Database corruption is the most frustrating situation for any individual, be it a database administrator or user. And the biggest<a class=\"read-more ml-1 main-read-more\" href=\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":5686,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[285],"tags":[],"class_list":["post-329","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-file-data-recovery"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Repair MDF File via Microsoft SQL Server Management Studio<\/title>\n<meta name=\"description\" content=\"Do you have a corrupt MDF file? Use SQL Server Management Studio to repair MDF file. Also, you can use a professional solution for SQL data recovery.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Repair MDF File via Microsoft SQL Server Management Studio\" \/>\n<meta property=\"og:description\" content=\"Do you have a corrupt MDF file? Use SQL Server Management Studio to repair MDF file. Also, you can use a professional solution for SQL data recovery.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/naitik.semwaal.5\" \/>\n<meta property=\"article:published_time\" content=\"2014-02-22T07:07:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-25T09:26:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png\" \/>\n\t<meta property=\"og:image:width\" content=\"678\" \/>\n\t<meta property=\"og:image:height\" content=\"381\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Danish\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Danish\" \/>\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:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\"},\"author\":{\"name\":\"Danish\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77\"},\"headline\":\"Repair MDF File via Microsoft SQL Server Management Studio\",\"datePublished\":\"2014-02-22T07:07:23+00:00\",\"dateModified\":\"2025-01-25T09:26:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\"},\"wordCount\":863,\"image\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png\",\"articleSection\":[\"Data Recovery\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\",\"url\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\",\"name\":\"Repair MDF File via Microsoft SQL Server Management Studio\",\"isPartOf\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png\",\"datePublished\":\"2014-02-22T07:07:23+00:00\",\"dateModified\":\"2025-01-25T09:26:20+00:00\",\"author\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77\"},\"description\":\"Do you have a corrupt MDF file? Use SQL Server Management Studio to repair MDF file. Also, you can use a professional solution for SQL data recovery.\",\"breadcrumb\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage\",\"url\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png\",\"contentUrl\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png\",\"width\":678,\"height\":381,\"caption\":\"repair MDF file manually\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wordpress.semnaitik.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Repair MDF File via Microsoft SQL Server Management Studio\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#website\",\"url\":\"https:\/\/wordpress.semnaitik.com\/blog\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wordpress.semnaitik.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77\",\"name\":\"Danish\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/be8cb8e17fe5afcda9b1aeea9726aaedbd8e1a8c1418f44f8b6ebc679cc527b4?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/be8cb8e17fe5afcda9b1aeea9726aaedbd8e1a8c1418f44f8b6ebc679cc527b4?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/be8cb8e17fe5afcda9b1aeea9726aaedbd8e1a8c1418f44f8b6ebc679cc527b4?s=96&r=g\",\"caption\":\"Danish\"},\"sameAs\":[\"http:\/\/semnaitik.com\/\",\"https:\/\/www.facebook.com\/naitik.semwaal.5\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Repair MDF File via Microsoft SQL Server Management Studio","description":"Do you have a corrupt MDF file? Use SQL Server Management Studio to repair MDF file. Also, you can use a professional solution for SQL data recovery.","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:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/","og_locale":"en_US","og_type":"article","og_title":"Repair MDF File via Microsoft SQL Server Management Studio","og_description":"Do you have a corrupt MDF file? Use SQL Server Management Studio to repair MDF file. Also, you can use a professional solution for SQL data recovery.","og_url":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/","article_author":"https:\/\/www.facebook.com\/naitik.semwaal.5","article_published_time":"2014-02-22T07:07:23+00:00","article_modified_time":"2025-01-25T09:26:20+00:00","og_image":[{"width":678,"height":381,"url":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png","type":"image\/png"}],"author":"Danish","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Danish","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#article","isPartOf":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/"},"author":{"name":"Danish","@id":"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77"},"headline":"Repair MDF File via Microsoft SQL Server Management Studio","datePublished":"2014-02-22T07:07:23+00:00","dateModified":"2025-01-25T09:26:20+00:00","mainEntityOfPage":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/"},"wordCount":863,"image":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage"},"thumbnailUrl":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png","articleSection":["Data Recovery"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/","url":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/","name":"Repair MDF File via Microsoft SQL Server Management Studio","isPartOf":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage"},"image":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage"},"thumbnailUrl":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png","datePublished":"2014-02-22T07:07:23+00:00","dateModified":"2025-01-25T09:26:20+00:00","author":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77"},"description":"Do you have a corrupt MDF file? Use SQL Server Management Studio to repair MDF file. Also, you can use a professional solution for SQL data recovery.","breadcrumb":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#primaryimage","url":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png","contentUrl":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2014\/02\/repair-sql-database.png","width":678,"height":381,"caption":"repair MDF file manually"},{"@type":"BreadcrumbList","@id":"https:\/\/wordpress.semnaitik.com\/blog\/repair-mdf-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wordpress.semnaitik.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Repair MDF File via Microsoft SQL Server Management Studio"}]},{"@type":"WebSite","@id":"https:\/\/wordpress.semnaitik.com\/blog\/#website","url":"https:\/\/wordpress.semnaitik.com\/blog\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wordpress.semnaitik.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77","name":"Danish","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be8cb8e17fe5afcda9b1aeea9726aaedbd8e1a8c1418f44f8b6ebc679cc527b4?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be8cb8e17fe5afcda9b1aeea9726aaedbd8e1a8c1418f44f8b6ebc679cc527b4?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be8cb8e17fe5afcda9b1aeea9726aaedbd8e1a8c1418f44f8b6ebc679cc527b4?s=96&r=g","caption":"Danish"},"sameAs":["http:\/\/semnaitik.com\/","https:\/\/www.facebook.com\/naitik.semwaal.5"]}]}},"_links":{"self":[{"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/posts\/329","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/comments?post=329"}],"version-history":[{"count":4,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/posts\/329\/revisions"}],"predecessor-version":[{"id":8227,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/posts\/329\/revisions\/8227"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/media\/5686"}],"wp:attachment":[{"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/media?parent=329"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/categories?post=329"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/tags?post=329"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}