13 lines
301 B
Transact-SQL
13 lines
301 B
Transact-SQL
/*
|
|
TSC 27.12.2023 Removed managmenent of login centralinfra\L-CP-GL-AP-ATLAS-SQL-WSVC1 (related to centralPharma domain, which doesn't exists anymore)
|
|
*/
|
|
|
|
USE [master]
|
|
GO
|
|
|
|
IF EXISTS(SELECT 1 FROM SYS.syslogins WHERE name = 'BUILTIN\Administrators')
|
|
BEGIN
|
|
DROP LOGIN [BUILTIN\Administrators]
|
|
END
|
|
GO
|