sqlserver 新增使用者並只能操作指定資料庫

2022-08-25 22:27:31 字數 540 閱讀 2959

use

master

create login test --

要建立的使用者名稱

with password =

'123456

', --

密碼 default_database

= dbtest, --

指定資料庫

check_expiration

=off

, check_policy

=off

gorevoke

view

anydatabaseto[

public

]use dbtest --

資料庫go

exec dbo.sp_changedbowner n'

test'--

直接刪除這個賬號會提示 "當前賬號已登入" 的錯誤資訊,需要執行以下函式:

--查出使用者程序的spid

--1.首先執行:exec sp_who

--2.然後執行:kill spid

Sqlserver建立使用者並授權

前提,存在乙個資料庫 jiaoguan 教務管理系統 其中有乙個表 student 接下來,我們所有的操作都是針對這個表進行試驗 第一步,使用sa賬戶登入sqlserver,並建立登入賬戶 test create login test with password test default datab...

mysql新增使用者並授權

新增使用者並授權 1 新增任何機器都能登入的使用者 grant all privileges on dbname.to test identified by 1111 2 新增172.16.184.233機器登入的使用者 grant all on dbname.to test 172.16.184....

mysql新增使用者並授權

新增使用者並授權 1 新增任何機器都能登入的使用者 grant all privileges on dbname.to test identified by 1111 2 新增172.16.184.233機器登入的使用者 grant all on dbname.to test 172.16.184....