Activity overview
Latest activity by astebler
I assume you are looking for instances of "Select *"
One possible way is locate "*" is to search for "/*" or "\*" (without the quotes) - this will produce results many of which are relevant. I believe this works because of regex, which I think is how the search is being conducted.
Alternatively you could search for "Select *" (again no qoutes) and check the 'Exact Match' option. This will miss things like 'table1.*'. / comments
I assume you are looking for instances of "Select *"
One possible way is locate "*" is to search for "/*" or "\*" (without the quotes) - this will produce results many of which are relevant. I be...