What should be the most recommended datatype for storing an IPv4 address in SQL server?
Or maybe someone has already created a user SQL data-type (.Net assembly) for it?
I don't need sorting.
|
What should be the most recommended datatype for storing an IPv4 address in SQL server? Or maybe someone has already created a user SQL data-type (.Net assembly) for it? I don't need sorting. |
|||||
|
|
Storing an IPv4 address as a A little-used SQL Server function that might help if you are storing as a string is
(numbering is right to left). |
|||||||||||||||||
|
|
I normally just use varchar(15) for IPv4 addresses - but sorting them is a pain unless you pad zeros. I've also stored them as an INT in the past. System.Net.IPAddress has a GetAddressBytes method that will return the IP address as an array of the 4 bytes that represent the IP address. You can use the following C# code to convert an IPAddress to an int...
I had used that because I had to do a lot of searching for dupe addresses, and wanted the indexes to be as small & quick as possible. Then to pull the address back out of the int and into an IPAddress object in .net, use the GetBytes method on BitConverter to get the int as a byte array. Pass that byte array to the constructor for IPAddress that takes a byte array, and you end back up with the IPAddress that you started with.
|
|||||||||||||||||
|
|
Regarding this comment in the accepted answer
Here's a trick for SQL Server 2008 (From Itzik Ben-Gan in this book)
Returns
|
|||||
|
|
One of my favorite articles talks about why you shouldn't use regular expressions to parse IP addresses. Most of what they're talking about is really explaining why you should be very careful with textual representations of IP addresses. I suggest you read it before deciding what datatype to use in your database, and probably also for whatever handling your app will be doing (even though the article is written about Perl, it's useful for any language). I think in the end a 32 bit datatype (or four 8-bit datatypes) would be the best choice. |
|||||
|
|
I'm reading a lot of similar questions on here, and none of the replies in this one mention the number one answer in others: "For IPv4 addresses, you may want to store them as an int unsigned and use the INET_ATON() and INET_NTOA() functions to return the IP address from its numeric value, and vice versa." I think this is what I'm going to go with in my db, unless I decide to use the php functions mentioned above. |
|||||
|
|
Best way (when no need sorting and other control on the IPs) is store it as int, storing it as varchar etc. would cost way more performance than just a simple innocent int. There is a property Also the IPAddress class has a constructor that accepts a long argument. And according to VS debugger visualizer, that IPAddress class itself stores its internal variable as one number (not byte array). Read more on workarounds storing a unit in MS SQL Server: |
|||||||
|
|
IPV4? int? or tinyint x 4? It really depends on whether it's just storage and retrieval or if it's going to be a ranged search criteria. |
|||
|
|
|
Don't forget about IPv6 - you need a lot more room if you need to store them - 128bits compares to IPv4's 32. I'd go for bigint, though you will need some helper code to translate to human friendly versions. |
|||
|
|
|
For space efficient storage and when the values are to be processed (matched or compared to a range), I use an For a simple solution where you just want to store the value to view it, I use a |
|||
|
|
|
I'd probably go with a And set the size to 15. |
|||||
|
|
If using PHP, then PHP5 has 2 built-in functions for conversion: ip2long and long2ip (http://uk.php.net/manual/en/function.ip2long.php or .long2ip.php) which returns/converts a signed integer |
|||
|
|
|
I've had some success with making four smallint (or whatever smallish integer datatype you prefer) columns -- one for each octet. Then, you can make a view which smashes them together as a char string (for display) or then you can write simple operators to determine who all is in what subnet etc. It is quite fast (provided you do proper indexing) and also allows for really easy querying (no string manipulation!). |
|||
|
|
|
Since an IP address has 32 bits in it, can you just use a LONG to store the numerical value? |
||||
|
|
|
Quoting this:
|
|||||||||||||||||||||
|