systemadministrator服务器角色 是最高角色拥有它就和sa一样。不同的系统角色对应的作用不同。一般定义用户我们使用如:--Create a login account for the 'test' user
execute sp_addlogin 'test','1234','Northwind',null
go
--Create a group
execute sp_addgroup 'testgroup'
go
--Add the test user to Database
execute sp_adduser 'test','test','testgroup'
go
grant update,insert
on customers    -- YOU CAN DEFINED WHICH TABLE YOU WANT GRANT TO TEST USER
to testgroup