{"id":2094,"date":"2014-02-20T11:00:33","date_gmt":"2014-02-20T16:00:33","guid":{"rendered":"http:\/\/sqlity.net\/en\/?p=2094"},"modified":"2014-11-13T13:15:39","modified_gmt":"2014-11-13T18:15:39","slug":"column-grant-overrides-table-deny","status":"publish","type":"post","link":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/","title":{"rendered":"Security Pitfalls &#8211; Column Level GRANT overrides Table Level DENY"},"content":{"rendered":"<div>\n<h3>Introduction<\/h3>\n<p>\nA few days ago we talked about <a href=\"http:\/\/sqlity.net\/en\/2009\/deny-vs-revoke-3\/\">Hierarchies of Securables<\/a>. There we saw that a <span class=\"tt\">DENY<\/span> on one level always wins over a <span class=\"tt\">GRANT<\/span> on another level. Well, as they say, there is no rule without exception.\n<\/p>\n<h3>The Special Column Level Grant<\/h3>\n<p>\nAs we have seen before, for example in my post about <a href=\"http:\/\/sqlity.net\/en\/1958\/revoking-column-permissions\/\">revoking of column permissions<\/a>, column permissions are at times a little odd. In this post I would like to show you another one of those oddities. For that I first need a principal and a securable:\n<\/p>\n<div>\n[sql]\nCREATE LOGIN TestLogin1 WITH PASSWORD='********', CHECK_POLICY = OFF;<br \/>\nCREATE USER TestUser1 FOR LOGIN TestLogin1;<br \/>\nGO<br \/>\nCREATE SCHEMA TestSchema1;<br \/>\nGO<br \/>\nCREATE TABLE TestSchema1.tst1(id INT, col1 INT);<br \/>\nINSERT INTO TestSchema1.tst1 VALUES(42, 1);<br \/>\n[\/sql]\n<\/div>\n<p>\nBefore we get started however, let's recap what the expected behavior is. When a privilege is granted at the table level but denied at the schema level we expect, because we know that a <span class=\"tt\">DENY<\/span> always wins, that access to the table will be denied. Let's confirm:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg\" alt=\"Permissions in an object hierarchy reviewed.\" width=\"782\" height=\"427\" class=\"aligncenter size-full wp-image-2095\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg 782w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed-300x163.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed-150x81.jpg 150w\" sizes=\"auto, (max-width: 782px) 100vw, 782px\" \/><\/a>\n<\/p>\n<p>\nAs expected, <span class=\"tt\">TestUser1<\/span> cannot <span class=\"tt\">SELECT<\/span> from the table. Only after the <span class=\"tt\">DENY<\/span> has been explicitly revoked can the table be accessed:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Access_granted_after_DENY_was_revoked.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Access_granted_after_DENY_was_revoked.jpg\" alt=\"Access is granted after the DENY on the schema was revoked.\" width=\"782\" height=\"427\" class=\"aligncenter size-full wp-image-2096\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Access_granted_after_DENY_was_revoked.jpg 782w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Access_granted_after_DENY_was_revoked-300x163.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Access_granted_after_DENY_was_revoked-150x81.jpg 150w\" sizes=\"auto, (max-width: 782px) 100vw, 782px\" \/><\/a>\n<\/p>\n<p>\nNow let's see what happens if we <span class=\"tt\">DENY<\/span> access to the table, but <span class=\"tt\">GRANT<\/span> it to a column:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_does_not_follow_the_rules..jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_does_not_follow_the_rules..jpg\" alt=\"A column level GRANT does not follow the usual rules.\" width=\"782\" height=\"427\" class=\"aligncenter size-full wp-image-2097\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_does_not_follow_the_rules..jpg 782w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_does_not_follow_the_rules.-300x163.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_does_not_follow_the_rules.-150x81.jpg 150w\" sizes=\"auto, (max-width: 782px) 100vw, 782px\" \/><\/a>\n<\/p>\n<p>\nThe access attempt is successful. Even though access was denied at a different hierarchy level, and even though a <span class=\"tt\">DENY<\/span> should always trump a <span class=\"tt\">GRANT<\/span>, <span class=\"tt\">TestUser1<\/span> was able to <span class=\"tt\">SELECT<\/span> from the table.\n<\/p>\n<p>\nThe documentation says about this: \"<a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/ms188371.aspx#alert_caution\" target=\"BOL\">A table-level DENY does not take precedence over a column-level GRANT. This inconsistency in the permissions hierarchy has been preserved for backward compatibility.<\/a>\"\n<\/p>\n<p>\nWhile in other cases such an inconsistency is usually marked deprecated, it seems Microsoft is reluctant to changing this behavior. So we have to live with the fact that a table level <span class=\"tt\">DENY<\/span> cannot be used to override a column level <span class=\"tt\">GRANT<\/span>.\n<\/p>\n<p>\nHowever, a table level <span class=\"tt\">DENY<\/span> and a column level <span class=\"tt\">GRANT<\/span> is the only coupling that fails to obey the rules. For example a schema level <span class=\"tt\">DENY<\/span> is stronger that a column level <span class=\"tt\">GRANT<\/span>:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_obeys_Schema_Level_DENY..jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_obeys_Schema_Level_DENY..jpg\" alt=\"However, a column level GRANT does yield to a schema level DENY.\" width=\"782\" height=\"427\" class=\"aligncenter size-full wp-image-2098\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_obeys_Schema_Level_DENY..jpg 782w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_obeys_Schema_Level_DENY.-300x163.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Column_Level_GRANT_obeys_Schema_Level_DENY.-150x81.jpg 150w\" sizes=\"auto, (max-width: 782px) 100vw, 782px\" \/><\/a>\n<\/p>\n<h3>Summary<\/h3>\n<p>\nFor reasons of backward compatibility, in SQL Server a column level <span class=\"tt\">GRANT<\/span> is stronger than a table level <span class=\"tt\">DENY<\/span>. This is a unique exception to the rule that a deny on any level of the hierarchy of securables always overrides a <span class=\"tt\">GRANT<\/span> on another level.\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>While a DENY on one level of a security hierarchy in SQL Server always overrides a GRANT on a different level, there is one important exception. Read on to learn more about this exception and how it affects your security management.<\/p>\n<p> <a href=\"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/\">[more&#8230;]<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[5,34,99],"tags":[103,88,50,38,58,15],"class_list":["post-2094","post","type-post","status-publish","format-standard","hentry","category-general","category-security","category-security-pitfalls","tag-deny","tag-grant","tag-permission","tag-security-2","tag-security-management","tag-sql-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Security Pitfalls - Column Level GRANT overrides Table Level DENY - sqlity.net<\/title>\n<meta name=\"description\" content=\"While a DENY always overrides a GRANT on different hierarchy levels, there is one important exception: A Column Level GRANT survives a Table Level DENY.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Security Pitfalls - Column Level GRANT overrides Table Level DENY - sqlity.net\" \/>\n<meta property=\"og:description\" content=\"While a DENY always overrides a GRANT on different hierarchy levels, there is one important exception: A Column Level GRANT survives a Table Level DENY.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/\" \/>\n<meta property=\"og:site_name\" content=\"sqlity.net\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sqlity.net\" \/>\n<meta property=\"article:published_time\" content=\"2014-02-20T16:00:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-11-13T18:15:39+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg\" \/>\n<meta name=\"author\" content=\"Sebastian Meine\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sqlity\" \/>\n<meta name=\"twitter:site\" content=\"@sqlity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sebastian Meine\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/\"},\"author\":{\"name\":\"Sebastian Meine\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"headline\":\"Security Pitfalls &#8211; Column Level GRANT overrides Table Level DENY\",\"datePublished\":\"2014-02-20T16:00:33+00:00\",\"dateModified\":\"2014-11-13T18:15:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/\"},\"wordCount\":446,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/Permissions_in_an_object_hierarchy_reviewed.jpg\",\"keywords\":[\"DENY\",\"GRANT\",\"Permission\",\"security\",\"security management\",\"SQL Server\"],\"articleSection\":[\"General\",\"Security\",\"Security Pitfalls\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/\",\"name\":\"Security Pitfalls - Column Level GRANT overrides Table Level DENY - sqlity.net\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/Permissions_in_an_object_hierarchy_reviewed.jpg\",\"datePublished\":\"2014-02-20T16:00:33+00:00\",\"dateModified\":\"2014-11-13T18:15:39+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"description\":\"While a DENY always overrides a GRANT on different hierarchy levels, there is one important exception: A Column Level GRANT survives a Table Level DENY.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#primaryimage\",\"url\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/Permissions_in_an_object_hierarchy_reviewed.jpg\",\"contentUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/Permissions_in_an_object_hierarchy_reviewed.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2094\\\/column-grant-overrides-table-deny\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Security Pitfalls &#8211; Column Level GRANT overrides Table Level DENY\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\",\"name\":\"sqlity.net\",\"description\":\"Quality for SQL\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/sqlity.net\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\",\"name\":\"Sebastian Meine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"caption\":\"Sebastian Meine\"},\"sameAs\":[\"http:\\\/\\\/sqlity.net\",\"https:\\\/\\\/x.com\\\/sqlity\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Security Pitfalls - Column Level GRANT overrides Table Level DENY - sqlity.net","description":"While a DENY always overrides a GRANT on different hierarchy levels, there is one important exception: A Column Level GRANT survives a Table Level DENY.","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:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/","og_locale":"en_US","og_type":"article","og_title":"Security Pitfalls - Column Level GRANT overrides Table Level DENY - sqlity.net","og_description":"While a DENY always overrides a GRANT on different hierarchy levels, there is one important exception: A Column Level GRANT survives a Table Level DENY.","og_url":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/","og_site_name":"sqlity.net","article_publisher":"https:\/\/www.facebook.com\/sqlity.net","article_published_time":"2014-02-20T16:00:33+00:00","article_modified_time":"2014-11-13T18:15:39+00:00","og_image":[{"url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg","type":"","width":"","height":""}],"author":"Sebastian Meine","twitter_card":"summary_large_image","twitter_creator":"@sqlity","twitter_site":"@sqlity","twitter_misc":{"Written by":"Sebastian Meine","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#article","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/"},"author":{"name":"Sebastian Meine","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"headline":"Security Pitfalls &#8211; Column Level GRANT overrides Table Level DENY","datePublished":"2014-02-20T16:00:33+00:00","dateModified":"2014-11-13T18:15:39+00:00","mainEntityOfPage":{"@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/"},"wordCount":446,"commentCount":0,"image":{"@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg","keywords":["DENY","GRANT","Permission","security","security management","SQL Server"],"articleSection":["General","Security","Security Pitfalls"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/","url":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/","name":"Security Pitfalls - Column Level GRANT overrides Table Level DENY - sqlity.net","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#primaryimage"},"image":{"@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg","datePublished":"2014-02-20T16:00:33+00:00","dateModified":"2014-11-13T18:15:39+00:00","author":{"@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"description":"While a DENY always overrides a GRANT on different hierarchy levels, there is one important exception: A Column Level GRANT survives a Table Level DENY.","breadcrumb":{"@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#primaryimage","url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg","contentUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Permissions_in_an_object_hierarchy_reviewed.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/sqlity.net\/en\/2094\/column-grant-overrides-table-deny\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sqlity.net\/en\/"},{"@type":"ListItem","position":2,"name":"Security Pitfalls &#8211; Column Level GRANT overrides Table Level DENY"}]},{"@type":"WebSite","@id":"https:\/\/sqlity.net\/en\/#website","url":"https:\/\/sqlity.net\/en\/","name":"sqlity.net","description":"Quality for SQL","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sqlity.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c","name":"Sebastian Meine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","caption":"Sebastian Meine"},"sameAs":["http:\/\/sqlity.net","https:\/\/x.com\/sqlity"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p2wXuw-xM","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/2094","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/comments?post=2094"}],"version-history":[{"count":0,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/2094\/revisions"}],"wp:attachment":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/media?parent=2094"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/categories?post=2094"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/tags?post=2094"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}