YellowGumBlogs
Notes to myself
Monday, August 29, 2011
Saving an image in a SQL Server DB
Useful link: this link proved really useful
http://www.dotnet-guide.com/save-image-in-sql.html
Sunday, August 28, 2011
remove carriage return, line feed, and tab from a field in SQL
-- remove carriage return, line feed, and tab from a field in tsql
REPLACE(REPLACE(REPLACE(FieldName, CHAR(10), ''), CHAR(13), ''), CHAR(9), '')
Newer Posts
Home
Subscribe to:
Posts (Atom)