1) Ability to filter objects (SPROC/functions/tables) with a LIKE (not a contains) and have multiple filters on at the same time
LIKE 'usp_hv%'
OR 'xsp_hv%'
OR '%maint'
2) Ability to search within CODE using SQL without opening a separate tool
SELECT type, name, line, text
FROM user_source
WHERE UPPER(text) LIKE UPPER('%Text to search for%');
No comments:
Post a Comment