Viewing 7 posts - 1 through 7 (of 7 total)
ChrisM@Work (9/29/2015)
Wayne West (9/29/2015)
ChrisM@Work (9/24/2015)
Why are you using NVARCHAR for an email address?
We now have Unicode URLs, so why not Unicode characters for email addresses. You can Google Unicode...
September 30, 2015 at 4:15 am
Re the 10 Mill addresses and the stats.
To be blunt I generated random character strings for the addresses (there as an @ in the middle), so they hardly represent a...
September 29, 2015 at 9:03 am
Well partly because the OP was doing so, and partly I assume that it is possible that some languages might need it.
September 24, 2015 at 10:36 am
Interesting - I have tried a little - rough - test.
CREATE TABLE [dbo].[TestEmail](
[Id] [int] IDENTITY(1,1) NOT NULL,
[nvarchar](200) NOT NULL,
[chk] [int] NOT NULL,
CONSTRAINT [PK_TestEmail] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH...
September 24, 2015 at 10:15 am
There appears to be quite a misunderstanding of how an index seek works - on character data. Characters are compared position by position, as soon as one differs, then the...
September 24, 2015 at 8:01 am
Wouldn't an inner join work just as well, and inner joins are a bit more efficent than outers.
LOL perhaps forget that proposal.
August 10, 2009 at 10:37 am
10. WHERE clauses - In a WHERE clause, the various operators used directly affect how fast a query can run. Here are the conditional operators used in the WHERE clause,...
August 10, 2009 at 8:07 am
Viewing 7 posts - 1 through 7 (of 7 total)