Viewing 15 posts - 1 through 15 (of 19 total)
Tom.Thomson (11/3/2009)
November 3, 2009 at 9:22 am
Tom.Thomson (10/31/2009)
October 31, 2009 at 11:22 pm
Tom.Thomson (10/29/2009)
October 29, 2009 at 8:01 pm
My intention was not to mislead or misinform, however do keep in mind that the article was dedicated to SQL Server efficiency. I am fully versed in how 32-bit network...
October 29, 2009 at 7:23 am
Also, the choice between varbinary(4) (which should really be binary(4)) and int comes down to deciding between being able to natively bitmask IPs with subnet from within SQL Server or...
October 28, 2009 at 12:31 pm
Dynamically computed : (100000 row(s) affected)
SQL Server Execution Times:
CPU time = 204 ms, elapsed time = 4500 ms.
Persisted : (100000 row(s) affected)
SQL Server Execution Times:
...
August 31, 2009 at 8:07 pm
Elliott W (8/31/2009)
August 31, 2009 at 7:48 pm
I respectfully disagree. As has already been discussed, the performance hit is due to the use of UDFs. Creating a computed column on the parsename method demonstrates how fast parsename...
August 25, 2009 at 9:48 pm
I have no problem releasing this code under the LGPL. I'll make a mention as such when I made my addendum.
August 23, 2009 at 5:43 pm
I'll post an addendum to the article soon discussing the combination of an integer column with a computed human readable column. In the meantime, I retested the four different methods...
August 20, 2009 at 11:23 am
When selecting data, I believe that combining my approach with Jeff's suggestions results in excellent performance. If the primary stored field for the IP address is still an int, we...
August 20, 2009 at 10:17 am
I must appologize Jeff, in my haste I misread part of your code. It is indeed an interesting approach that I will explore further.
August 20, 2009 at 9:47 am
I've seen a lot of posts regarding the poor performance of UDFs. I believe that's missing the point. Generally speaking, there is no need for displaying 10,000 IPv4 addresses in...
August 20, 2009 at 8:05 am
I believe that another distinction that must be taken into account is the difference between working with individual IP addresses and IP networks. Design considerations are vastly different for each...
August 19, 2009 at 12:47 pm
Viewing 15 posts - 1 through 15 (of 19 total)