Viewing 4 posts - 1 through 4 (of 4 total)
I used to to for a automotive engine and transmission re-manufacturing company. THey rebuilt transmissions (around 800 per week) for Chrysler and rebuilt engines for sale to the public....
March 18, 2015 at 6:48 am
We replace the characters with a blank or space depending on what they are. We remove them because they cause issues when exporting to Excel from reporting services.
September 4, 2014 at 6:18 am
Try this for the Tab and pipe
Select * from myTable where MyField Like '%' + char(9) + '%' or MyField Like '%' + char(124) + '%'
The Number is the...
August 29, 2014 at 7:32 am
When looking for a range, is this according to the ascii table? For example:
where FixSubject like '%[' + Char(1) + '-' + Char(11) + ']%'
Does this find everything...
August 25, 2014 at 1:27 pm
Viewing 4 posts - 1 through 4 (of 4 total)