Skip to content
  • There are no suggestions because the search field is empty.

T-SQL Script: Find rows with non‑printable characters

T-SQL Script: Find rows with non‑printable characters

select * from tblAuditTrail
WHERE FieldChanges LIKE '%[^ -~]%' ESCAPE '\';