{"id":879,"date":"2006-02-09T07:26:00","date_gmt":"2006-02-09T07:26:00","guid":{"rendered":"\/blogs\/bobb\/post\/Ownership-chains-and-NET-procedure-data-access-code.aspx"},"modified":"2006-02-09T07:26:00","modified_gmt":"2006-02-09T07:26:00","slug":"ownership-chains-and-net-procedure-data-access-code","status":"publish","type":"post","link":"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/","title":{"rendered":"Ownership chains and .NET procedure data access code"},"content":{"rendered":"<p>\nDynamic SQL executed in a stored procedure executes by default using the security context of the CALLER of the procedure rather than the OWNER. That&#39;s the way SQL Server has always worked, and although SQL Server 2005 lets you EXECUTE AS OWNER (among other choices), EXECUTE AS CALLER is still the default.\n<\/p>\n<p>\nSo how does this relate to SQL statements execute in a .NET stored procedure, function, or trigger? Do these execute as caller or owner? Turns out it depends on what statement you are executing. Executing an &quot;ordinary&quot; SQL statement like this:\n<\/p>\n<p>\npublic static void GetAuthorsNET {<br \/>\nusing (SqlConnection conn = new SqlConnection(&quot;context connection=true&quot;))<br \/>\nusing (SqlCommand cmd = new SqlCommand(&quot;select * from dbo.authors&quot;, conn)<br \/>\n{<br \/>\n&nbsp; conn.Open();<br \/>\n&nbsp; SqlContext.Pipe.ExecuteAndSend(cmd);<br \/>\n}<br \/>\n}\n<\/p>\n<p>\nGRANT someuser EXECUTE on dbo.GetAuthorsNET\n<\/p>\n<p>\nEXECUTE AS USER=&#39;someuser&#39;<br \/>\nEXEC dbo.GetAuthorsNET<br \/>\nGO<br \/>\nREVERT\n<\/p>\n<p>\nexecutes the SELECT statement in the .NET code as CALLER and throws a permission denied error if the caller doesn&#39;t have direct SELECT access to the authors table. The same contruct in a T-SQL procedure:\n<\/p>\n<p>\nCREATE PROCEDURE dbo.GetAuthorsSQL<br \/>\nAS<br \/>\nSELECT * FROM dbo.authors\n<\/p>\n<p>\nGRANT someuser EXECUTE on dbo.GetAuthorsSQL\n<\/p>\n<p>\nwould execute the SELECT&nbsp;as the OWNER of the stored procedure, not the caller and the SELECT succeeds.\n<\/p>\n<p>\nOK. How about the following .NET code? Does it execute dbo.byroyalty as the OWNER of the stored procedure?\n<\/p>\n<p>\npublic static void ExecByRoyalty {<br \/>\nusing (SqlConnection conn = new SqlConnection(&quot;context connection=true&quot;))<br \/>\nusing (SqlCommand cmd = new SqlCommand(&quot;dbo.byroyalty&quot;, conn)<br \/>\n{<br \/>\n&nbsp; cmd.CommandType = CommandType.StoredProcedure;<br \/>\n&nbsp; cmd.Parameters.AddWithValue(&quot;@percentage&quot;, 50);<br \/>\n&nbsp; conn.Open();<br \/>\n&nbsp; SqlContext.Pipe.ExecuteAndSend(cmd);<br \/>\n}<br \/>\n}\n<\/p>\n<p>\nGRANT someuser EXECUTE on dbo.ExecByRoyalty &#8212; grant on calling proc (owner by dbo)<br \/>\nDENY someuser EXECUTE on dbo.ByRoyalty &#8212; deny on called proc\n<\/p>\n<p>\nThis executes the ByRoyalty proc AS the OWNER of the ExecByRoyalty proc, ownership chain intact. Even if someuser executes ExecByRoyalty. Oh.\n<\/p>\n<p>\nTime for a tiebreaker. How about this one?\n<\/p>\n<p>\npublic static void ExecByRoyaltyAsString {<br \/>\nusing (SqlConnection conn = new SqlConnection(&quot;context connection=true&quot;))<br \/>\nusing (SqlCommand cmd = new SqlCommand(&quot;exec dbo.byroyalty @perc&quot;, conn)<br \/>\n{<br \/>\n&nbsp; cmd.CommandType = CommandType.Text; \/\/ not a sproc, a textual execute statement, does it matter?<br \/>\n&nbsp; cmd.Parameters.AddWithValue(&quot;@perc&quot;, 50);<br \/>\n&nbsp; conn.Open();<br \/>\n&nbsp; SqlContext.Pipe.ExecuteAndSend(cmd);<br \/>\n}<br \/>\n}\n<\/p>\n<p>\nThis executes the ByRoyalty proc AS the OWNER of the ExecByRoyaltyAsString proc, ownership chain intact. The sproc works even when &#39;someuser&#39; executes it. Interesting.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dynamic SQL executed in a stored procedure executes by default using the security context of the CALLER of the procedure rather than the OWNER. That&#39;s the way SQL Server has always worked, and although SQL Server 2005 lets you EXECUTE AS OWNER (among other choices), EXECUTE AS CALLER is still the default. So how does [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,38],"tags":[],"class_list":["post-879","post","type-post","status-publish","format-standard","hentry","category-security","category-sqlclr"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Ownership chains and .NET procedure data access code - Bob Beauchemin<\/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:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ownership chains and .NET procedure data access code - Bob Beauchemin\" \/>\n<meta property=\"og:description\" content=\"Dynamic SQL executed in a stored procedure executes by default using the security context of the CALLER of the procedure rather than the OWNER. That&#039;s the way SQL Server has always worked, and although SQL Server 2005 lets you EXECUTE AS OWNER (among other choices), EXECUTE AS CALLER is still the default. So how does [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Bob Beauchemin\" \/>\n<meta property=\"article:published_time\" content=\"2006-02-09T07:26:00+00:00\" \/>\n<meta name=\"author\" content=\"Bob Beauchemin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bob Beauchemin\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/\",\"name\":\"Ownership chains and .NET procedure data access code - Bob Beauchemin\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website\"},\"datePublished\":\"2006-02-09T07:26:00+00:00\",\"dateModified\":\"2006-02-09T07:26:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Security\",\"item\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/category\/security\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Ownership chains and .NET procedure data access code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/\",\"name\":\"Bob Beauchemin\",\"description\":\"SQL Server Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e\",\"name\":\"Bob Beauchemin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g\",\"caption\":\"Bob Beauchemin\"},\"sameAs\":[\"http:\/www.sqlskills.com\/blogs\/bobb\/\"],\"url\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/author\/bobb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ownership chains and .NET procedure data access code - Bob Beauchemin","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.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/","og_locale":"en_US","og_type":"article","og_title":"Ownership chains and .NET procedure data access code - Bob Beauchemin","og_description":"Dynamic SQL executed in a stored procedure executes by default using the security context of the CALLER of the procedure rather than the OWNER. That&#39;s the way SQL Server has always worked, and although SQL Server 2005 lets you EXECUTE AS OWNER (among other choices), EXECUTE AS CALLER is still the default. So how does [&hellip;]","og_url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/","og_site_name":"Bob Beauchemin","article_published_time":"2006-02-09T07:26:00+00:00","author":"Bob Beauchemin","twitter_misc":{"Written by":"Bob Beauchemin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/","url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/","name":"Ownership chains and .NET procedure data access code - Bob Beauchemin","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website"},"datePublished":"2006-02-09T07:26:00+00:00","dateModified":"2006-02-09T07:26:00+00:00","author":{"@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e"},"breadcrumb":{"@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/ownership-chains-and-net-procedure-data-access-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlskills.com\/blogs\/bobb\/"},{"@type":"ListItem","position":2,"name":"Security","item":"https:\/\/www.sqlskills.com\/blogs\/bobb\/category\/security\/"},{"@type":"ListItem","position":3,"name":"Ownership chains and .NET procedure data access code"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website","url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/","name":"Bob Beauchemin","description":"SQL Server Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlskills.com\/blogs\/bobb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e","name":"Bob Beauchemin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g","caption":"Bob Beauchemin"},"sameAs":["http:\/www.sqlskills.com\/blogs\/bobb\/"],"url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/author\/bobb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/posts\/879","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/comments?post=879"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/posts\/879\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/media?parent=879"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/categories?post=879"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/tags?post=879"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}