SV-274446r1111106_rule
V-274446
SRG-APP-000342-DB-000302
SQLI-22-016400
CAT II
10
To disable startup stored procedure(s), run the following in Master for each undocumented procedure:
sp_procoption @procname = '<procedure name>', @OptionName = 'Startup', @optionValue = 'Off'
Review the system documentation to obtain a listing of documented stored procedures used by SQL Server during startup. Execute the following query:
Select [name] as StoredProc
From sys.procedures
Where OBJECTPROPERTY(OBJECT_ID, 'ExecIsStartup') = 1
If any stored procedures are returned that are not documented, this is a finding.
V-274446
False
SQLI-22-016400
Review the system documentation to obtain a listing of documented stored procedures used by SQL Server during startup. Execute the following query:
Select [name] as StoredProc
From sys.procedures
Where OBJECTPROPERTY(OBJECT_ID, 'ExecIsStartup') = 1
If any stored procedures are returned that are not documented, this is a finding.
M
5677