guys!
I don't know how to select objects that do not contain suffixes. I declare input table of suffixes
@suffixes dbo.tvp_stringArray READONLY
And then I'm selecting my objects
SELECT [Object]
FROM [myUsers]
WHERE [Object] IS NOT LIKE (SELECT suffix FROM suffixes)
How to add '%' to the selected suffix?