SQLServer之修改資料庫架構

来源:https://www.cnblogs.com/vuenote/archive/2019/01/25/10307204.html
-Advertisement-
Play Games

修改資料庫架構註意事項 用戶與架構完全分離。 ALTER SCHEMA 僅可用於在同一資料庫中的架構之間移動安全對象。 若要更改或刪除架構中的安全對象,請使用特定於該安全對象的 ALTER 或 DROP 語句。 如果對 securable_name 使用了由一部分組成的名稱,則將使用當前生效的名稱解 ...


修改資料庫架構註意事項

用戶與架構完全分離。

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腳本需要刷新表文件夾才能查看執行結果。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.修改grub文件 查找 修改為 2.重新生成grub引導配置文件 重啟後獲取不到ip地址,ifconfig -a發現網卡地址已經改成eth0,但是無法連網,還需進行以下步驟 3.修改網路配置ens32為eth0 4.最後重啟即可修改網卡為eth0 ...
  • 適用環境要求:Linux系統及伺服器、有管理員許可權、存在多餘空間的磁碟例如下圖中"/home"在磁碟sda5中與"/"不屬於同一塊磁碟; 1.首先轉移正在使用的將要滿的磁碟中文件夾,我們環境中的是"/home/aaa",移動到"/"根目錄中(先確保根目錄中不存在這個文件夾); 命令:"mv /hom ...
  • 本文收錄在容器技術學習系列文章總目錄 1、Pod控制器 1.1 介紹 Pod控制器是用於實現管理pod的中間層,確保pod資源符合預期的狀態,pod的資源出現故障時,會嘗試 進行重啟,當根據重啟策略無效,則會重新新建pod的資源。 1.2 pod控制器有多種類型 ReplicationControl ...
  • 1.cat 命令:將文件內容連接後傳送到標準輸出或重定向到文件。 1)命令語法格式:cat [OPTION] [FILE]... 2)命令選項參數說明如下所示。 -n(number):從第一行開始對文件輸出的所有行繼續編號; -b:忽略對空白行的編號; -s(--squeeze-blank):將連續 ...
  • (1) Mac添加命令別名 切換到用戶主目錄 (2). 編輯或新建.bash_profile文件 (3). 添加別名 alias ll='ls -Alh' (4). 重載該配置文件 source .bash_profile 5. 查看當前所有別名設置 alias ...
  • 很多同學因為對MongoDB不熟悉,加之應用的不是很多,有時候會認為MongoDB資料庫對一些功能不支持,或者認為支持不好。今天我們 演示一下 MongoDB對“加減乘除”的使用。 在MongoDB資料庫中“加減乘除”運算,又稱為 數學表達式(mathematical expression;或算術表 ...
  • 一、安裝 下載完之後,直接解壓出來就能用,看一下解壓之後的目錄: 雙擊打開下麵這個文件(可以把它添加一個桌面快捷方式,或者添加到任務欄): 然後會提示你輸入註冊碼: 回到navicat的解壓出來的文件夾裡面,有個叫做key.txt的文件,打開,裡面有註冊碼 將這個註冊碼copy到輸入註冊碼的地方: ...
  • 一. 庫的操作 1.創建資料庫 創建資料庫: create database 庫名 charset utf8; charset uft8 可選項 1.2 資料庫命名規範: 可以由字母、數字、下劃線、@、#、$ 區分大小寫 唯一性 不能使用關鍵字如 create select 不能單獨使用數字 最長1 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...