SV-271290r1109112_rule
V-271290
SRG-APP-000141-DB-000090
SQLI-22-006900
CAT II
10
Remove all demonstration or sample databases from production instances.
Review vendor documentation and vendor websites to identify vendor-provided demonstration or sample databases, database applications, objects, and files. Review the SQL Server to determine if any of the demonstration and sample databases, database applications, or files are installed in the database or included with the SQL Server Instance.
Run the following query to check for names matching known sample databases. Sample databases may have been renamed, so this is not an exhaustive list.
SELECT name
FROM sys.databases
WHERE name LIKE '%pubs%'
OR name LIKE '%northwind%'
OR name LIKE '%adventureworks%'
OR name LIKE '%wideworldimporters%'
OR name LIKE '%contoso%'
If any sample databases are found, this is a finding.
V-271290
False
SQLI-22-006900
Review vendor documentation and vendor websites to identify vendor-provided demonstration or sample databases, database applications, objects, and files. Review the SQL Server to determine if any of the demonstration and sample databases, database applications, or files are installed in the database or included with the SQL Server Instance.
Run the following query to check for names matching known sample databases. Sample databases may have been renamed, so this is not an exhaustive list.
SELECT name
FROM sys.databases
WHERE name LIKE '%pubs%'
OR name LIKE '%northwind%'
OR name LIKE '%adventureworks%'
OR name LIKE '%wideworldimporters%'
OR name LIKE '%contoso%'
If any sample databases are found, this is a finding.
M
5677