Always remain updated about current software development trends

Articles having tag: STOREDPROCEDURES

LTRIM RTRIM doesn’t always work

LTRIM and RTRIM don't always remove all the whitespace characters in a field such as carriage return or linefeed

LTRIM RTRIM doesn’t always work

In SQL Server 2008, I do that with a CLR User Defined Function:namespace PIEBALD.Lib{ public static partial class LibSql { public static string Trim ( string Victim ) { return ( Victim.Trim() ) ; } }}Needs to be built into a...

  • Page 1 of 1
  •