SQLServer之修改数据库架构
修改数据库架构注意事项
用户与架构完全分离。
ALTER SCHEMA 仅可用于在同一数据库中的架构之间移动安全对象。 若要更改或删除架构中的安全对象,请使用特定于该安全对象的 ALTER 或 DROP 语句。
如果对 securable_name 使用了由一部分组成的名称,则将使用当前生效的名称解析规则查找该安全对象。
将安全对象移入新架构时,将删除与该安全对象关联的全部权限。 如果已显式设置安全对象的所有者,则该所有者保持不变。 如果安全对象的所有者已设置为 SCHEMA OWNER,则该所有者将保持为 SCHEMA OWNER;但移动之后,SCHEMA OWNER 将解析为新架构的所有者。 新所有者的 principal_id 将为 NULL。
无论是 sys.sql_modules 目录视图的 definition 列中的相应对象,还是使用 OBJECT_DEFINITION 内置函数获取的相应对象,移动存储过程、函数、视图或触发器都不会更改其架构名称(如有)。 因此,我们建议不要使用 ALTER SCHEMA 移动这些对象类型。 而是删除对象,然后在新架构中重新创建该对象。
移动表或同义词不会自动更新对该对象的引用。 必须手动修改引用已移动对象的任何对象。 例如,如果移动了某个表,并且触发器中引用了该表,则必须修改触发器以反映新的架构名称。 请使用 sys.sql_expression_dependencies 列出该对象上的依赖关系,然后再进行移动。
若要通过使用 SQL Server Management Studio 更改表的架构,请在对象资源管理器中右键单击该表,然后单击“设计”。 按 F4 以打开“属性”窗口。 在“架构”框中,选择新架构。
若要从另一个架构中传输安全对象,当前用户必须拥有对该安全对象(非架构)的 CONTROL 权限,并拥有对目标架构的 ALTER 权限。
如果已为安全对象指定 EXECUTE AS OWNER,且所有者已设置为 SCHEMA OWNER,则用户还必须拥有对目标架构所有者的 IMPERSONATE 权限。
在移动安全对象后,将删除与所传输的安全对象相关联的所有权限。
使用SSMS数据库管理工具修改架构
1、连接服务器-》展开数据库文件夹-》选择数据库并展开-》展开安全性文件夹-》展开架构文件夹-》选择要修改的架构右键点击属性。
2、在架构属性弹出框-》点击常规-》点击搜索修改架构所有者。
3、在架构属性弹出框-》点击权限-》点击搜索选择用户或角色-》选择用户或角色权限。
4、在架构属性弹出框-》点击扩展属性-》新增或者删除扩展属性。
使用T-SQL脚本修改数据库架构
语法
--声明数据库引用
use database_name;
go 修改用户或者角色
alter authorization on schema::[ArchitectureName] to [schemaOwner];
go --修改用户或角色权限
--授予插入
grant insert on schema::[ArchitectureName] to [rolename_username];
go --授予查看定义
grant view definition on schema::[ArchitectureName] to [rolename_username];
go --授予查看更改跟踪
grant view change tracking on schema::[ArchitectureName] to [rolename_username];
go --授予创建序列
grant create sequence on schema::[ArchitectureName] to [rolename_username];
go --授予更改
grant alter on schema::[ArchitectureName] to [rolename_username];
go --授予更新
grant update on schema::[ArchitectureName] to [rolename_username];
go --接管所有权
grant take ownership on schema::[ArchitectureName] to [rolename_username];
go --授予控制
grant control on schema::[ArchitectureName] to [rolename_username];
go --授予删除
grant delete on schema::[ArchitectureName] to [rolename_username];
go --授予选择
grant select on schema::[ArchitectureName] to [rolename_username];
go --授予引用
grant references on schema::[ArchitectureName] to [rolename_username];
go --授予执行
grant execute on schema::[ArchitectureName] to [rolename_username];
go --授予并允许转授插入
grant insert on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授查看定义
grant view definition on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授查看更改跟踪
grant view change tracking on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授创建序列
grant create sequence on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授更改
grant alter on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授更新
grant update on schema::[ArchitectureName] to [rolename_username] with grant option;
go --接管并允许转授所有权
grant take ownership on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授控制
grant control on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授删除
grant delete on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授选择
grant select on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授引用
grant references on schema::[ArchitectureName] to [rolename_username] with grant option;
go --授予并允许转授执行
grant execute on schema::[ArchitectureName] to [rolename_username] with grant option;
go --拒绝插入
deny insert on schema::[ArchitectureName] to [rolename_username];
go --拒绝查看定义
deny view definition on schema::[ArchitectureName] to [rolename_username];
go --拒绝查看更改跟踪
deny view change tracking on schema::[ArchitectureName] to [rolename_username];
go --拒绝创建序列
deny create sequence on schema::[ArchitectureName] to [rolename_username];
go --拒绝更改
deny alter on schema::[ArchitectureName] to [rolename_username];
go --拒绝更新
deny update on schema::[ArchitectureName] to [rolename_username];
go --拒绝所有权
deny take ownership on schema::[ArchitectureName] to [rolename_username];
go --拒绝控制
deny control on schema::[ArchitectureName] to [rolename_username];
go --拒绝删除
deny delete on schema::[ArchitectureName] to [rolename_username];
go --拒绝选择
deny select on schema::[ArchitectureName] to [rolename_username];
go --拒绝引用
deny references on schema::[ArchitectureName] to [rolename_username];
go --拒绝执行
deny execute on schema::[ArchitectureName] to [rolename_username];
go 删除数据库架构扩展属性
exec sys.sp_dropextendedproperty @name=N'extendedAttributeName',@level0type=N'schema',@level0name=N'extendedAttributeValue'
go 创建数据库架构扩属性
exec sys.sp_addextendedproperty @name=N'newExtendedAttributeName',@value=N'newExtendedAttributeValue' , @level0type=N'schema',@level0name=N'ArchitectureName'
go --修改数据库架构
alter schema schema_name(你要修改成得新架构)
transfer { object | type | xml schema collection } securable_name (原架构名.对象名);
go
语法解析
--语法解析
--schema_name
--当前数据库中的架构名称,安全对象将移入其中。其数据类型不能为sys或information_schema。
--ArchitectureName
--架构名称
--schemaOwner
--架构所有者
--rolename_username
--用户或角色
--extendedAttributeName
--要删除的扩展属性名称
--extendedAttributeValue
--要删除的扩展属性值
--newExtendedAttributeName
--新添加扩展属性名称
--newExtendedAttributeValue
--新添加的扩展属性值
--transfer { object | type | xml schema collection }
--更改其所有者的实体的类。object是默认值。
--securable_name
--要移入架构中的架构范围内的安全对象的一部分或两部分名称。
示例
--声明数据库引用
use [testss];
go --修改数据库架构
--修改架构所有者
alter authorization on schema::[testarchitecture] to [db_datareader];
go --修改用户或角色权限
--授予插入
grant insert on schema::[testarchitecture] to [guest];
go --授予查看定义
grant view definition on schema::[testarchitecture] to [guest];
go --授予查看更改跟踪
grant view change tracking on schema::[testarchitecture] to [guest];
go --授予创建序列
grant create sequence on schema::[testarchitecture] to [guest];
go --授予更改
grant alter on schema::[testarchitecture] to [guest];
go --授予更新
grant update on schema::[testarchitecture] to [guest];
go --接管所有权
grant take ownership on schema::[testarchitecture] to [guest];
go --授予控制
grant control on schema::[testarchitecture] to [guest];
go --授予删除
grant delete on schema::[testarchitecture] to [guest];
go --授予选择
grant select on schema::[testarchitecture] to [guest];
go --授予引用
grant references on schema::[testarchitecture] to [guest];
go --授予执行
grant execute on schema::[testarchitecture] to [guest];
go ----授予并允许转授插入
--grant insert on schema::[testarchitecture] to [[guest]] with grant option;
--go ----授予并允许转授查看定义
--grant view definition on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授查看更改跟踪
--grant view change tracking on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授创建序列
--grant create sequence on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授更改
--grant alter on schema::[testarchitecture] to [guest] with grant option;
--go -- --授予并允许转授更新
--grant update on schema::[testarchitecture] to [guest] with grant option;
--go ----接管并允许转授所有权
--grant take ownership on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授控制
--grant control on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授删除
--grant delete on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授选择
--grant select on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授引用
--grant references on schema::[testarchitecture] to [guest] with grant option;
--go ----授予并允许转授执行
--grant execute on schema::[testarchitecture] to [guest] with grant option;
--go ----拒绝插入
--deny insert on schema::[testarchitecture] to [guest];
--go ----拒绝查看定义
--deny view definition on schema::[testarchitecture] to [guest];
--go ----拒绝查看更改跟踪
--deny view change tracking on schema::[testarchitecture] to [guest];
--go ----拒绝创建序列
--deny create sequence on schema::[testarchitecture] to [guest];
--go ----拒绝更改
--deny alter on schema::[testarchitecture] to [guest];
--go ----拒绝更新
--deny update on schema::[testarchitecture] to [guest];
--go ----拒绝所有权
--deny take ownership on schema::[testarchitecture] to [guest];
--go ----拒绝控制
--deny control on schema::[testarchitecture] to [guest];
--go ----拒绝删除
--deny delete on schema::[testarchitecture] to [guest];
--go ----拒绝选择
--deny select on schema::[testarchitecture] to [guest];
--go ----拒绝引用
--deny references on schema::[testarchitecture] to [guest];
--go ----拒绝执行
--deny execute on schema::[testarchitecture] to [guest];
--go --删除数据库架构扩展属性
exec sys.sp_dropextendedproperty @name=N'testcrituer' , @level0type=N'schema',@level0name=N'testarchitecture'
go --创建数据库架构扩属性
exec sys.sp_addextendedproperty @name=N'testcrituer', @value=N'测试创建数据库架构' , @level0type=N'schema',@level0name=N'testarchitecture'
go --修改架构下对象所有权,从[testarchitecture]转移到[dbo]
alter schema [dbo] transfer [testarchitecture].[schema_table1];
go
示例结果:执行T-SQL脚本需要刷新表文件夹才能查看执行结果。
SQLServer之修改数据库架构的更多相关文章
- SQL 修改数据库架构名
SQl 修改数据库架构名 declare @name sysname declare csr1 cursor for select TABLE_NAME from INFORMATION_SCHEMA ...
- SQLServer之删除数据库架构
删除数据库架构注意事项 要删除的架构不能包含任何对象. 如果架构包含对象,则 DROP 语句将失败. 可以在 sys.schemas 目录视图中查看有关架构的信息. 要求对架构具有 CONTROL 权 ...
- SQLServer之创建数据库架构
创建数据库架构注意事项 包含 CREATE SCHEMA AUTHORIZATION 但未指定名称的语句仅允许用于向后兼容性. 该语句未引起错误,但未创建一个架构. CREATE SCHEMA 可以在 ...
- SQLserver2012 修改数据库架构
还原数据库以后,发现有一张表的架构不对,执行sql提示:对象名无效.
- sqlserver 批量修改数据库表主键名称为PK_表名
1.我们在创建sqlserver得数据表的主键的时候,有时会出现,后面加一串随机字符串的情况,如图所示: 2.如果你有强迫症的话,可以使用以下sql脚本进行修改,将主键的名称修改为PK_表名. --将 ...
- 【Sqlserver】修改数据库表中的数据:对缺失的数据根据已有的数据进行修补
1 --查询时间范围内的数据 select * from dbo.point where wtime >'2014-05-01 23:59:59' and wtime< '2014-05- ...
- 黄聪:sqlserver 2008修改数据库表的时候错误提示“阻止保存要求重新创建表的更改”
当用户在在SQL Server 2008企业管理器中更改表结构时,必须要先删除原来的表, 然后重新创建新表,才能完成表的更改,如果强行更改会出现以下提示:不允许保存更改 .您所做的更改要求删除并重新创 ...
- sqlserver 2008修改数据库表的时候错误提示“阻止保存要求重新创建表的更改”
当用户在在SQL Server 2008企业管理器中更改表结构时,必须要先删除原来的表,然后重新创建新表,才能完成表的更改,如果强行更改会出现以下提示:不允许保存更改.您所做的更改要求删除并重新创建以 ...
- ABP框架使用Mysql数据库,以及基于SQLServer创建Mysql数据库的架构和数据
ABP默认的数据库是SQLServer,不过ABP框架底层是EF框架,因此也是很容易支持其他类型的数据库的,本篇随笔介绍在ABP框架使用Mysql数据库,以及基于SQLServer创建MySql数据库 ...
随机推荐
- PAT1017:Queueing at Bank
1017. Queueing at Bank (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Supp ...
- hyper-v 安装Centos及网络配置
新安装的Centos系统默认情况下是不能上网的,需要经过相应的配置:选择对应的虚拟机,点击"虚拟交换机管理器": 设置hyper-v上的网络及分配cpu.内存.磁盘等资源. 安装C ...
- mysqldump+系统计划任务定时备份MySql数据
MYSQL 数据库备份有很多种(cp.tar.lvm2.mysqldump.xtarbackup)等等,具体使用哪一个还要看你的数据规模.下面给出一个表 #摘自<学会用各种姿态备份Mysql数据 ...
- Tiny4412之蜂鸣器驱动与led灯驱动
一:LED驱动编写 要编写LED驱动,首先的知道开发板的构造:开发板分为核心板与底板:编写驱动的第一步就是要看开发板,找到LED灯在开发板上的位置及所对应的名字:第一步就要查看核心板电路图,以及底板电 ...
- Spring support optimize
https://github.com/alibaba/fastjson/pull/1337
- 超实用的JavaScript代码段 Item5 --图片滑动效果实现
先上图 鼠标滑过那张图,显示完整的哪张图,移除则复位: 简单的CSS加JS操作DOM实现: <!doctype html> <html> <head> <me ...
- CentOS安装JAVA
http://hermosa-young.iteye.com/blog/1798026 每次都要搜索一下太麻烦了,留个底,方便以后查询 一般情况下,我们都要将linux自带的OPENJDK卸载掉,然后 ...
- switch case 支持的 6 种数据类型!
有粉丝建议可以偶尔推送一些 Java 方面的基础知识,一方面可以帮助一初学者,也可以兼顾中高级的开发者. 那么今天就讲一下 Java 中的 switch case 语句吧,有忘记的同学正好可以温习一下 ...
- Redis分布式锁的try-with-resources实现
Redis分布式锁的try-with-resources实现 一.简介 在当今这个时代,单体应用(standalone)已经很少了,java提供的synchronized已经不能满足需求,大家自然 而 ...
- BZOJ_1455_罗马游戏_可并堆
BZOJ_1455_罗马游戏_可并堆 Description 罗马皇帝很喜欢玩杀人游戏. 他的军队里面有n个人,每个人都是一个独立的团.最近举行了一次平面几何测试,每个人都得到了一个分数. 皇帝很喜欢 ...