Comments
Sort by recent activity
All I need to know is the filter expression that I should use in order to ignore all objects for a particular object type. I tried \!. but does not seem to work use this: \!.* The documentation wasn't / still isn't well QA'd. C'mon RedGate! It's been a year and it's not like it's freeware. I ran into the same problem, then formed the expression like this: \!.* and it worked to negate everything as expected. The wildcard dot (.) only matches one character- adding an asterisk (*) matches zero or more occurrences of the preceding element (match everything). I hope this helps someone. Kind Regards, Jon / comments
All I need to know is the filter expression that I should use in order to ignore all objects for a particular object type. I tried \!. but does not seem to workuse this: \!.*The documentation...