{"id":2145,"date":"2018-08-24T12:15:03","date_gmt":"2018-08-24T12:15:03","guid":{"rendered":"http:\/\/dbtut.com\/?p=2145"},"modified":"2021-02-08T12:03:31","modified_gmt":"2021-02-08T12:03:31","slug":"sql-server-lock-types","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/","title":{"rendered":"SQL Server Lock Types"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>SQL Server implements different types of locks that determine how concurrent query requests access the data. For example, imagine that one user wants to read the same record, the other wants to change it.<\/p>\n<p>Will one be able to read the other while trying to change? Or will one change the other while reading?<\/p>\n<p>You can find detailed information about lock types in the table below. The behavior of the lock types depends on the isolation level. Details of the Isolation Levels can be found in the following articles.<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"http:\/\/dbtut.com\/index.php\/2018\/06\/27\/isolation-levels-1\/\" target=\"_blank\" rel=\"noopener\">Isolation Levels 1<\/a><\/p>\n<p><a href=\"http:\/\/dbtut.com\/index.php\/2018\/06\/28\/isolation-levels-2\/\" target=\"_blank\" rel=\"noopener\">Isolation Levels 2<\/a><\/p>\n<p><a href=\"http:\/\/dbtut.com\/index.php\/2018\/06\/28\/isolation-levels-3\/\" target=\"_blank\" rel=\"noopener\">Isolation Levels 3<\/a><\/p>\n<p>&nbsp;<\/p>\n<p>You can access detailed information on how lock types are prevented by others in the article named &#8220;<a href=\"https:\/\/dbtut.com\/index.php\/2018\/08\/25\/lock-compatibility-on-sql-server\/\" target=\"_blank\" rel=\"noopener\">Lock Compatibility\u00a0On SQL Server<\/a>&#8220;.<\/p>\n<div>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr style=\"height: 84px;\">\n<td style=\"width: 146px; height: 84px;\">Shared (S) Lock<\/td>\n<td style=\"width: 598px; height: 84px;\">It is just the kind of lock that is locked while reading data. For example Select.<\/p>\n<p>The lock is released as soon as the data reading is finished.<\/p>\n<p>I can say the most innocent lock variety. Usually, nobody even feels that this lock is put down.<\/p>\n<p>In &#8220;pessimistic concurrency control&#8221;, Shared Lock allows a record to be selected by more than one concurrent session.<\/p>\n<p>You may want to read the article &#8220;<a href=\"https:\/\/dbtut.com\/index.php\/2018\/08\/26\/optimistic-and-pessimistic-concurrency-control\/\" target=\"_blank\" rel=\"noopener\">Optimistic and Pessimistic Concurrency Control<\/a>&#8220;.<\/td>\n<\/tr>\n<tr style=\"height: 97px;\">\n<td style=\"width: 146px; height: 97px;\">Update (U) Locks<\/td>\n<td style=\"width: 598px; height: 97px;\">It is a kind of lock that is put in place to prevent the deadlock problem.<\/p>\n<p>At the same time, &#8220;Update Lock&#8221; can be placed in the same resource only by one transaction.<\/p>\n<p>Transaction will update the Update Lock to Exclusive Lock when updating.<\/td>\n<\/tr>\n<tr style=\"height: 210px;\">\n<td style=\"width: 146px; height: 210px;\">Exclusive (X) Locks<\/td>\n<td style=\"width: 598px; height: 210px;\">It is the type of lock that completely locks.<\/p>\n<p>When this lock is set, no other transaction can change that resource.<\/p>\n<p>Only select clauses that use the WITH (NOLOCK) hint can access this resource.<\/p>\n<p>WITH (NOLOCK) is a hint that is placed at the end of select statements and allows the select&#8217;s isolation level to behave like READ UNCOMMITTED.<\/p>\n<p>You can learn about the Isolation Levels from the links I shared at the beginning of the article.<\/td>\n<\/tr>\n<tr style=\"height: 562px;\">\n<td style=\"width: 146px; height: 562px;\">Intent Locks<\/td>\n<td style=\"width: 598px; height: 562px;\">We have already told you that if a lock exists in one resource and another transaction wants to lock it, but the lock type of the first transaction that puts the lock is not compatible with the lock type of the second transaction, then the second transaction must wait for the first lock to finish.<\/p>\n<p>But while waiting, he puts an intent lock on the source. So it owns the next lock.<\/p>\n<p>And it prevents other transactions from locking the resource.<\/p>\n<p><strong>There are several types of Intent Lock:<\/strong><\/p>\n<p><strong>Intent Shared (IS):<\/strong> It is the type of lock that indicates that you are reading some of the source that is currently in the locked state. When the lock is over, it puts the Shared Lock on the source and reads the data it needs. It does not remove Intent Shared Lock when it puts Shared Lock. When the job is finished, two locks will be removed.<\/p>\n<p><strong>Intent Exclusive (IX):<\/strong> It is the type of lock that indicates that you are going to change some of the source that is currently in the locked state. When the lock is over, it puts the Exclusive Lock on the source and change the data it needs.It does not remove Intent Exclusive Lock when it puts Exclusive Lock. When the job is finished, two locks will be removed.<\/p>\n<p><strong>Shared With Intent Exlusive (SIX):<\/strong> It is the type of lock that indicates that the source that is currently in the locked state will read the entirety and change some of it.<\/td>\n<\/tr>\n<tr style=\"height: 69px;\">\n<td style=\"width: 146px; height: 69px;\">Schema<\/td>\n<td style=\"width: 598px; height: 69px;\">The lock type is set when there is an operation on the schema.<\/td>\n<\/tr>\n<tr style=\"height: 69px;\">\n<td style=\"width: 146px; height: 69px;\">Bulk Update (BU)<\/td>\n<td style=\"width: 598px; height: 69px;\">BU is the lock type that is set when bulk copying is done with tablock hint.<\/td>\n<\/tr>\n<tr style=\"height: 93px;\">\n<td style=\"width: 146px; height: 93px;\">Key-range<\/td>\n<td style=\"width: 598px; height: 93px;\">When serializable transaction isolation level is used, the lock type that locks the range of rows that a select fetches when a query selects.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>You can see the locks on the database with the command below. In Request Status, it writes GRANT or WAIT.<\/p>\n<p>If the GRANT is written, then the transaction has the lock. If WAIT is written, it means waiting to put the lock.<\/p>\n<pre class=\"lang:default decode:true\">SELECT OBJECT_NAME(p.OBJECT_ID) AS TableName,\r\nresource_type, resource_description,request_mode,request_status,request_session_id\r\nFROM sys.dm_tran_locks l\r\nJOIN sys.partitions p ON l.resource_associated_entity_id = p.hobt_id\r\nWHERE l.resource_database_id = DB_ID()<\/pre>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_2145\" class=\"pvc_stats all  \" data-element-id=\"2145\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; SQL Server implements different types of locks that determine how concurrent query requests access the data. For example, imagine that one user wants to read the same record, the other wants to change it. Will one be able to read the other while trying to change? Or will one change the other while reading? &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_2145\" class=\"pvc_stats all  \" data-element-id=\"2145\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-2145","post","type-post","status-publish","format-standard","","category-mssql"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SQL Server Lock Types - Database Tutorials<\/title>\n<meta name=\"description\" content=\"SQL Server Lock Types\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server Lock Types - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"SQL Server Lock Types\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-24T12:15:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-08T12:03:31+00:00\" \/>\n<meta name=\"author\" content=\"dbtut\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"dbtut\" \/>\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:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/\"},\"author\":{\"name\":\"dbtut\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408\"},\"headline\":\"SQL Server Lock Types\",\"datePublished\":\"2018-08-24T12:15:03+00:00\",\"dateModified\":\"2021-02-08T12:03:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/\"},\"wordCount\":693,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"articleSection\":[\"MSSQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/\",\"name\":\"SQL Server Lock Types - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-08-24T12:15:03+00:00\",\"dateModified\":\"2021-02-08T12:03:31+00:00\",\"description\":\"SQL Server Lock Types\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Lock Types\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408\",\"name\":\"dbtut\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g\",\"caption\":\"dbtut\"},\"description\":\"We are a team with over 10 years of database management and BI experience. Our Expertises: Oracle, SQL Server, PostgreSQL, MySQL, MongoDB, Elasticsearch, Kibana, Grafana.\",\"sameAs\":[\"http:\/\/NurullahCAKIR\"],\"url\":\"https:\/\/dbtut.com\/index.php\/author\/dbtut\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Server Lock Types - Database Tutorials","description":"SQL Server Lock Types","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:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server Lock Types - Database Tutorials","og_description":"SQL Server Lock Types","og_url":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/","og_site_name":"Database Tutorials","article_published_time":"2018-08-24T12:15:03+00:00","article_modified_time":"2021-02-08T12:03:31+00:00","author":"dbtut","twitter_card":"summary_large_image","twitter_misc":{"Written by":"dbtut","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/"},"author":{"name":"dbtut","@id":"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408"},"headline":"SQL Server Lock Types","datePublished":"2018-08-24T12:15:03+00:00","dateModified":"2021-02-08T12:03:31+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/"},"wordCount":693,"commentCount":1,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"articleSection":["MSSQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/","url":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/","name":"SQL Server Lock Types - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-08-24T12:15:03+00:00","dateModified":"2021-02-08T12:03:31+00:00","description":"SQL Server Lock Types","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/08\/24\/sql-server-lock-types\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"SQL Server Lock Types"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/fc047c39e1e53dce28fc4253529ea408","name":"dbtut","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c322c32021bf651d9e103b183963c479a9c9791ead0715f4348203496c39aa54?s=96&d=mm&r=g","caption":"dbtut"},"description":"We are a team with over 10 years of database management and BI experience. Our Expertises: Oracle, SQL Server, PostgreSQL, MySQL, MongoDB, Elasticsearch, Kibana, Grafana.","sameAs":["http:\/\/NurullahCAKIR"],"url":"https:\/\/dbtut.com\/index.php\/author\/dbtut\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/2145","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=2145"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/2145\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=2145"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=2145"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=2145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}