数据库用户名操作
时间:2010-08-25 来源:Kee Wang
创建用户名:EXEC sp_addlogin 用户名,'密码,'master'
判断用户名是否存在:
if not exists(select name from syslogins where name='登陆名')
begin
sp_addlogin '登陆名','密码','数据库名'
end
相关阅读 更多 +
时间:2010-08-25 来源:Kee Wang
创建用户名:EXEC sp_addlogin 用户名,'密码,'master'
判断用户名是否存在:
if not exists(select name from syslogins where name='登陆名')
begin
sp_addlogin '登陆名','密码','数据库名'
end