Hello Group,
I have a table where HoleID and Name - primary key
and values Type_* and Intensity_* in Name field are related (Type_4 -
Intensity_4)
HoleID Name Level
AA_01 Type_4 ABC
AA_01 Type_7 BCD
AA_01 Type_10 CDE
AA_01 Intensity_4 2
AA_0...
more >>
I have a table with 1 field with 40 millian records in it. What is the best
way to dedupe a list?
a) create a table with aunique constraint on it and insert into that table?
b) create a table with out a unique constraint on it and do a "insert into
table1 select DISTINCT field from table2...
more >>
I heard a good lecture on test driven development the other day. I've
always been a big fan of Nunit too and so wanted to try do some of
this within my current company. In additon, I'd like to start
building some Nunit Unit tests for existing functionality
However, there is a substantial amo...
more >>
These two queries should return the same value, but for some reason
DATALENGTH returns the result of the two columns doubled.
SELECT DATALENGTH(LastName + FirstName)
FROM dbo.Employees
--RETURNS THE VALUE OF THE LAST NAME AND FIRST NAME COLUMN DOUBLED (X2)
SELECT LEN(LastName + FirstName)
...
more >>