Is the boolean search capability not implemented?
paumonok
Posts: 2 New member
in SQL Search
A post in the Redgate suggestion list indicated it was implemented/deployed in V2 of SQ Search. I am using 3.5 and this feature does not appear to be implemented. There is no reference to it in the help documentation.
Tagged:
Answers
Hi @paumonok
Thank you for reaching out on the Redgate forums regarding the SQL Search question.
I can see that the Boolean search capabilities were added back in version 2 of the program.
Then in version 3.1 the functionality was removed/modified to use UNIX-style wildcards instead.
I've located the following notes on the usage of these wildcards which may be of use for you.
SQL Search is compatible with UNIX style wildcards. You can use the following wildcards in a search:
Asterisk (*) wildcard
You can use * as a wildcard to match 0 or more characters, similar to a SQL LIKE clause.
For example, search for 'b*' to find all objects containing words beginning with b.
Question mark (?) wildcard
The ? wildcard to matches exactly one character.
For example, search for 'b?' to find all objects containing words of two characters beginning with b.
List ([]) wildcard
This [] wildcard matches one character from a list of characters.
For example, search for '[xyz] ' to find all objects containing any single x, y, or z character.
This wildcard also allows a range of characters. For example, search for '[a-z]' to match any single character from a to z.
Caret (^) wildcard
You can use ^ as a wildcard at the beginning of a list to match any character except any character in the list.
For example, search for '[^0-9]' to match any single character except a numeric character.
Escaping wildcards"
If you want to search for a wildcard as a literal character, you can escape the wildcard character by wrapping it in square brackets.
For example, searching for '[*]' will search for anything containing an asterisk
Apologies that the Boolean operations are not there, but hopefully you are able to find value in these wildcards instead.
Whilst there is no current roadmap to change the searching parameters
I would recommend adding any feature requests to our UserVoice site for more visibility with our developers:
https://redgate.uservoice.com/forums/101149-sql-search
PLEASE, give us back Boolean searches.