meine Sys/Db admin & Developper Notitzen - wer Rechtschreibfehler findet darf sie behalten ...
my Sys/Db Admin and developper notes - I don't care about typos
Thursday, March 13, 2014
create sql server login when not exists
if (SELECT SUSER_ID('test')) is null
begin
create login test with password='pwd'
end
No comments:
Post a Comment