Replace [TextField] with your text/varchar column/variable
REPLACE(REPLACE(REPLACE([TextField], CHAR(9), ''), CHAR(10), ''), CHAR(13), '')
Useful when you want to compare strings and want to diregard tabs and new lines.
sawmeonline, 2011-04-28 (first published: 2011-04-21)
Replace [TextField] with your text/varchar column/variable
REPLACE(REPLACE(REPLACE([TextField], CHAR(9), ''), CHAR(10), ''), CHAR(13), '')
Useful when you want to compare strings and want to diregard tabs and new lines.
REPLACE(REPLACE(REPLACE([TextField], CHAR(9), ''), CHAR(10), ''), CHAR(13), '')
For most DBAs, normalization is an understood concept, a bread and butter bit of knowledge. However, it is not at all unusual to review a database design by a development group for an OLTP (OnLine Transaction Processing) environment and find that the schema chosen is anything but properly normalized. This article by Brian Kelley will give you the core knowledge to data model.
2003-01-13
18,601 reads
What's this error:Arithmetic overflow error converting IDENTITY to data type int? It was a new one to me, but read on to find out what it means.
2002-10-14
6,970 reads
This article shows you how to design the storage for email addresses, how to validate email addresses, how to retrieve demographic information from email addresses efficiently, using computed columns and indexes. It also covers the security aspect of dealing with email addresses.
Binary data can be stored as integers in a table. This article explains how to query an integer field to return the bits represented by the integer.
2002-06-28
4,636 reads
This article demonstrates how to store checkbox results as integers in a database...perfect for surveys!
2002-06-27
4,570 reads