I want to use TextData Like filter in the SQL Server profiler with multiple conditions to filter queries that contains any of the words. I have used OR conditions but it's not working. How can I use it?
Example - %Column1% OR %Column2%
So you have not used OR, but you put "OR" in a literal string. What you need is WHERE [SOMETHING] LIKE '%somevalue%' or [SOMETHING] LIKE '%someOtherValue%'
ORor)OR, but you put "OR" in a literal string. What you need isWHERE [SOMETHING] LIKE '%somevalue%' or [SOMETHING] LIKE '%someOtherValue%'