Activity overview
Latest activity by zainbhoohn078
his looks like a known issue where the /include flag in SQL Code Guard doesn’t override the default rule set properly. Even though the log confirms ME003 is selected, it still runs the full set. ✅ Workaround that usually works: Use both /include:ME003 and /exclude:ALL , like this: bash CopyEdit SqlCodeGuard30.Cmd.exe ... /exclude:ALL /include:ME003 ...
This forces the tool to wipe out the default rules first, then re-apply only ME003. Alternatively, define a custom ruleset XML with only ME003 enabled, and point to it with: bash CopyEdit /ruleset:custom_rules.xml
Also, double-check that you're using the latest version of the tool—older builds have bugs with filter logic that were fixed later on. / comments
his looks like a known issue where the /include flag in SQL Code Guard doesn’t override the default rule set properly. Even though the log confirms ME003 is selected, it still runs the full set.✅ W...