{"id":4103,"date":"2016-10-21T08:34:02","date_gmt":"2016-10-21T08:34:02","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=4103"},"modified":"2024-07-15T11:58:12","modified_gmt":"2024-07-15T11:58:12","slug":"attach-sql-database-without-transaction-log-file","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/","title":{"rendered":"3 Methods to Attach SQL Database without Transaction Log File"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>When the transaction log file (.ldf) is missing or corrupted, and you only have the .MDF file to restore SQL database; moreover, when there&rsquo;s no backup available, you can attempt to attach the database file (.MDF) to SQL Server.<\/p><h2 class=\"wp-block-heading\" id=\"how-to-attach-an-sql-database-without-the-log-file?\"><strong>How to Attach an SQL Database without the Log File?<\/strong><\/h2><p>Following are 3 methods you can use to attach Microsoft SQL database without using the transaction log:<\/p><blockquote class=\"note_alert\">\n<p><em><strong>Tip<\/strong>:&nbsp;To attach the database in SQL Server, you will need membership of the db_owner role.<\/em><\/p>\n<\/blockquote><ol class=\"wp-block-list\">\n<li>Using&nbsp;SQL Server Management Studio&nbsp;in SQL Server<\/li>\n\n\n\n<li>Using T-SQL Script<\/li>\n\n\n\n<li>Using <strong>Stellar Repair for MS SQL software<\/strong><\/li>\n<\/ol><blockquote class=\"note_alert\">\n<p><em><strong>Note<\/strong>: Method 1 and Method 2 will only work if the database had a clean shutdown (i.e., there were no active transactions while the database is shut down) and the MDF file is in a healthy state.<\/em><\/p>\n<\/blockquote><h3 class=\"wp-block-heading\" id=\"h-method-1-using-sql-server-management-studio-ssms\"><strong>Method #1: Using SQL Server Management Studio (SSMS)<\/strong><\/h3><p><strong>Step 1<\/strong>: Open SSMS, right-click on the&nbsp;Database&nbsp;node in the&nbsp;Object Explorer&nbsp;window and then click Attach.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" class=\"apply-gradient-on-post-images\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/Click-to-attach.png\" alt=\"Attach Option\"><figcaption class=\"wp-element-caption\">Figure 1 &ndash; Attach Option in SSMS<\/figcaption><\/figure>\n<\/div><p class=\"has-text-align-left\"><strong>Step 2<\/strong>: In the&nbsp;Attach Databases window, click the&nbsp;Add button to specify the database you want to attach.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" class=\"apply-gradient-on-post-images\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/Click-on-Add.png\" alt=\"Add Database\"><figcaption class=\"wp-element-caption\">Figure 2 &ndash; Add a SQL Database in SSMS<\/figcaption><\/figure>\n<\/div><p class=\"has-text-align-left\"><strong>Step 3<\/strong>: When the &lsquo;Locate Database Files&rsquo;&nbsp;dialog box opens, browse through the path where .mdf database file is located, select the file, and then click on&nbsp;OK. A new LDF file will be created by SQL Server while attaching the SQL database. The database will now appear in&nbsp;Databases.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" class=\"apply-gradient-on-post-images\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/Location-of-MDF-file.png\" alt=\"Select MDF File\"><figcaption class=\"wp-element-caption\">Figure 3 &ndash; Select MDF File in SSMS<\/figcaption><\/figure>\n<\/div><p><strong>Step 4<\/strong>: Now, return to the&nbsp;Attach Databases&nbsp;window. Under&nbsp;&lsquo;Database details&rsquo;,&nbsp;you will notice that the SQL Server cannot find the LDF file.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" class=\"apply-gradient-on-post-images\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/Log-file-not-found.png\" alt=\"Remove Log File Option in SSMS\"><figcaption class=\"wp-element-caption\">Figure 4 &ndash; Remove Log File Option in SSMS<\/figcaption><\/figure>\n<\/div><p><strong>Step 5<\/strong>: To attach MDF without LDF file, select the transaction log file (.ldf), and then click on Remove.<\/p><p>Executing these steps will attach an SQL database without the log file.<\/p><h3 class=\"wp-block-heading\" id=\"h-method-2-using-transact-sql\"><strong>Method #2: Using Transact-SQL<\/strong><\/h3><p>You can also attach the database to SQL Server using&nbsp;T-SQL&nbsp;when the transaction log is missing. This procedure can be accomplished by using the following defined script where you need to mention the database&rsquo;s name:<\/p><pre class=\"wp-block-code command_container\"><code>CREATE DATABASE testdb ON\n(FILENAME = &lsquo;C:\\Program Files\\Microsoft SQL Server..\\MSSQL\\DATA\\testdb.mdf&rsquo;)\nFor ATTACH_REBUILD_LOG\nGO<\/code><\/pre><blockquote class=\"note_alert\">\n<p><em><strong>Note<\/strong>:&nbsp;Replace the &lsquo;<strong>testdb.mdf<\/strong>&rsquo; in the above example with your MDF file.<\/em><\/p>\n<\/blockquote><h4 class=\"wp-block-heading\"><strong>Execute DBCC CHECKDB<\/strong><\/h4><p>When the MDF file is successfully attached to the SQL Server with a missing transaction log file (LDF), you must execute&nbsp;<a href=\"https:\/\/www.stellarinfo.com\/blog\/how-to-repair-sql-database-using-dbcc-checkdb-command\/\">DBCC CHECKDB<\/a>&nbsp;for a consistency check, i.e., for checking logical and physical integrity or errors in all the database components.<\/p><h3 class=\"wp-block-heading\" id=\"h-method-3-using-stellar-repair-for-ms-sql\"><strong>Method #3: Using Stellar Repair for MS SQL<\/strong><\/h3><p>The above methods won&rsquo;t work if the MDF file you want to attach is corrupted. In that case, having an <a href=\"https:\/\/www.stellarinfo.com\/article\/free-mdf-file-repair.php\">MDF database file repair tool<\/a>, such as <strong>Stellar Repair for MS SQL<\/strong> at your disposal&nbsp;can help you scan and repair the MDF file.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/cloud.stellarinfo.com\/StellarRepairforMSSQL-Blog.exe\"><img decoding=\"async\" class=\"apply-gradient-on-post-images\" src=\"https:\/\/www.stellarinfo.com\/images\/free-download-windows.png\" alt=\"Stellar\"><\/a><\/figure>\n<\/div><p>Once the master <a href=\"https:\/\/www.stellarinfo.com\/sql-database-repair.php\">database file is repaired<\/a>, you can use it to attach the SQL database without transaction log-file using either&nbsp;SSMS&nbsp;or executing a query in Transact-SQL.<\/p><blockquote class=\"note_alert\">\n<p><em><strong>Read this<\/strong>: <a href=\"https:\/\/www.stellarinfo.com\/article\/free-mdf-file-repair.php\">How to Repair MDF File<\/a>?<\/em><\/p>\n<\/blockquote><h4 class=\"wp-block-heading\" id=\"h-key-features-of-stellar-repair-for-ms-sql-software\"><strong>Key Features of Stellar Repair for MS SQL Software<\/strong><\/h4><ul class=\"wp-block-list\">\n<li>Recovers all SQL database file components, including tables, keys, rules, indexes, defaults, stored procedures, etc.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.stellarinfo.com\/blog\/recover-deleted-records-in-sql-server\/\">Recovers deleted records<\/a> from an MDF file.<\/li>\n\n\n\n<li>Allows saving the repaired database components in multiple file formats, including XLS, HTML, CSV, and New Database or Live Database.<\/li>\n\n\n\n<li>Supports SQL Server 2019, 2017, 2016, 2014, 2012, 2008, 2008 (R2).<\/li>\n\n\n\n<li>The software is tested and <a href=\"https:\/\/www.stellarinfo.com\/mvp-reviews-testimonials.php?product=sql-database\">recommended by Microsoft MVPs across the globe<\/a>. The independent file formats allow accessing database contents without connecting to the Server environment. With the tool&rsquo;s help, you can also gain access to database contents saved in the secondary database files.<\/li>\n<\/ul><p>Hear what <strong>SQL MVP<\/strong> &lsquo;Daniel Calbimonte&rsquo; has to say about <strong>Stellar SQL Database Repair Software<\/strong>.<br><\/p><figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Microsoft MVP- Daniel Calbimonte, Shared his Experience  about Stellar Repair for MS SQL\" width=\"750\" height=\"422\" src=\"https:\/\/www.youtube.com\/embed\/Aie0OxxeQrg?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure><h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2><p>This blog discussed several different ways to attach the MS SQL Server database without log file&rsquo;. When connected to an instance of SQL Server, attach database without transaction log file using SQL Server Management Studio (SSMS). Or, you can use Transact-SQL (T-SQL) to attach the db to the server. But, if the MDF file is lost or corrupt, try using <strong>Stellar Repair for MS SQL<\/strong> software to repair the file and <a href=\"https:\/\/www.stellarinfo.com\/sql-recovery.php\">restore SQL database<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When the transaction log file (.ldf) is missing or corrupted, and you&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/\">Continue reading <span class=\"screen-reader-text\">3 Methods to Attach SQL Database without Transaction Log File<\/span><\/a><\/p>\n","protected":false},"author":85,"featured_media":6320,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10],"tags":[553,552,384,364],"class_list":["post-4103","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-recovery","tag-attach-database-without-log","tag-attach-database-without-log-file","tag-attach-sql-database","tag-sql-database-repair","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>3 Methods to Attach SQL Database without Transaction Log File<\/title>\n<meta name=\"description\" content=\"In this blog, you will read about the simple methods to attach SQL database without log file. Follow these steps to attach MDF without LDF.\" \/>\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\/attach-sql-database-without-transaction-log-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"3 Methods to Attach SQL Database without Transaction Log File\" \/>\n<meta property=\"og:description\" content=\"In this blog, you will read about the simple methods to attach SQL database without log file. Follow these steps to attach MDF without LDF.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-21T08:34:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-15T11:58:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Bharat Bhushan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bharat Bhushan\" \/>\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.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/\"},\"author\":{\"name\":\"Bharat Bhushan\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a\"},\"headline\":\"3 Methods to Attach SQL Database without Transaction Log File\",\"datePublished\":\"2016-10-21T08:34:02+00:00\",\"dateModified\":\"2024-07-15T11:58:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/\"},\"wordCount\":717,\"commentCount\":24,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg\",\"keywords\":[\"attach database without log\",\"attach database without log file\",\"Attach SQL database\",\"SQL database repair\"],\"articleSection\":[\"SQL Database Repair\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/\",\"name\":\"3 Methods to Attach SQL Database without Transaction Log File\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg\",\"datePublished\":\"2016-10-21T08:34:02+00:00\",\"dateModified\":\"2024-07-15T11:58:12+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a\"},\"description\":\"In this blog, you will read about the simple methods to attach SQL database without log file. Follow these steps to attach MDF without LDF.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg\",\"width\":900,\"height\":450,\"caption\":\"attach SQL database\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"3 Methods to Attach SQL Database without Transaction Log 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\/c2edd14c25759638c6a69f5aececf07a\",\"name\":\"Bharat Bhushan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g\",\"caption\":\"Bharat Bhushan\"},\"description\":\"Bharat Bhushan is an experienced technical Marketer working at Stellar Data Recovery - expertise in data care. He is skilled in Microsoft Exchange Database, MSSQL Database troubleshooting &amp; data warehousing. He is a Management Post Graduate having a strong grip in Technology &amp; certified in SAP-SD, Oracle 10g &amp; Informatica Powercenter 9.1.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/bharat-bhushan-311956144\/\"],\"url\":\"https:\/\/www.stellarinfo.com\/blog\/author\/bharat\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"3 Methods to Attach SQL Database without Transaction Log File","description":"In this blog, you will read about the simple methods to attach SQL database without log file. Follow these steps to attach MDF without LDF.","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\/attach-sql-database-without-transaction-log-file\/","og_locale":"en_US","og_type":"article","og_title":"3 Methods to Attach SQL Database without Transaction Log File","og_description":"In this blog, you will read about the simple methods to attach SQL database without log file. Follow these steps to attach MDF without LDF.","og_url":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2016-10-21T08:34:02+00:00","article_modified_time":"2024-07-15T11:58:12+00:00","og_image":[{"width":900,"height":450,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg","type":"image\/jpeg"}],"author":"Bharat Bhushan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Bharat Bhushan","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/"},"author":{"name":"Bharat Bhushan","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a"},"headline":"3 Methods to Attach SQL Database without Transaction Log File","datePublished":"2016-10-21T08:34:02+00:00","dateModified":"2024-07-15T11:58:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/"},"wordCount":717,"commentCount":24,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg","keywords":["attach database without log","attach database without log file","Attach SQL database","SQL database repair"],"articleSection":["SQL Database Repair"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/","url":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/","name":"3 Methods to Attach SQL Database without Transaction Log File","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg","datePublished":"2016-10-21T08:34:02+00:00","dateModified":"2024-07-15T11:58:12+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a"},"description":"In this blog, you will read about the simple methods to attach SQL database without log file. Follow these steps to attach MDF without LDF.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2016\/10\/attach-SQL-database-1.jpg","width":900,"height":450,"caption":"attach SQL database"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/attach-sql-database-without-transaction-log-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"3 Methods to Attach SQL Database without Transaction Log 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\/c2edd14c25759638c6a69f5aececf07a","name":"Bharat Bhushan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g","caption":"Bharat Bhushan"},"description":"Bharat Bhushan is an experienced technical Marketer working at Stellar Data Recovery - expertise in data care. He is skilled in Microsoft Exchange Database, MSSQL Database troubleshooting &amp; data warehousing. He is a Management Post Graduate having a strong grip in Technology &amp; certified in SAP-SD, Oracle 10g &amp; Informatica Powercenter 9.1.","sameAs":["https:\/\/www.linkedin.com\/in\/bharat-bhushan-311956144\/"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/bharat\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/4103","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\/85"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=4103"}],"version-history":[{"count":99,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/4103\/revisions"}],"predecessor-version":[{"id":171576,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/4103\/revisions\/171576"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/6320"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=4103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=4103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=4103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}