I'm fairly certain there is a very quick and simple solution to the following issue that I'm having...
USE Northwind
DECLARE @COLUMN_NAME VARCHAR(50)
SELECT @COLUMN_NAME='LastName'
--Following result = 8 (Represents the actual length of string 'LastName'
SELECT MAX(LEN(@COLUMN_NAME)) FROM...
Hello,
Just wondering if there was a cleaner way to perform a pattern analysis then using the following code:
USE Northwind
SELECT CustomerID,PostalCode,Replace(Replace(Replace(Replace(Replace(Replace(Replace
(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace...
A huge frustration of mine is copying data from the GridView in SQL Server 2000 Query Analyzer to MS Excel and the fact that the column headers do not seem to come across.
I heard a while back that this issue had been resolved in SQL 2005. I just checked this out and much to my dismay, this...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.