Viewing 8 posts - 1 through 9 (of 9 total)
HowardW (5/15/2014)
bas_vdl (5/15/2014)
HowardW (5/15/2014)
bas_vdl (5/15/2014)
Thanks for your input. You're right about the fact that the ip ranges are not overlapping. The query you suggest is very slow. In my...
May 15, 2014 at 7:49 am
HowardW (5/15/2014)
bas_vdl (5/15/2014)
Thanks for your input. You're right about the fact that the ip ranges are not overlapping. The query you suggest is very slow. In my first post...
May 15, 2014 at 7:03 am
HowardW (5/15/2014)
1) IP...
May 15, 2014 at 5:57 am
Btw, the time indications I refered to is the time MS SQL Management Studio shows me (bottom right). I'm aware of the fact that displaying all those results in the...
May 15, 2014 at 5:40 am
ChrisM@Work (5/15/2014)
bas_vdl (5/15/2014)
Are there any other query construction to lookup the...
May 15, 2014 at 5:37 am
spaghettidba (5/15/2014)
As far as the index spool is concerned, I have no idea what it's trying...
May 15, 2014 at 5:13 am
Thanks for the quick reply. Your query is slightly quicker, it takes between 15 and 20 seconds on my dataset...
Are there any other query construction to lookup the country for...
May 15, 2014 at 4:15 am
CREATE TABLE [dbo].[IP2COUNTRY_LOOKUP](
[START] [bigint] NOT NULL,
[END] [bigint] NOT NULL,
[COUNTRY_CODE_ALPHA2] [varchar](2) NULL,
CONSTRAINT [PK_IP2COUNTRY_LOOKUP] PRIMARY KEY NONCLUSTERED
(
[START] ASC,
[END] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS =...
May 15, 2014 at 2:57 am
Viewing 8 posts - 1 through 9 (of 9 total)