You'll need to run this SQL in the SQL command: (will return a list of every registration instance that asks a question that includes 'childcare').
SELECT rt.Id as RegistrationTemplateId
,'Registration Template' as [Resource]
,rt.[Name] as [Name]
,'/page/403?RegistrationTemplateId=' + cast(rt.Id as varchar(10)) as Link
, a.Id as AttributeId, a.Name as Attribute, a.[Key] as AttributeKey
FROM RegistrationTemplate rt
left join Attribute a on rt.Id = a.EntitytypeQualifierValue and a.EntityTypeQualifierColumn = 'RegistrationTemplateId'
left join attributevalue av on a.id = av.attributeid and av.entityid = rt.id
WHERE a.[Name] like '%childcare%'
order by rt.Id
SQL contributed by Marissa Eubanks the great.