Hi @Tom van Stiphout
If you just want to find table names that don't include [dbo].[tblHolidays], you don't need to split into two parameters.
EXEC sp_MSforeachtable @command1='SELECT ''?'' TableName where ''?'' not in (''[dbo].[tblHolidays]'')'
I tried to use one parameter to achieve the desired effect and it seemed to be successful.
Best regards,
Percy Tang
If the answer is the right solution, please click "Accept Answer". If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our Documentation to enable e-mail notifications if you want to receive the related email notification for this thread.