SV-214030r617437_rule
V-214030
SRG-APP-000342-DB-000302
SQL6-D0-016400
CAT II
10
To disable start up 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 start up. 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-214030
False
SQL6-D0-016400
Review the system documentation to obtain a listing of documented stored procedures used by SQL Server during start up. 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
3993