{"id":6663,"date":"2019-08-16T11:10:54","date_gmt":"2019-08-16T10:10:54","guid":{"rendered":"http:\/\/wordpress.semnaitik.com\/?p=6663"},"modified":"2021-01-07T05:31:02","modified_gmt":"2021-01-07T04:31:02","slug":"how-to-restore-deleted-records-in-sql-server","status":"publish","type":"post","link":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/","title":{"rendered":"DIY Methods to Restore Deleted Records in SQL Server without Data Loss"},"content":{"rendered":"\n<p>SQL Server Database is mainly used to store data on the server and keep a record of files and many corporate companies also use SQL server for maintaining attendance sheets and keeping salary records. But sometimes accidentally the user deletes files from the SQL Server which results in a huge loss. Therefore in this article, I will share some techniques through which you can easily restore deleted records in SQL Server and access them without any hassle.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.sysinfotools.com\/demo-version\/SysInfoTools-MS-SQL-Database-Recovery.exe\"><img decoding=\"async\" width=\"150\" height=\"43\" class=\"wp-image-4273\" style=\"width: 150px;\" src=\"http:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2013\/11\/download-free-demo.png\" alt=\"\"><\/a><br><\/p>\n\n\n\n<p>I\u2019ll share some manual techniques which might also work in getting back the deleted records and if by chance they fail then you have to spend some bucks and try professional recovery software. It is really difficult to recover deleted or lost records from the database but we can give a try by following the manual methods and see if the manual methods can fix this problem or not.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Steps to Recover Lost Data in SQL Server 2012 and other Versions<\/strong><\/h2>\n\n\n\n<p>First try the manual procedure and if it fails, then move to the Professional method.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Try to Recover Data via LSN<\/strong><\/h3>\n\n\n\n<p>LSN means Log Sequence numbers which identify the time of SQL Log\nTransaction when it has occurs. So you can get back deleted data with the help\nof LSN. But the prerequisite for this method is that you should remember the\ntime and date when you have deleted the data. You can follow the steps given\nbelow to get back erased data in SQL Database:-<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Check the number of rows present in the table by using the query given below.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-verse\">SELECT * FROM Table_name<\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Use the following query and then create a backup of the SQL Log transaction.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-verse\">USE Databasename<br>\nGO<br>\nBACKUP LOG [Databasename]<br>\nTO DISK = N\u2019D:\\Databasename\\RDDTrLog.trn\u2019<br>\nWITH NOFORMAT, NOINIT,<br>\nNAME = N\u2019Databasename-Transaction Log Backup\u2019,<br>\nSKIP, NOREWIND, NOUNLOAD, STATS = 10<br>\nGO<\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Run the following query to retrieve information\nof the deleted records.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-verse\">USE Databasename<br>\nGO<br>\nSelect [Current LSN] LSN], [Transaction ID], Operation, Context, AllocUnitName<br>\nFROM<br>\nfn_dblog(NULL, NULL)<br>\nWHERE Operation = \u2018LOP_DELETE_ROWS\u2019<\/pre>\n\n\n\n<p>Now, you\u2019ll get the transaction of all the deleted record and if you have got the transaction I.D. of the lost record then go to the next step.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>In the following query enter the transaction I.D. of your deleted data and then you&#8217;ll know the time and date of deletion.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-verse\">USE Databasename<br>\nGO<br>\nSELECT<br>\n[Current LSN], Operation, [Transaction ID], [Begin Time], [Transaction Name],\n[Transaction SID]<br>\nFROM<br>\nfn_dblog(NULL, NULL)<br>\nWHERE<br>\n[Transaction ID] = \u2018Transaction of your deleted data\u2032<br>\nAND<br>\n[Operation] = \u2018LOP_BEGIN_XACT\u2019<\/pre>\n\n\n\n<p>You\u2019ll get the LSN value of your deleted record and now, it is the\ntime to restore deleted records in SQL Server.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Execute the following query to initiate the\nrecovering process.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-verse\">Recover Deleted D USE Databasename<br>\nGO<br>\nRESTORE DATABASE Databasename_COPY FROM<br>\nDISK = \u2018D:\\Databasename\\RDDFull.bak\u2019<br>\nWITH<br>\nMOVE \u2018Databasename\u2019 TO \u2018D:\\RecoverDB\\Databasename.mdf\u2019,<br>\nMOVE \u2018Databasename_log\u2019 TO \u2018D:\\RecoverDB\\Databasename_log.ldf\u2019,<br>\nREPLACE, NORECOVERY;<br>\nGO<\/pre>\n\n\n\n<ul class=\"wp-block-list\"><li>Now, put the LSN value that you have got in the following command.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-verse\">USE Databasename<br>GO<br> RESTORE LOG Databasename_COPY FROM DISK=N\u2019D:\\Databasename\\RDOTrLog.trn\u2019 WITH STOPBEFOREMARK=\u2018lsn:0x00000020:000001d0:0002\u2032 <\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" width=\"735\" height=\"51\" src=\"https:\/\/wordpress.semnaitik.com\/wp-content\/uploads\/2019\/08\/1.bmp\" alt=\"\" class=\"wp-image-6664\" srcset=\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/1.bmp 735w, https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/1-300x21.jpg 300w\" sizes=\"(max-width: 735px) 100vw, 735px\" \/><\/figure><\/div>\n\n\n\n<ul class=\"wp-block-list\"><li>Finally, Run the following query and see whether you have\nsucceeded in restoring the data back.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-verse\">USE\nDatabasename_Copy GO Select * from Table_name<\/pre>\n\n\n\n<p>You May Also Read- <a href=\"https:\/\/wordpress.semnaitik.com\/sql-server-login-failed-error-18456\/\">SQL Server Login Error 18456<\/a><\/p>\n\n\n\n<p>I hope this\nmanual method will help you out to resolve your issue but there are some\ndrawbacks of using the manual methods.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Disadvantages of the Manual Method<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>It is a very time-consuming method and you also have to run all the queries will full concentration.<\/li><li>Any kind of negligence during the whole process may result in full data loss.<\/li><li>The manual method is not recommended for novice users because it requires a lot of technical expertise.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.sysinfotools.com\/recovery\/ms-sql-database-recovery.php\">SQL Database Recovery Software<\/a><\/h3>\n\n\n\n<p>The professional tool is the only solution for getting back the deleted data in SQL Database and it also defeats all the disadvantages of the manual methods and neither is it time taking nor there is any chance of data loss. The user can easily recover all the data either it is deleted or has gone corrupted.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h4>\n\n\n\n<p>The ball is in your court and you have to decide which method will be the best option for recovering records and if you are having good technical knowledge then you can try the manual method otherwise you should go with the Software because it is quick and there are no chances of data loss during the recovery process. So, make your choice and restore deleted records in SQL Server.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>SQL Server Database is mainly used to store data on the server and keep a record of files and many<a class=\"read-more ml-1 main-read-more\" href=\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":6665,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[285],"tags":[],"class_list":["post-6663","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>How to Restore Deleted Records in SQL Server 2012<\/title>\n<meta name=\"description\" content=\"Here are some tricks through which you can easily restore deleted records in SQL server 2012 and in all the other versions available.\" \/>\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\/how-to-restore-deleted-records-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 Restore Deleted Records in SQL Server 2012\" \/>\n<meta property=\"og:description\" content=\"Here are some tricks through which you can easily restore deleted records in SQL server 2012 and in all the other versions available.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/naitik.semwaal.5\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-16T10:10:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-07T04:31:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"698\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/\"},\"author\":{\"name\":\"Danish\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77\"},\"headline\":\"DIY Methods to Restore Deleted Records in SQL Server without Data Loss\",\"datePublished\":\"2019-08-16T10:10:54+00:00\",\"dateModified\":\"2021-01-07T04:31:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/\"},\"wordCount\":628,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg\",\"articleSection\":[\"Data Recovery\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/\",\"url\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/\",\"name\":\"How to Restore Deleted Records in SQL Server 2012\",\"isPartOf\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg\",\"datePublished\":\"2019-08-16T10:10:54+00:00\",\"dateModified\":\"2021-01-07T04:31:02+00:00\",\"author\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77\"},\"description\":\"Here are some tricks through which you can easily restore deleted records in SQL server 2012 and in all the other versions available.\",\"breadcrumb\":{\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage\",\"url\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg\",\"contentUrl\":\"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg\",\"width\":698,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wordpress.semnaitik.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DIY Methods to Restore Deleted Records in SQL Server without Data Loss\"}]},{\"@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":"How to Restore Deleted Records in SQL Server 2012","description":"Here are some tricks through which you can easily restore deleted records in SQL server 2012 and in all the other versions available.","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\/how-to-restore-deleted-records-in-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Restore Deleted Records in SQL Server 2012","og_description":"Here are some tricks through which you can easily restore deleted records in SQL server 2012 and in all the other versions available.","og_url":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/","article_author":"https:\/\/www.facebook.com\/naitik.semwaal.5","article_published_time":"2019-08-16T10:10:54+00:00","article_modified_time":"2021-01-07T04:31:02+00:00","og_image":[{"width":698,"height":400,"url":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg","type":"image\/jpeg"}],"author":"Danish","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Danish","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#article","isPartOf":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/"},"author":{"name":"Danish","@id":"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77"},"headline":"DIY Methods to Restore Deleted Records in SQL Server without Data Loss","datePublished":"2019-08-16T10:10:54+00:00","dateModified":"2021-01-07T04:31:02+00:00","mainEntityOfPage":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/"},"wordCount":628,"commentCount":0,"image":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg","articleSection":["Data Recovery"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/","url":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/","name":"How to Restore Deleted Records in SQL Server 2012","isPartOf":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage"},"image":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg","datePublished":"2019-08-16T10:10:54+00:00","dateModified":"2021-01-07T04:31:02+00:00","author":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/#\/schema\/person\/2a69018b8418db3a31ca2d0a0a3e2c77"},"description":"Here are some tricks through which you can easily restore deleted records in SQL server 2012 and in all the other versions available.","breadcrumb":{"@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#primaryimage","url":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg","contentUrl":"https:\/\/wordpress.semnaitik.com\/blog\/wp-content\/uploads\/2019\/08\/recover-deleted-records-in-sql-server.jpg","width":698,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/wordpress.semnaitik.com\/blog\/how-to-restore-deleted-records-in-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wordpress.semnaitik.com\/blog\/"},{"@type":"ListItem","position":2,"name":"DIY Methods to Restore Deleted Records in SQL Server without Data Loss"}]},{"@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\/6663","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=6663"}],"version-history":[{"count":5,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/posts\/6663\/revisions"}],"predecessor-version":[{"id":7118,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/posts\/6663\/revisions\/7118"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/media\/6665"}],"wp:attachment":[{"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/media?parent=6663"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/categories?post=6663"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wordpress.semnaitik.com\/blog\/wp-json\/wp\/v2\/tags?post=6663"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}