SQL Server 資料庫安全

來源:互聯網
上載者:User
--建立登陸使用者
--create login login_name from windows with default_database = database | default_language = language;
create login [localhost\hoojo-pc] from windows with default_database = testHome;
--建立登陸使用者
--create login login_name with password = 'pwd' [hashed] [must_change] [check_expiration] [check_policy]
create login admin with password = '123456', default_database = testHome;

--查看登陸使用者
select * from sys.sql_logins;

--修改使用者
alter login admin with name = jackson;
alter login jackson with password = 'abcd';

--禁用、啟用使用者
alter login jackson disable; --禁用
alter login jackson enable; --啟用

--刪除使用者
drop login jackson;

--修改映射憑據(將登入名稱MacraeS 映射到憑據Custodian04)
alter login jackson with credential = Custodian04;

-------資料庫使用者
--建立資料庫使用者
create user jack from login admin;
create user jason for login jackson;

create user jack from login admin with default_schema = temp_schema;

--啟動guest使用者(不推薦使用)
--特殊使用者dbo、guest;sa對應的dbo使用者,其他沒有映射的使用者就是guest使用者
grant connect to guest;

--修改使用者
alter user jack with name = jason;
alter user jason with default_schema = jason_schema;

--刪除使用者
drop user jason;

--------資料庫角色
--給jack使用者授權buyers角色
create role buyers authorIzation jack;

--修改角色
alter role buyers with name = new_buyers;

--刪除角色
drop role new_buyers;

--------架構管理
--建立
create schema temp_schema;

--指定使用者
create schema jason_scheam authorization jason;

--授權查詢
grant select to jason;

--刪除
drop schema jason_scheam;

--------許可權
--授權建立table
grant create table to jason;
--授權jason查詢student表
grant select on student to jason;

--收回許可權
revoke create table to jason;
revoke select on student to jason;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.