{"id":89878,"date":"2021-11-16T09:03:57","date_gmt":"2021-11-16T09:03:57","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=89878"},"modified":"2024-03-11T11:32:32","modified_gmt":"2024-03-11T11:32:32","slug":"restore-specific-table-from-sql-database-backup-file","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/","title":{"rendered":"How to Restore Specific Table(s) from SQL Database Backup File?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>MS SQL does not provide any in-built functionality to directly restore specific tables from the backup file. However, you can <a href=\"https:\/\/www.stellarinfo.com\/article\/restore-sql-server-database-from-bak-file.php\" target=\"_blank\" rel=\"noreferrer noopener\">restore the entire SQL backup<\/a> by using SQL Server Management Studio (SSMS) or T-SQL commands. After that, you can copy the specific tables to your database. In this post, we&rsquo;ll be discussing the process to restore specific tables from SQL database backup file.<\/p><h2 class=\"wp-block-heading\" id=\"how-to-recover-specific-table(s)-from-sql-database-backup-file?\"><strong>How to Recover Specific Table(s) from SQL Database Backup File?<\/strong><\/h2><p>After restoring the database backup to a new database, you can copy the specific tables to destination database. Below, we&rsquo;ve mentioned process to restore specific tables based on three scenarios.<\/p><h3 class=\"wp-block-heading\"><strong>Scenario 1: When rows are deleted and tables still exist<\/strong><\/h3><p>You can use the following code in SSMS wherein you can combine the INSERT command with the SELECT command. This will only add the missing rows to the table in the original database:<\/p><pre class=\"wp-block-code command_container\"><code>USE My_Database<br>GO<br>SET IDENTITY_INSERT my_table ON<br>INSERT INTO my_table_1 (column_name)<\/code><\/pre><pre class=\"wp-block-code command_container\"><code>SELECT * FROM My_Database_Restored.my_table<br>SET IDENTITY_INSERT my_table OFF<\/code><\/pre><h3 class=\"wp-block-heading\"><strong>Scenario 2: When the table was completely dropped and needs to be completely recreated<\/strong><\/h3><p>You can use the following code with the SELECT INTO command for copying the rows and table structure to the original database.<\/p><pre class=\"wp-block-code command_container\"><code>USE My_Database<br>GO<br>SELECT * INTO my_table<br>FROM My_Database_Restored.my_table<\/code><\/pre><h3 class=\"wp-block-heading\"><strong>Scenario 3: When the table has a few damaged rows due to an update or an unwanted event<\/strong><\/h3><p>You can use the following code with the MERGE command for updating the damaged data, inserting the missing data, and deleting the unnecessary rows in the table.<\/p><pre class=\"wp-block-code command_container\"><code>USE My_Database<br>GO<br>SET IDENTITY_INSERT my_table ON<br>MERGE my_table dest<br>USING (SELECT * FROM My_Database_Restored. my_table src) AS src<br>ON dest.(column_name_1)= src.(column_name_1)<br>WHEN MATCHED THEN UPDATE<br>SET dest. (column_name_2) = src. (column_name_2), dest. (column_name_3) = src. (column_name_3)<br>WHEN NOT MATCHED THEN INSERT<br>(column_name_1,column_name_2,column_name_3) VALUES<br>(src. (column_name_1), src. (column_name_2), src. (column_name_3));<br>SET IDENTITY_INSERT my_table OFF<\/code><\/pre><p>If there are any indexes, views, constraints, triggers, or rules functions in your table, you may have to recreate them if needed. Along with this, you may have to address the referential integrity issues manually. To check the data integrity, use the following command:<\/p><pre class=\"wp-block-code command_container\"><code>DBCC CHECKTABLE (&ldquo;my_table&rdquo;)<\/code><\/pre><h2 class=\"wp-block-heading\" id=\"drawback-of-using-the-manual-method\"><strong>Drawback of Using the Manual Method<\/strong><\/h2><p>In the above technique, you need to restore the entire database backup to retrieve only one or some specific tables. This procedure can take a long time and require a lot of free space on the SQL Server. Also, if the backup file is corrupt, you may not be able to retrieve the data.<\/p><h2 class=\"wp-block-heading\" id=\"an-alternative-solution\"><strong>An Alternative Solution<\/strong><\/h2><p>If your backup file gets corrupt, you may not be able to restore any of your table(s). In such a case, you can use Stellar Backup Extractor for MS SQL module from <a href=\"https:\/\/www.stellarinfo.com\/sql-database-toolkit.php\" target=\"_blank\" rel=\"noreferrer noopener\">Stellar Repair for MS SQL Technician<\/a>, which can help you restore specific tables from .BAK file.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><a href=\"https:\/\/cloud.stellarinfo.com\/StellarRepairforMSSQLTechnician-B.exe\"><img loading=\"lazy\" decoding=\"async\" width=\"252\" height=\"72\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/free-download-1-1.png\" alt=\"free download\" class=\"wp-image-89898 apply-gradient-on-post-images\" style=\"width:252px;height:72px\"><\/a><\/figure>\n<\/div><h3 class=\"wp-block-heading\" id=\"h-how-to-use-stellar-backup-extractor-for-ms-sql\"><strong>How to Use Stellar Backup Extractor for MS SQL?<\/strong><\/h3><p>Let&rsquo;s explore the steps to recover tables from SQL database backup file by using the software:<\/p><ul class=\"wp-block-list\">\n<li>Download and launch the <strong>Stellar Repair for MS SQL Technician <\/strong>and select the <strong>Stellar Backup Extractor for MS SQL<\/strong> module.<\/li>\n\n\n\n<li>A dialog box will open. You can use the <strong>&lsquo;Browse<\/strong>&rsquo; open to select the file (if you know the location) or use the &lsquo;<strong>Search&rsquo;<\/strong> option to locate the .bak file in your system.<\/li>\n<\/ul><figure class=\"alignleft size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"530\" height=\"360\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/Home-Page-01.png\" alt=\"home page\" class=\"wp-image-89888 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/Home-Page-01.png 530w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/Home-Page-01-300x204.png 300w\" sizes=\"auto, (max-width: 530px) 100vw, 530px\" \/><\/figure><ul class=\"wp-block-list\">\n<li>Choose the file from which you want to extract data and click <strong>Scan.<\/strong><\/li>\n<\/ul><div><figure class=\"alignleft size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"530\" height=\"361\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/scan-mode-02.png\" alt=\"scan mode\" class=\"wp-image-89889 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/scan-mode-02.png 530w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/scan-mode-02-300x204.png 300w\" sizes=\"auto, (max-width: 530px) 100vw, 530px\" \/><\/figure><\/div><ul class=\"wp-block-list\">\n<li>After clicking the <strong>Scan<\/strong>, select any of the given modes:\n<ul class=\"wp-block-list\">\n<li><strong>Standard Scan (Recommended<\/strong>) &ndash; This mode scans and repairs normal corruption in .BAK file.<\/li>\n\n\n\n<li><strong>Advanced Scan<\/strong> &ndash; Use this mode when you do not get desired result after Standard scan. This mode scans the severely corrupted .BAK file.<\/li>\n<\/ul>\n<\/li>\n<\/ul><figure class=\"alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"510\" height=\"205\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/scan-options-03.png\" alt=\"scan options\" class=\"wp-image-89890 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/scan-options-03.png 510w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/scan-options-03-300x121.png 300w\" sizes=\"auto, (max-width: 510px) 100vw, 510px\" \/><\/figure><ul class=\"wp-block-list\">\n<li>Now, you will get a new dialog box, <strong>&lsquo;Select Backup Set&rsquo;<\/strong>. This will display the backups if they are stored in different files.<\/li>\n\n\n\n<li>Select the Backup Set and click &lsquo;<strong>Next&rsquo;.<\/strong><\/li>\n<\/ul><figure class=\"alignleft size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"696\" height=\"330\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/backup-set-04.png\" alt=\"backup set\" class=\"wp-image-89891 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/backup-set-04.png 696w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/backup-set-04-300x142.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/backup-set-04-320x151.png 320w\" sizes=\"auto, (max-width: 696px) 100vw, 696px\" \/><\/figure><ul class=\"wp-block-list\">\n<li>When the repair is completed, you will get a &lsquo;<strong>Repair Complete<\/strong>&rsquo; dialog box.<\/li>\n\n\n\n<li>You can see the preview of the repaired files.<\/li>\n<\/ul><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"909\" height=\"487\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/file-preview-05.png\" alt=\"file preview\" class=\"wp-image-89892 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/file-preview-05.png 909w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/file-preview-05-300x161.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/file-preview-05-768x411.png 768w\" sizes=\"auto, (max-width: 909px) 100vw, 909px\" \/><\/figure><ul class=\"wp-block-list\">\n<li>Now, you can select the tables you want to save and then click &lsquo;<strong>Save&rsquo;.<\/strong><\/li>\n\n\n\n<li>A new dialog box comes up, displaying multiple saving options &ndash; MDF, CSV, HTML, and XLS.<\/li>\n\n\n\n<li>Select the saving option as <strong>MDF<\/strong> and enter the required details.<\/li>\n<\/ul><figure class=\"alignleft size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"487\" height=\"408\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/save-database-options-06.png\" alt=\"save database options\" class=\"wp-image-89894 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/save-database-options-06.png 487w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/save-database-options-06-300x251.png 300w\" sizes=\"auto, (max-width: 487px) 100vw, 487px\" \/><\/figure><ul class=\"wp-block-list\">\n<li>Choose the destination for saving the file and click &lsquo;<strong>Save&rsquo;<\/strong>.<\/li>\n\n\n\n<li>The &lsquo;<strong>Save Complete<\/strong>&rsquo; dialog box appears when the data is successfully saved.<\/li>\n<\/ul><figure class=\"alignleft size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"437\" height=\"182\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/save-complete-07.png\" alt=\"save complete\" class=\"wp-image-89896 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/save-complete-07.png 437w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/save-complete-07-300x125.png 300w\" sizes=\"auto, (max-width: 437px) 100vw, 437px\" \/><\/figure><h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2><p>In this post, we have outlined the solutions to restore specific tables from SQL Server backup file. You can restore the tables from a SQL Server backup file using the manual method mentioned in this post. However, the manual method is time-consuming, complex, and may not bring the desired results. Alternatively, you can use Stellar Backup Extractor for MS SQL, which is a part of<a href=\"https:\/\/www.stellarinfo.com\/restore-sql-database.php\"> Stell<\/a><a href=\"https:\/\/www.stellarinfo.com\/restore-sql-database.php\" target=\"_blank\" rel=\"noreferrer noopener\">a<\/a><a href=\"https:\/\/www.stellarinfo.com\/restore-sql-database.php\">r Repair for MS SQL Technician<\/a> , to selectively restore the tables from backup (.BAK) file.<\/p><p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>MS SQL does not provide any in-built functionality to directly restore specific&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\">Continue reading <span class=\"screen-reader-text\">How to Restore Specific Table(s) from SQL Database Backup File?<\/span><\/a><\/p>\n","protected":false},"author":62,"featured_media":89897,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10],"tags":[2323],"class_list":["post-89878","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-recovery","tag-restore-specific-table-sql-database-backup-file","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Restore Specific Table(s) from SQL Database Backup File<\/title>\n<meta name=\"description\" content=\"In this blog we have discussed the ways to restore specific tables from a SQL database backup file.and also mentioned about the advanced SQL backup recovery tool that will help in restoring specific tables from .BAK file, even if it is corrupted.\" \/>\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.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Restore Specific Table(s) from SQL Database Backup File\" \/>\n<meta property=\"og:description\" content=\"In this blog we have discussed the ways to restore specific tables from a SQL database backup file.and also mentioned about the advanced SQL backup recovery tool that will help in restoring specific tables from .BAK file, even if it is corrupted.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-16T09:03:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-11T11:32:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Saba Zehra Rizvi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Saba Zehra Rizvi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\"},\"author\":{\"name\":\"Saba Zehra Rizvi\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4fe2c7cae913fcdde123757b8543dfb8\"},\"headline\":\"How to Restore Specific Table(s) from SQL Database Backup File?\",\"datePublished\":\"2021-11-16T09:03:57+00:00\",\"dateModified\":\"2024-03-11T11:32:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\"},\"wordCount\":729,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg\",\"keywords\":[\"restore specific table sql database backup file\"],\"articleSection\":[\"SQL Database Repair\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\",\"name\":\"How to Restore Specific Table(s) from SQL Database Backup File\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg\",\"datePublished\":\"2021-11-16T09:03:57+00:00\",\"dateModified\":\"2024-03-11T11:32:32+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4fe2c7cae913fcdde123757b8543dfb8\"},\"description\":\"In this blog we have discussed the ways to restore specific tables from a SQL database backup file.and also mentioned about the advanced SQL backup recovery tool that will help in restoring specific tables from .BAK file, even if it is corrupted.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg\",\"width\":1000,\"height\":600,\"caption\":\"how to restore specific tables from sql database backup file\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Restore Specific Table(s) from SQL Database Backup File?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/\",\"name\":\"Stellar Data Recovery Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.stellarinfo.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4fe2c7cae913fcdde123757b8543dfb8\",\"name\":\"Saba Zehra Rizvi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/aa29d342552ca93dc0ba7999a66e80e81d858cae554a18f9cfdfedb357c373b0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/aa29d342552ca93dc0ba7999a66e80e81d858cae554a18f9cfdfedb357c373b0?s=96&d=mm&r=g\",\"caption\":\"Saba Zehra Rizvi\"},\"description\":\"Saba Zehra Rizvi is Content Team Lead at Stellar. She specializes in providing solutions for issues related to Outlook, Excel, Access, and SQL. She also has a knack for writing process-based blogs, articles, and knowledge base on file conversion tools, such as GroupWise, OLM, NSF, MBOX and others. She also guides her team on strategizing the content and time management\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/saba-rizvi-0b4a4882\"],\"url\":\"https:\/\/www.stellarinfo.com\/blog\/author\/saba\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Restore Specific Table(s) from SQL Database Backup File","description":"In this blog we have discussed the ways to restore specific tables from a SQL database backup file.and also mentioned about the advanced SQL backup recovery tool that will help in restoring specific tables from .BAK file, even if it is corrupted.","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.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/","og_locale":"en_US","og_type":"article","og_title":"How to Restore Specific Table(s) from SQL Database Backup File","og_description":"In this blog we have discussed the ways to restore specific tables from a SQL database backup file.and also mentioned about the advanced SQL backup recovery tool that will help in restoring specific tables from .BAK file, even if it is corrupted.","og_url":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2021-11-16T09:03:57+00:00","article_modified_time":"2024-03-11T11:32:32+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg","type":"image\/jpeg"}],"author":"Saba Zehra Rizvi","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Saba Zehra Rizvi","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/"},"author":{"name":"Saba Zehra Rizvi","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4fe2c7cae913fcdde123757b8543dfb8"},"headline":"How to Restore Specific Table(s) from SQL Database Backup File?","datePublished":"2021-11-16T09:03:57+00:00","dateModified":"2024-03-11T11:32:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/"},"wordCount":729,"commentCount":0,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg","keywords":["restore specific table sql database backup file"],"articleSection":["SQL Database Repair"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/","url":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/","name":"How to Restore Specific Table(s) from SQL Database Backup File","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg","datePublished":"2021-11-16T09:03:57+00:00","dateModified":"2024-03-11T11:32:32+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4fe2c7cae913fcdde123757b8543dfb8"},"description":"In this blog we have discussed the ways to restore specific tables from a SQL database backup file.and also mentioned about the advanced SQL backup recovery tool that will help in restoring specific tables from .BAK file, even if it is corrupted.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/11\/How-to-restore-specific-tables-from-SQL-database-backup-file.jpg","width":1000,"height":600,"caption":"how to restore specific tables from sql database backup file"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/restore-specific-table-from-sql-database-backup-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Restore Specific Table(s) from SQL Database Backup File?"}]},{"@type":"WebSite","@id":"https:\/\/www.stellarinfo.com\/blog\/#website","url":"https:\/\/www.stellarinfo.com\/blog\/","name":"Stellar Data Recovery Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.stellarinfo.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4fe2c7cae913fcdde123757b8543dfb8","name":"Saba Zehra Rizvi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/aa29d342552ca93dc0ba7999a66e80e81d858cae554a18f9cfdfedb357c373b0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/aa29d342552ca93dc0ba7999a66e80e81d858cae554a18f9cfdfedb357c373b0?s=96&d=mm&r=g","caption":"Saba Zehra Rizvi"},"description":"Saba Zehra Rizvi is Content Team Lead at Stellar. She specializes in providing solutions for issues related to Outlook, Excel, Access, and SQL. She also has a knack for writing process-based blogs, articles, and knowledge base on file conversion tools, such as GroupWise, OLM, NSF, MBOX and others. She also guides her team on strategizing the content and time management","sameAs":["https:\/\/www.linkedin.com\/in\/saba-rizvi-0b4a4882"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/saba\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/89878","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/users\/62"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=89878"}],"version-history":[{"count":29,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/89878\/revisions"}],"predecessor-version":[{"id":163833,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/89878\/revisions\/163833"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/89897"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=89878"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=89878"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=89878"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}