zoukankan      html  css  js  c++  java
  • 转载:Breaking ownership chaining within a schema in SQL Server

    Problem
    I have several objects, all in the same schema. Because of this, ownership chaining is working, as described in this previous tip. However, I don't want ownership chaining to be on, but I need the objects to remain in the same schema. How can I do this?

    Solution
    In SQL Server 2005/2008, the objects we typically work with, like tables, views, and stored procedures, are contained in a schema. All schemas have owners, but the objects they contain, by default, do not have owners. For instance, the table MyTable sitting in the MySchema schema doesn't have an owner, but the MySchema schema does. In these cases, SQL Server takes the owner of the schema and treats that as the owner of the object. So consider the case where you have the following objects: a table, MyTable, which is referred to by a stored procedure, MyProc.

    Let's set up the scenario:

    USE MSSQLTips;
    GO

    -- Create a schema to hold our objects
    CREATE SCHEMA MySchema AUTHORIZATION dbo;
    GO

    -- Create a user to test with
    CREATE USER TestUser 
    WITHOUT LOGIN
    WITH DEFAULT_SCHEMA MySchema;
    GO

    -- Create a role to assign permissions to
    CREATE ROLE TestRole;
    GO

    -- Add the user to the role
    EXEC sp_addrolemember 'TestRole''TestUser';
    GO

    And let's create the objects in the MySchema schema:

    -- Create objects to show ownership chaining
    CREATE TABLE MySchema.MyTable (TableInt INT);
    GO

    CREATE PROCEDURE MySchema.MyProc 
    AS
    BEGIN
      SELECT 
    TableInt FROM MySchema.MyTable;
    END;
    GO

    GRANT EXECUTE ON MySchema.MyProc TO TestRole;
    GO

    Now, if we execute as TestUser, we'll see that the stored procedure works, because there is an ownership chain.

    -- script 3
    EXECUTE AS 
    USER 'TestUser';
    GO 

    EXEC MySchema.MyProc;
    GO

    REVERT
    ;
    GO

    This is because neither MyTable nor MyProc has a specified owner. As a result, SQL Server is using the owner of the schema as the owner of both objects. Since the owner is therefore one and the same, dbo, for both objects, the ownership chain forms.  Here is the result for running this query.  Note: the result set is empty, because we did not insert any rows into the table.

    Ownership Chain - Stored Procedure Works

    If we want the ownership chain to be broken, we need to change the owner of either the table or the stored procedure to something other than dbo, since that's the owner of the schema. We can accomplish this by either using an existing user in the database or by creating a new one and then executing an ALTER AUTHORIZATION on one of the two objects. For instance:

    CREATE USER SecondOwner WITHOUT LOGIN;
    GO

    ALTER AUTHORIZATION ON OBJECT::MySchema.MyTable TO SecondOwner;
    GO 

    And now if we go back and execute the code from script 3 again as TestUser, we'll get an error. This is because there is no longer an ownership chain in effect and the TestUser database principal does not have SELECT permissions against the table:

    Ownership chain is broken

    Also, if we look in SQL Server Management Studio we can see the objects are still in the same schema.

    So simply by changing the owner for one of the objects using ALTER AUTHORIZATION, we can break the ownership chain. This should be used with caution, however, as it is easy to overlook this when troubleshooting why something doesn't work since we're so used to having all objects within a given schema "owned" by the schema owner. Also, if the need is to only break the ownership chain on a handful of referring objects, like a few of the stored procedures, then the owner on them should be changed and not the referred to object (the table). This will ensure that other objects referencing the table will still use ownership chaining and will minimize the changes you'll need to make.

    Next Steps

    Readers Who Read This Tip Also Read

    皓首穷经,十年磨一剑
  • 相关阅读:
    VMware workstation安装linux(ubuntu)配置详解
    虚拟机的三种网络模式
    虚拟机(VMware Workstation)的使用方法
    零基础学习hadoop到上手工作线路指导(初级篇)
    Hadoop到底能做什么?怎么用hadoop?
    什么是云计算技术
    什么是云计算
    静态数据库迁移
    apache-mysql-php安装与配置
    CentOS6.6下的authpuppy源码安装与配置完全纯净版,内有问题解答
  • 原文地址:https://www.cnblogs.com/liunatural/p/1614580.html
Copyright © 2011-2022 走看看