{"id":6797,"date":"2021-02-10T10:51:32","date_gmt":"2021-02-10T10:51:32","guid":{"rendered":"http:\/\/webonlinestudio.com\/blog\/?p=6797"},"modified":"2021-02-25T11:12:25","modified_gmt":"2021-02-25T11:12:25","slug":"how-to-attach-only-mdf-file-in-sql-server","status":"publish","type":"post","link":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/","title":{"rendered":"How to Attach Only MDF File in SQL Server 2008"},"content":{"rendered":"<p>Do you want a quick solution to attach only MDF file in SQL server? If yes, then you are on the right page, here we are going to explain the complete procedure for the same. Before proceeding further first, let\u2019s get a brief idea about SQL Database Files.<\/p>\n<h2>Get an Overview of MDF and L DF files<\/h2>\n<p>MDF File is also known as primary database file, it contains start-up information for the database to run and tracks all the databases on the SQL server. Every database in SQL Server has only one primary data file. The supported file extension for the primary data file is .mdf.<\/p>\n<p>LDF or Transaction log file holds the database information in addition to keeping a record of all the actions and changes made on the data on the server. It includes; date, time, details of changes made, user information regarding who made the changes. The supported file extension for the transaction log file is .ldf.<\/p>\n<h2>Why users need to attach MDF file without LDF?<\/h2>\n<p>If there is corruption in LDF file and the transaction log files are deleted intentionally or intentionally. In this situation, you can attach only MDF file in sql server. Once the database file is attached successfully, SQL Server will create a new LDF file.<\/p>\n<h3>How to attach only MDF file in SQL Server 2019, 2017, 2016, 2014, 2012?<\/h3>\n<p>In the subsequent section, you will get the different methods to connect MDF file to MS SQL Server in the absence of log file.<\/p>\n<p><strong>Method 1: Using SSMS<\/strong><\/p>\n<p>1. Launch SQL server management studio. Under the <strong>Object Explorer<\/strong> section, right-click on the <strong>Databases<\/strong> and then choose the <strong>Attach<\/strong> from the menu.<br \/>\n2. Under Attach Databases Wizard, click on the <strong>Add<\/strong> button.<br \/>\n3. Browse the location of MDF file, select the desired file that you want to attach, and then hit the <strong>OK<\/strong>.<br \/>\n4. Afterward, an Attach Database screen will appear where you see the database details, it shows the Log file is not found or missing.<br \/>\n5. Select the LDF and press the <strong>Remove<\/strong> button. At last, click the <strong>OK<\/strong> to attach only MDF file in the SQL server.<\/p>\n<p><strong>Method 2: Using T-SQL Query<\/strong><\/p>\n<p>To execute this method you need to run a T-SQL Script on SQL Query page. Use the script mentioned below:<br \/>\nUSE Master<br \/>\nGo<br \/>\nCREATE DATABASE Database_name ON<br \/>\n(FILENAME = \u2018C:\\Program Files\\Microsoft SQL Server\\..\\MSSQL\\DATA\\\u2019Database_name.mdf\u2019)<br \/>\nFor ATTACH_REBUILD_LOG<br \/>\nGO<\/p>\n<h3>What Will happen if the MDF file is corrupt?<\/h3>\n<p>In case, your MDF file is corrupted or inaccessible then the above-mentioned methods do not work. In such a situation first, you need to repair corrupted MDF file and then attach the healthy database file to SQL Server. For this, It is recommended to use SQL Server Database Recovery tool. This solution can fixes the corrupted, damaged, inaccessible MDF and NDF database files of SQL Server and allow users to export recovered data directly to the live SQL Serer database or as SQL Scripts. With this tool, users can efficiently recover the SQL database files without compromising the data integrity or loss.<\/p>\n<p><strong>Steps to attach only MDF file in SQL server 2019, 2017, 2016, 2014, 2012<\/strong><\/p>\n<p>1. Download and run the <strong>SQL Recovery tool<\/strong> in your system, after that click the <strong>Open<\/strong> to add your MDF file.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-6801\" src=\"http:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/aa-300x170.png\" alt=\"Add MDF file\" width=\"300\" height=\"170\" srcset=\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/aa-300x170.png 300w, https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/aa-768x436.png 768w, https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/aa.png 1024w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><br \/>\n2. Select a <strong>scan option<\/strong> (as per the level of corruption) and also select the version of MDF file.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-6802\" src=\"http:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/bb-300x171.png\" alt=\"Select a scan mode\" width=\"300\" height=\"171\" srcset=\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/bb-300x171.png 300w, https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/bb-768x439.png 768w, https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/bb.png 1024w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><br \/>\n3. Once the scanning process is completed, <strong>preview the complete database <\/strong>and click the Export button.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-6803\" src=\"http:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/cc-300x171.png\" alt=\"Preview data\" width=\"300\" height=\"171\" srcset=\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/cc-300x171.png 300w, https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/cc.png 768w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><br \/>\n4. To attach the MDF file in SQL Server, select the <strong>export to SQL Server database<\/strong> option.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-6804\" src=\"http:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/dd-300x261.png\" alt=\"Select export option\" width=\"300\" height=\"261\" srcset=\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/dd-300x261.png 300w, https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/dd.png 697w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><br \/>\n5. Now, Enter the export detail and finally, click the <strong>Export<\/strong> button.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-6805\" src=\"http:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/ff-300x261.png\" alt=\"Hit Export button\" width=\"300\" height=\"261\" srcset=\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/ff-300x261.png 300w, https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/ff.png 697w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>Done, this is how you can attach the healthy, corrupt, or inaccessible MDF file to SQL Server in the absence of log file.<\/p>\n<h3>Time to Wind Up<\/h3>\n<p>In this write-up, we have mentioned the best solution to attach only MDF file in SQL Server. The mentioned manual methods only work if the database is cleanly shut down and the required database file is corruption-free. In case of corrupt database files, it is suggested to take the help of an alternate solution. The software recommended here is completely secure and gives accurate results in all cases.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you want a quick solution to attach only MDF file in SQL server? If&#8230;<\/p>\n","protected":false},"author":1,"featured_media":6809,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11,198],"tags":[2583,2584,2263],"class_list":["post-6797","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology","category-tips-tricks","tag-attach-mdf-file","tag-attach-only-mdf-file-in-sql-server","tag-sql-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Attach Only MDF File in SQL Server 2008 - Web Online Studio<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Attach Only MDF File in SQL Server 2008 - Web Online Studio\" \/>\n<meta property=\"og:description\" content=\"Do you want a quick solution to attach only MDF file in SQL server? If...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Online Studio\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/WebOnlineStudio\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-10T10:51:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-25T11:12:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png\" \/>\n\t<meta property=\"og:image:width\" content=\"297\" \/>\n\t<meta property=\"og:image:height\" content=\"296\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"WebOnlineStudio\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"WebOnlineStudio\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/\"},\"author\":{\"name\":\"WebOnlineStudio\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#\/schema\/person\/9e306fc9e017be8a602510d1efeade32\"},\"headline\":\"How to Attach Only MDF File in SQL Server 2008\",\"datePublished\":\"2021-02-10T10:51:32+00:00\",\"dateModified\":\"2021-02-25T11:12:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/\"},\"wordCount\":699,\"publisher\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png\",\"keywords\":[\"Attach MDF file\",\"Attach Only MDF File in SQL Server\",\"SQL Server\"],\"articleSection\":[\"Technology\",\"Tips &amp; Tricks\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/\",\"url\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/\",\"name\":\"How to Attach Only MDF File in SQL Server 2008 - Web Online Studio\",\"isPartOf\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png\",\"datePublished\":\"2021-02-10T10:51:32+00:00\",\"dateModified\":\"2021-02-25T11:12:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage\",\"url\":\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png\",\"contentUrl\":\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png\",\"width\":297,\"height\":296},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webonlinestudio.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Attach Only MDF File in SQL Server 2008\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#website\",\"url\":\"https:\/\/webonlinestudio.com\/blog\/\",\"name\":\"Web Online Studio\",\"description\":\"----Read Interesting,Content----\",\"publisher\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webonlinestudio.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#organization\",\"name\":\"Web Online Studio\",\"url\":\"https:\/\/webonlinestudio.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2022\/04\/Web-Online-Studio.jpg\",\"contentUrl\":\"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2022\/04\/Web-Online-Studio.jpg\",\"width\":523,\"height\":413,\"caption\":\"Web Online Studio\"},\"image\":{\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/WebOnlineStudio\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webonlinestudio.com\/blog\/#\/schema\/person\/9e306fc9e017be8a602510d1efeade32\",\"name\":\"WebOnlineStudio\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/3f613ad542a563cd6e21a1719bbb5b7a047e1d349b0c6e9981f2e310fafbf06d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3f613ad542a563cd6e21a1719bbb5b7a047e1d349b0c6e9981f2e310fafbf06d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3f613ad542a563cd6e21a1719bbb5b7a047e1d349b0c6e9981f2e310fafbf06d?s=96&d=mm&r=g\",\"caption\":\"WebOnlineStudio\"},\"sameAs\":[\"http:\/\/webonlinestudio.com\/blog\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Attach Only MDF File in SQL Server 2008 - Web Online Studio","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:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Attach Only MDF File in SQL Server 2008 - Web Online Studio","og_description":"Do you want a quick solution to attach only MDF file in SQL server? If...","og_url":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/","og_site_name":"Web Online Studio","article_publisher":"https:\/\/www.facebook.com\/WebOnlineStudio\/","article_published_time":"2021-02-10T10:51:32+00:00","article_modified_time":"2021-02-25T11:12:25+00:00","og_image":[{"width":297,"height":296,"url":"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png","type":"image\/png"}],"author":"WebOnlineStudio","twitter_card":"summary_large_image","twitter_misc":{"Written by":"WebOnlineStudio","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#article","isPartOf":{"@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/"},"author":{"name":"WebOnlineStudio","@id":"https:\/\/webonlinestudio.com\/blog\/#\/schema\/person\/9e306fc9e017be8a602510d1efeade32"},"headline":"How to Attach Only MDF File in SQL Server 2008","datePublished":"2021-02-10T10:51:32+00:00","dateModified":"2021-02-25T11:12:25+00:00","mainEntityOfPage":{"@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/"},"wordCount":699,"publisher":{"@id":"https:\/\/webonlinestudio.com\/blog\/#organization"},"image":{"@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png","keywords":["Attach MDF file","Attach Only MDF File in SQL Server","SQL Server"],"articleSection":["Technology","Tips &amp; Tricks"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/","url":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/","name":"How to Attach Only MDF File in SQL Server 2008 - Web Online Studio","isPartOf":{"@id":"https:\/\/webonlinestudio.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage"},"image":{"@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png","datePublished":"2021-02-10T10:51:32+00:00","dateModified":"2021-02-25T11:12:25+00:00","breadcrumb":{"@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#primaryimage","url":"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png","contentUrl":"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png","width":297,"height":296},{"@type":"BreadcrumbList","@id":"https:\/\/webonlinestudio.com\/blog\/how-to-attach-only-mdf-file-in-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webonlinestudio.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Attach Only MDF File in SQL Server 2008"}]},{"@type":"WebSite","@id":"https:\/\/webonlinestudio.com\/blog\/#website","url":"https:\/\/webonlinestudio.com\/blog\/","name":"Web Online Studio","description":"----Read Interesting,Content----","publisher":{"@id":"https:\/\/webonlinestudio.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webonlinestudio.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webonlinestudio.com\/blog\/#organization","name":"Web Online Studio","url":"https:\/\/webonlinestudio.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webonlinestudio.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2022\/04\/Web-Online-Studio.jpg","contentUrl":"https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2022\/04\/Web-Online-Studio.jpg","width":523,"height":413,"caption":"Web Online Studio"},"image":{"@id":"https:\/\/webonlinestudio.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/WebOnlineStudio\/"]},{"@type":"Person","@id":"https:\/\/webonlinestudio.com\/blog\/#\/schema\/person\/9e306fc9e017be8a602510d1efeade32","name":"WebOnlineStudio","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3f613ad542a563cd6e21a1719bbb5b7a047e1d349b0c6e9981f2e310fafbf06d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3f613ad542a563cd6e21a1719bbb5b7a047e1d349b0c6e9981f2e310fafbf06d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3f613ad542a563cd6e21a1719bbb5b7a047e1d349b0c6e9981f2e310fafbf06d?s=96&d=mm&r=g","caption":"WebOnlineStudio"},"sameAs":["http:\/\/webonlinestudio.com\/blog"]}]}},"featured_image_urls":{"full":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"thumbnail":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf-150x150.png",150,150,true],"medium":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"medium_large":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"large":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"1536x1536":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"2048x2048":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"newsphere-slider-full":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"newsphere-featured":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false],"newsphere-medium":["https:\/\/webonlinestudio.com\/blog\/wp-content\/uploads\/2021\/02\/mddf.png",297,296,false]},"author_info":{"display_name":"WebOnlineStudio","author_link":"https:\/\/webonlinestudio.com\/blog\/author\/webonlinestudio\/"},"category_info":"<a href=\"https:\/\/webonlinestudio.com\/blog\/category\/technology\/\" rel=\"category tag\">Technology<\/a> <a href=\"https:\/\/webonlinestudio.com\/blog\/category\/tips-tricks\/\" rel=\"category tag\">Tips &amp; Tricks<\/a>","tag_info":"Tips &amp; Tricks","comment_count":0,"_links":{"self":[{"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/posts\/6797","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/comments?post=6797"}],"version-history":[{"count":4,"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/posts\/6797\/revisions"}],"predecessor-version":[{"id":6830,"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/posts\/6797\/revisions\/6830"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/media\/6809"}],"wp:attachment":[{"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/media?parent=6797"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/categories?post=6797"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webonlinestudio.com\/blog\/wp-json\/wp\/v2\/tags?post=6797"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}