Extract text in string from column - sql-server

How can I return column pathToFolder but only containing the letters hello3\heeello4?
create table #testing(pathToFolder varchar(200) )
insert into #testing values
('c:\hello\hello2\hello3\heeello4\hello5'),
('c:\hi\hi2\hi3\hiii4\hi5')
select pathToFolder from #testing;
I need to return hello3\heeello4 and hi3\hiii4 in the select statement.

Try this:
declare #count int = 0,
#position1 int = 0,
#position2 int = 0,
#string1 varchar(50) = 'c:\hello\hello2\hello3\heeello4\hello5',
#string2 varchar(50) = 'c:\hi\hi2\hi3\hiii4\hi5'
while (#count < 4)
begin
set #position1 = cast( CHARINDEX('\', #string1, #position1) as int) + 1
set #position2 = cast( CHARINDEX('\', #string2, #position2) as int) + 1
set #count = #count + 1
end
set #string1 = (select right(#string1, #position1 -2))
set #string2 = (select right(#string2, #position2 -2))
while (#count < 7)
begin
set #position1 = cast( CHARINDEX('\', #string1, #position1) as int) + 1
set #position2 = cast( CHARINDEX('\', #string2, #position2) as int) + 1
set #count = #count + 1
end
set #string1 = (select left(#string1, #position1 -2))
set #string2 = (select left(#string2, #position2 -2))
select #string1, #string2

The question has finally been edited down to a classic "I have"/"I need" with no indication of how the minimal sample data relates to the desired result. What it does offer is, at best, misleading: "but only containing the letters hello3\heeello4".
So it goes. The following code does stuff that might be the stuff that is wanted. It also meets the reclusive "i need to use it on a column in a select statement" requirement. There is, as of this time, no requirement that it not burst into flames if the path doesn't contain enough directories.
with HelpVampire as (
select Path,
CharIndex( '\', Path ) as ReverseSolidus1Position,
CharIndex( '\', Path, CharIndex( '\', Path ) + 1 ) as ReverseSolidus2Position,
CharIndex( '\', Path, CharIndex( '\', Path, CharIndex( '\', Path ) + 1 ) + 1 ) as ReverseSolidus3Position,
Substring( Path, CharIndex( '\', Path, CharIndex( '\', Path, CharIndex( '\', Path ) + 1 ) + 1 ) + 1, 255 ) as Remainder
from ( values
( 'c:\hello\hello2\hello3\heeello4\hello5' ), ( 'c:\hi\hi2\hi3\hiii4\hi5' )
) as Samples ( Path ) )
select *,
CharIndex( '\', Remainder ) as PerverseSolidus1Position,
Substring( Remainder, CharIndex( '\', Remainder ) + 1, 255 ) as ASubstringFromThePath
from HelpVampire;

Related

Debugging rtf to text function

I have a function we use to convert RTF formatted text to plain text. It has worked pretty well in the past, and seems to work pretty well so far on the text in question.
However, somewhere in my dataset of 230,000 records, it makes a bad SUBSTRING call and aborts the entire thing (without telling me the offending record).
Is there any way I can get some feedback into what is going on?
I know that SQLServer functions do not allow PRINT statements, or INSERT statements.
And the dataset of 230,000 records is not mine, but a clients. I really don't want to have to try to go record by record and see which one is causing the error.
SQL Function below:
CREATE FUNCTION [dbo].[RTF2Text]
(
#rtf nvarchar(max)
)
RETURNS nvarchar(max)
AS
BEGIN
DECLARE #Pos1 int;
DECLARE #Pos2 int;
DECLARE #hex varchar(316);
DECLARE #Stage table
(
[Char] char(1),
[Pos] int
);
INSERT #Stage
(
[Char]
, [Pos]
)
SELECT SUBSTRING(#rtf, [Number], 1)
, [Number]
FROM [master]..[spt_values]
WHERE ([Type] = 'p')
AND (SUBSTRING(#rtf, Number, 1) IN ('{', '}'));
SELECT #Pos1 = MIN([Pos])
, #Pos2 = MAX([Pos])
FROM #Stage;
DELETE
FROM #Stage
WHERE ([Pos] IN (#Pos1, #Pos2));
WHILE (1 = 1)
BEGIN
SELECT TOP 1 #Pos1 = s1.[Pos]
, #Pos2 = s2.[Pos]
FROM #Stage s1
INNER JOIN #Stage s2 ON s2.[Pos] > s1.[Pos]
WHERE (s1.[Char] = '{')
AND (s2.[Char] = '}')
ORDER BY s2.[Pos] - s1.[Pos];
IF ##ROWCOUNT = 0
BREAK
DELETE
FROM #Stage
WHERE ([Pos] IN (#Pos1, #Pos2));
UPDATE #Stage
SET [Pos] = [Pos] - #Pos2 + #Pos1 - 1
WHERE ([Pos] > #Pos2);
SET #rtf = STUFF(#rtf, #Pos1, #Pos2 - #Pos1 + 1, '');
END
SET #rtf = REPLACE(#rtf, '\pard', '^*^');
SET #rtf = REPLACE(#rtf, '\par', '^*^');
SET #rtf = REPLACE(#rtf, '\t', '^~^');
SET #rtf = STUFF(#rtf, 1, CHARINDEX(' ', #rtf), '');
IF len(#rtf) > 0
WHILE (Right(#rtf, 1) IN (' ', CHAR(13), CHAR(10), '}'))
BEGIN
SELECT #rtf = SUBSTRING(#rtf, 1, (LEN(#rtf + 'x') - 2));
IF LEN(#rtf) = 0 BREAK
END
SET #Pos1 = CHARINDEX('\''', #rtf);
WHILE #Pos1 IS NOT NULL AND #Pos1 > 0
BEGIN
IF #Pos1 IS NOT NULL AND #Pos1 > 0
BEGIN
SET #hex = '0x' + SUBSTRING(#rtf, #Pos1 + 2, 2);
SET #rtf = REPLACE(#rtf, SUBSTRING(#rtf, #Pos1, 4), CHAR(CONVERT(int, CONVERT (binary(1), #hex,1))));
SET #Pos1 = CHARINDEX('\''', #rtf);
END
END
SET #rtf = COALESCE(#rtf, '') + ' ';
SET #Pos1 = PATINDEX('%\%[0123456789][\ ]%', #rtf);
WHILE #Pos1 IS NOT NULL AND #Pos1 > 0 AND #rtf != ''
BEGIN
SET #Pos2 = CHARINDEX(' ', #rtf, #Pos1 + 1);
IF #Pos2 < #Pos1
SET #Pos2 = CHARINDEX('\', #rtf, #Pos1 + 1);
IF #Pos2 < #Pos1
BEGIN
SET #rtf = SUBSTRING(#rtf, 1, #Pos1 - 1);
SET #Pos1 = 0;
END
ELSE
BEGIN
SET #rtf = STUFF(#rtf, #Pos1, #Pos2 - #Pos1 + 1, '');
SET #Pos1 = PATINDEX('%\%[0123456789][\ ]%', #rtf);
END
END
IF RIGHT(#rtf, 1) = ' '
SET #rtf = SUBSTRING(#rtf, 1, LEN(#rtf) -1);
RETURN #rtf;
END
Not to be too rude, but have you actually tested on your function?
Have you run any unit tests to try and break your function, e.g. invalid values, boundary conditions etc.?
Have you checked documentation to see under what conditions SUBSTRING can throw an exception?
I have run these cases and am getting exceptions:
SELECT dbo.[RTF2Text]( NULL )
SELECT dbo.[RTF2Text]( '' )
SELECT dbo.[RTF2Text]( '1' )
SELECT dbo.[RTF2Text]( 'blah' )
If you know under what conditions/input values your function will fail, then it is a simple matter of checking for these in your table.
I had a similar situation and have very little knowledge of SQL functions however needed to strip RTF and tried this code. Debugging suggested that this function was failing was here as I was getting Invalid length parameter.
IF RIGHT(#rtf, 1) = ' '
SET #rtf = SUBSTRING(#rtf, 1, LEN(#rtf) -1);
As I have minimal knowledge and lack of time I just added a second if to make sure it wasn't doing a subtraction i.e. -1 from 0 which worked for my dataset.
IF RIGHT(#rtf, 1) = ' '
IF LEN(#rtf) > 0
SET #rtf = SUBSTRING(#rtf, 1, LEN(#rtf) -1);

order by column based on starting Number(Number may be decimal) in a string in sql server

i have a column named name in my table and example data i have included below
name
-----
1.arun888
2.nikl55555
11.abcd5566
1.123.bhdf
2.767ss777
1.21cdm
and i want to sort the deatils like below
name
----
1.arun888
1.123.bhdf
1.21cdm
2.nikl55555
2.767ss777
11.abcd5566
I have tried many ways but nothing works for me
first method i had used
DECLARE #string varchar(100),
#start int,
#end int,
#len int
SET #string = '66555.12tttthe hollies 12345 Test Ad77dress Dr.'
set #string = replace(#string, ' ' , '')
set #len = len(#string)
set #start = PATINDEX('%[0-9]%',#string)
set #end = PATINDEX('%[^0-9]%',substring(#string, #start, #len))-1
print substring(#string, #start, #end)
but it gives only 66555
but i need
66555.12
second method i had used
CREATE FUNCTION dbo.fn_GetNumeric
(#strAlphaNumeric VARCHAR(256))
RETURNS VARCHAR(256)
AS
BEGIN
DECLARE #intAlpha INT
SET #intAlpha = PATINDEX('%[^0-9]%', #strAlphaNumeric)
BEGIN
WHILE #intAlpha > 0
BEGIN
SET #strAlphaNumeric = STUFF(#strAlphaNumeric, #intAlpha, 1, '' )
SET #intAlpha = PATINDEX('%[^0-9]%', #strAlphaNumeric )
END
END
RETURN ISNULL(#strAlphaNumeric,0)
END
GO
i have used the above function but it wil return all the numbers from string
example
if string is 12.dddh5555
then it return 125555
so i am stuck here. i hope somebody can help me to find this
Try this code:
DECLARE #t TABLE ( name VARCHAR(20) )
INSERT INTO #t
VALUES ( '1.arun888' ),
( '2.nikl55555' ),
( '11.abcd5566' ),
( '1.123.bhdf' ),
( '2.767ss777' ),
( '1.21cdm' );
WITH cte
AS ( SELECT name ,
SUBSTRING(name, 1, PATINDEX('%[^0-9.]%', name) - 1) d
FROM #t
)
SELECT *
FROM cte
ORDER BY CAST(CASE WHEN RIGHT(d, 1) = '.' THEN SUBSTRING(d, 1, LEN(d) - 1)
WHEN d = '' THEN '0'
ELSE d
END AS DECIMAL(30, 10))
First I select substrings till the first symbol that is not dot or digit. Then just remove last dot and order by the result.
With function:
CREATE FUNCTION dbo.fn_GetNumeric
(
#strAlphaNumeric VARCHAR(256)
)
RETURNS DECIMAL(30, 10)
AS
BEGIN
DECLARE #s1 VARCHAR(256) = SUBSTRING(#strAlphaNumeric, 1,
PATINDEX('%[^0-9.]%',
#strAlphaNumeric) - 1)
RETURN CAST(CASE WHEN RIGHT(#s1, 1) = '.' THEN SUBSTRING(#s1, 1, LEN(#s1) - 1)
WHEN #s1 = '' THEN '0'
ELSE #s1
END AS DECIMAL(30, 10))
END
GO
SELECT * FROM TableName
ORDER BY dbo.fn_GetNumeric(name)

Replacing a string before the last "\" character in SQL query

Query:
SELECT filePath FROM Table WHERE filePath IS NOT NULL
It'll return something like \\server\folder1\folder2\filename.tif
I need to query it to replace "\\server\folder1\folder2\" with a variable that's in the stored procedure (#Path) and end the format of the file like .jpg.
So the result would be something like #Path + '.jpg'
How would I go about doing this?
You can use a combination of string functions like REVERSE, SUBSTRING, LEFT and CHARINDEX:
CREATE TABLE YourTable(filePath VARCHAR(2000))
INSERT INTO YourTable VALUES('\\server\folder1\folder2\filename.tif');
DECLARE #path VARCHAR(2000) = 'path\to\folder\'
SELECT
[File] = REVERSE(LEFT(REVERSE(filePath), CHARINDEX('\', REVERSE(filePath),0) - 1)),
[File without ext] =
SUBSTRING(
REVERSE(LEFT(REVERSE(filePath), CHARINDEX('\', REVERSE(filePath), 0) - 1)),
0,
CHARINDEX(
'.',
REVERSE(LEFT(REVERSE(filePath), CHARINDEX('\', REVERSE(filePath), 0) - 1)),
0
)
),
[Final String] =
#path +
SUBSTRING(
REVERSE(LEFT(REVERSE(filePath), CHARINDEX('\', REVERSE(filePath), 0) - 1)),
0,
CHARINDEX(
'.',
REVERSE(LEFT(REVERSE(filePath), CHARINDEX('\', REVERSE(filePath), 0) - 1)),
0
)
) +
'.jpg'
FROM YourTable
Use a combination of REVERSE and CHARINDEX to locate the last \:
DECLARE #filePath VARCHAR(500) = '\\server\folder1\folder2\filename.tif'
DECLARE #newPath VARCHAR(500) = '\\server2\newpath\'
SELECT #newPath +
SUBSTRING(#filePath, LEN(#filePath) - CHARINDEX('\', REVERSE(#filePath))+2, LEN(#filePath))

SQL Server string substring with d iterations

I have a string:
#TempCol = sigma_x1,sigma_x2,...,sigma_xd,XX,YY,ZZ
I want to get a substring to get the string sigma_x1,sigma_x2,...,sigma_xd.
d is a variable, so it can be 1, 3, 20, ..., etc.
I know the value of d, but what I don't know is how to get the substring of the original string with d terms.
I tried this:
#L = ''
SET #ColumnNo = 0
WHILE #ColumnNo <= #d
BEGIN
SET #L = #L + ' ' + SUBSTRING(#TempCol, 1, CHARINDEX(',',#TempCol)-1 )
SET #TempCol = REPLACE ( #TempCol, LTRIM(RTRIM(#L) ) ,'')
Set #ColumnNo = #ColumnNo + 1
PRINT #L
END
but I do not know how to get the expected result.
DECLARE #TempCol varchar(max), #d int, #p int, #Result varchar(max);
SET #TempCol = 'item1,item2,itemA,itemB,item#,item$';
SET #d = 3;
SET #p = 1;
WHILE #d > 0 AND #p > 0 BEGIN
SET #p = CHARINDEX(',', #TempCol, #p);
IF #p > 0 SET #p = #p + 1;
SET #d = #d - 1;
END;
IF #p = 0
SET #Result = #TempCol
ELSE
SET #Result = SUBSTRING(#TempCol, 1, #p - 2);
SELECT #Result;
Basically, the loop just searches for the final position to cut at. The substring is extracted after the loop.
If you specify too large #d then the result will simply be all of #TempCol, otherwise you get the desired number of items.
What you need is a split function (shown at the bottom).
With SplitItems As
(
Select Position, Value
, Row_Number() Over ( Order By Position ) As ItemNum
From dbo.udf_Split( #TempCol, ',' )
)
Select Value
From SplitItems
Where ItemNum <= #d
If you want the assembled string up to a given point you would simply do:
With SplitItems As
(
Select Position, Value
, Row_Number() Over ( Order By Position ) As ItemNum
From dbo.udf_Split( #TempCol, ',' )
)
Select ',' + Value
From SplitItems
Where ItemNum <= #d
Order By ItemNum
For Xml Path('')
Split function:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create FUNCTION [dbo].[udf_Split]
(
#DelimitedList nvarchar(max)
, #Delimiter nvarchar(2) = ','
)
RETURNS TABLE
AS
RETURN
(
With CorrectedList As
(
Select Case When Left(#DelimitedList, Len(#Delimiter)) <> #Delimiter Then #Delimiter Else '' End
+ #DelimitedList
+ Case When Right(#DelimitedList, Len(#Delimiter)) <> #Delimiter Then #Delimiter Else '' End
As List
, Len(#Delimiter) As DelimiterLen
)
, Numbers As
(
Select TOP( Coalesce(DataLength(#DelimitedList)/2,0) ) Row_Number() Over ( Order By c1.object_id ) As Value
From sys.columns As c1
Cross Join sys.columns As c2
)
Select CharIndex(#Delimiter, CL.list, N.Value) + CL.DelimiterLen As Position
, Substring (
CL.List
, CharIndex(#Delimiter, CL.list, N.Value) + CL.DelimiterLen
, CharIndex(#Delimiter, CL.list, N.Value + 1)
- ( CharIndex(#Delimiter, CL.list, N.Value) + CL.DelimiterLen )
) As Value
From CorrectedList As CL
Cross Join Numbers As N
Where N.Value <= DataLength(CL.List) / 2
And Substring(CL.List, N.Value, CL.DelimiterLen) = #Delimiter
)

Datatype for storing ip address in SQL Server

What datatype should I choose for storing an IP Address in a SQL Server?
By selecting the right datatype would it be easy enough to filter by IP address then?
The technically correct way to store IPv4 is binary(4), since that is what it actually is (no, not even an INT32/INT(4), the numeric textual form that we all know and love (255.255.255.255) being just the display conversion of its binary content).
If you do it this way, you will want functions to convert to and from the textual-display format:
Here's how to convert the textual display form to binary:
CREATE FUNCTION dbo.fnBinaryIPv4(#ip AS VARCHAR(15)) RETURNS BINARY(4)
AS
BEGIN
DECLARE #bin AS BINARY(4)
SELECT #bin = CAST( CAST( PARSENAME( #ip, 4 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 3 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 2 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 1 ) AS INTEGER) AS BINARY(1))
RETURN #bin
END
go
And here's how to convert the binary back to the textual display form:
CREATE FUNCTION dbo.fnDisplayIPv4(#ip AS BINARY(4)) RETURNS VARCHAR(15)
AS
BEGIN
DECLARE #str AS VARCHAR(15)
SELECT #str = CAST( CAST( SUBSTRING( #ip, 1, 1) AS INTEGER) AS VARCHAR(3) ) + '.'
+ CAST( CAST( SUBSTRING( #ip, 2, 1) AS INTEGER) AS VARCHAR(3) ) + '.'
+ CAST( CAST( SUBSTRING( #ip, 3, 1) AS INTEGER) AS VARCHAR(3) ) + '.'
+ CAST( CAST( SUBSTRING( #ip, 4, 1) AS INTEGER) AS VARCHAR(3) );
RETURN #str
END;
go
Here's a demo of how to use them:
SELECT dbo.fnBinaryIPv4('192.65.68.201')
--should return 0xC04144C9
go
SELECT dbo.fnDisplayIPv4( 0xC04144C9 )
-- should return '192.65.68.201'
go
Finally, when doing lookups and compares, always use the binary form if you want to be able to leverage your indexes.
UPDATE:
I wanted to add that one way to address the inherent performance problems of scalar UDFs in SQL Server, but still retain the code-reuse of a function is to use an iTVF (inline table-valued function) instead. Here's how the first function above (string to binary) can be re-written as an iTVF:
CREATE FUNCTION dbo.itvfBinaryIPv4(#ip AS VARCHAR(15)) RETURNS TABLE
AS RETURN (
SELECT CAST(
CAST( CAST( PARSENAME( #ip, 4 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 3 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 2 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 1 ) AS INTEGER) AS BINARY(1))
AS BINARY(4)) As bin
)
go
Here's it in the example:
SELECT bin FROM dbo.fnBinaryIPv4('192.65.68.201')
--should return 0xC04144C9
go
And here's how you would use it in an INSERT
INSERT INTo myIpTable
SELECT {other_column_values,...},
(SELECT bin FROM dbo.itvfBinaryIPv4('192.65.68.201'))
You can use varchar. The length of IPv4 is static, but that of IPv6 may be highly variable.
Unless you have a good reason to store it as binary, stick with a string (textual) type.
Here is some code to convert either IPV4 or IPv6 in varchar format to binary(16) and back. This is the smallest form I could think of. It should index well and provide a relatively easy way to filter on subnets. Requires SQL Server 2005 or later. Not sure it's totally bulletproof. Hope this helps.
-- SELECT dbo.fn_ConvertIpAddressToBinary('2002:1ff:6c2::1ff:6c2')
-- SELECT dbo.fn_ConvertIpAddressToBinary('10.4.46.2')
-- SELECT dbo.fn_ConvertIpAddressToBinary('bogus')
ALTER FUNCTION dbo.fn_ConvertIpAddressToBinary
(
#ipAddress VARCHAR(39)
)
RETURNS BINARY(16) AS
BEGIN
DECLARE
#bytes BINARY(16), #vbytes VARBINARY(16), #vbzone VARBINARY(2)
, #colIndex TINYINT, #prevColIndex TINYINT, #parts TINYINT, #limit TINYINT
, #delim CHAR(1), #token VARCHAR(4), #zone VARCHAR(4)
SELECT
#delim = '.'
, #prevColIndex = 0
, #limit = 4
, #vbytes = 0x
, #parts = 0
, #colIndex = CHARINDEX(#delim, #ipAddress)
IF #colIndex = 0
BEGIN
SELECT
#delim = ':'
, #limit = 8
, #colIndex = CHARINDEX(#delim, #ipAddress)
WHILE #colIndex > 0
SELECT
#parts = #parts + 1
, #colIndex = CHARINDEX(#delim, #ipAddress, #colIndex + 1)
SET #colIndex = CHARINDEX(#delim, #ipAddress)
IF #colIndex = 0
RETURN NULL
END
SET #ipAddress = #ipAddress + #delim
WHILE #colIndex > 0
BEGIN
SET #token = SUBSTRING(#ipAddress, #prevColIndex + 1, #Colindex - #prevColIndex - 1)
IF #delim = ':'
BEGIN
SET #zone = RIGHT('0000' + #token, 4)
SELECT
#vbzone = CAST('' AS XML).value('xs:hexBinary(sql:variable("#zone"))', 'varbinary(2)')
, #vbytes = #vbytes + #vbzone
IF #token = ''
WHILE #parts + 1 < #limit
SELECT
#vbytes = #vbytes + #vbzone
, #parts = #parts + 1
END
ELSE
BEGIN
SET #zone = SUBSTRING('' + master.sys.fn_varbintohexstr(CAST(#token AS TINYINT)), 3, 2)
SELECT
#vbzone = CAST('' AS XML).value('xs:hexBinary(sql:variable("#zone"))', 'varbinary(1)')
, #vbytes = #vbytes + #vbzone
END
SELECT
#prevColIndex = #colIndex
, #colIndex = CHARINDEX(#delim, #ipAddress, #colIndex + 1)
END
SET #bytes =
CASE #delim
WHEN ':' THEN #vbytes
ELSE 0x000000000000000000000000 + #vbytes
END
RETURN #bytes
END
-- SELECT dbo.fn_ConvertBinaryToIpAddress(0x200201FF06C200000000000001FF06C2)
-- SELECT dbo.fn_ConvertBinaryToIpAddress(0x0000000000000000000000000A0118FF)
ALTER FUNCTION [dbo].[fn_ConvertBinaryToIpAddress]
(
#bytes BINARY(16)
)
RETURNS VARCHAR(39) AS
BEGIN
DECLARE
#part VARBINARY(2)
, #colIndex TINYINT
, #ipAddress VARCHAR(39)
SET #ipAddress = ''
IF SUBSTRING(#bytes, 1, 12) = 0x000000000000000000000000
BEGIN
SET #colIndex = 13
WHILE #colIndex <= 16
SELECT
#part = SUBSTRING(#bytes, #colIndex, 1)
, #ipAddress = #ipAddress
+ CAST(CAST(#part AS TINYINT) AS VARCHAR(3))
+ CASE #colIndex WHEN 16 THEN '' ELSE '.' END
, #colIndex = #colIndex + 1
IF #ipAddress = '0.0.0.1'
SET #ipAddress = '::1'
END
ELSE
BEGIN
SET #colIndex = 1
WHILE #colIndex <= 16
BEGIN
SET #part = SUBSTRING(#bytes, #colIndex, 2)
SELECT
#ipAddress = #ipAddress
+ CAST('' as xml).value('xs:hexBinary(sql:variable("#part") )', 'varchar(4)')
+ CASE #colIndex WHEN 15 THEN '' ELSE ':' END
, #colIndex = #colIndex + 2
END
END
RETURN #ipAddress
END
As I want to handle both IPv4 and IPv6, I am using VARBINARY(16) and the following SQL CLR functions to convert the text IP address presentation to bytes and the reverse:
[SqlFunction(DataAccess = DataAccessKind.None, IsDeterministic = true)]
public static SqlBytes GetIPAddressBytesFromString (SqlString value)
{
IPAddress IP;
if (IPAddress.TryParse(value.Value, out IP))
{
return new SqlBytes(IP.GetAddressBytes());
}
else
{
return new SqlBytes();
}
}
[SqlFunction(DataAccess = DataAccessKind.None, IsDeterministic = true)]
public static SqlString GetIPAddressStringFromBytes(SqlBytes value)
{
string output;
if (value.IsNull)
{
output = "";
}
else
{
IPAddress IP = new IPAddress(value.Value);
output = IP.ToString();
}
return new SqlString(output);
}
For people using .NET can use IPAddress class to parse IPv4/IPv6 string and store it as a VARBINARY(16). Can use the same class to convert byte[] to string. If want to convert the VARBINARY in SQL:
--SELECT
-- dbo.varbinaryToIpString(CAST(0x7F000001 AS VARBINARY(4))) IPv4,
-- dbo.varbinaryToIpString(CAST(0x20010DB885A3000000008A2E03707334 AS VARBINARY(16))) IPv6
--ALTER
CREATE
FUNCTION dbo.varbinaryToIpString
(
#varbinaryValue VARBINARY(16)
)
RETURNS VARCHAR(39)
AS
BEGIN
IF #varbinaryValue IS NULL
RETURN NULL
IF DATALENGTH(#varbinaryValue) = 4
BEGIN
RETURN
CONVERT(VARCHAR(3), CONVERT(INT, SUBSTRING(#varbinaryValue, 1, 1))) + '.' +
CONVERT(VARCHAR(3), CONVERT(INT, SUBSTRING(#varbinaryValue, 2, 1))) + '.' +
CONVERT(VARCHAR(3), CONVERT(INT, SUBSTRING(#varbinaryValue, 3, 1))) + '.' +
CONVERT(VARCHAR(3), CONVERT(INT, SUBSTRING(#varbinaryValue, 4, 1)))
END
IF DATALENGTH(#varbinaryValue) = 16
BEGIN
RETURN
sys.fn_varbintohexsubstring(0, #varbinaryValue, 1, 2) + ':' +
sys.fn_varbintohexsubstring(0, #varbinaryValue, 3, 2) + ':' +
sys.fn_varbintohexsubstring(0, #varbinaryValue, 5, 2) + ':' +
sys.fn_varbintohexsubstring(0, #varbinaryValue, 7, 2) + ':' +
sys.fn_varbintohexsubstring(0, #varbinaryValue, 9, 2) + ':' +
sys.fn_varbintohexsubstring(0, #varbinaryValue, 11, 2) + ':' +
sys.fn_varbintohexsubstring(0, #varbinaryValue, 13, 2) + ':' +
sys.fn_varbintohexsubstring(0, #varbinaryValue, 15, 2)
END
RETURN 'Invalid'
END
sys.dm_exec_connections uses varchar(48) after SQL Server 2005 SP1. Sounds good enough for me especially if you want to use it compare to your value.
Realistically, you won't see IPv6 as mainstream for a while yet, so I'd prefer the 4 tinyint route. Saying that, I'm using varchar(48) because I have to use sys.dm_exec_connections...
Otherwise. Mark Redman's answer mentions a previous SO debate question.
The following answer is based on answers by M. Turnhout and Jerry Birchler to this question but with the following improvements:
Replaced the use of undocumented functions (sys.fn_varbintohexsubstring, fn_varbintohexstr) with CONVERT() for binary styles
Replaced XML "hacks" ( CAST('' as xml).value('xs:hexBinary()) ) with CONVERT() for binary styles
Fixed bug in Jerry Birchler's implementation of fn_ConvertIpAddressToBinary (as pointed out by C.Plock)
Add minor syntax sugar
The code has been tested in SQL Server 2014 and SQL Server 2016 (see test cases at the end)
IPAddressVarbinaryToString
Converts 4 bytes values to IPV4 and 16 byte values to IPV6 string representations. Note that this function does not shorten addresses.
ALTER FUNCTION dbo.IPAddressVarbinaryToString
(
#varbinaryValue VARBINARY( 16 )
)
RETURNS VARCHAR(39)
AS
BEGIN
IF #varbinaryValue IS NULL
RETURN NULL;
ELSE IF DATALENGTH( #varbinaryValue ) = 4
RETURN
CONVERT( VARCHAR(3), CONVERT(TINYINT, SUBSTRING( #varbinaryValue, 1, 1 ))) + '.' +
CONVERT( VARCHAR(3), CONVERT(TINYINT, SUBSTRING( #varbinaryValue, 2, 1 ))) + '.' +
CONVERT( VARCHAR(3), CONVERT(TINYINT, SUBSTRING( #varbinaryValue, 3, 1 ))) + '.' +
CONVERT( VARCHAR(3), CONVERT(TINYINT, SUBSTRING( #varbinaryValue, 4, 1 )));
ELSE IF DATALENGTH( #varbinaryValue ) = 16
RETURN
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 1, 2 ), 2 ) + ':' +
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 3, 2 ), 2 ) + ':' +
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 5, 2 ), 2 ) + ':' +
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 7, 2 ), 2 ) + ':' +
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 9, 2 ), 2 ) + ':' +
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 11, 2 ), 2 ) + ':' +
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 13, 2 ), 2 ) + ':' +
CONVERT( VARCHAR(4), SUBSTRING( #varbinaryValue, 15, 2 ), 2 );
RETURN 'Invalid';
END
Test Cases:
SELECT dbo.IPAddressVarbinaryToString(0x00000000000000000000000000000000) -- 0000:0000:0000:0000:0000:0000:0000:0000 (no address shortening)
SELECT dbo.IPAddressVarbinaryToString(0x00010002000300400500060070000089) -- 0001:0002:0003:0040:0500:0600:7000:0089
SELECT dbo.IPAddressVarbinaryToString(0xC0A80148) -- 255.168.1.72
SELECT dbo.IPAddressVarbinaryToString(0x7F000001) -- 127.0.0.1 (no address shortening)
SELECT dbo.IPAddressVarbinaryToString(NULL) -- NULL
IPAddressStringToVarbinary
Converts IPV4 and IPV6 string representations to 4 byte and 16 bytes binary values respectively. Note that this function is able to parse most (all of the commonly used) of shorthand address representations (e.g. 127...1 and 2001:db8::1319:370:7348).
To force this function to always return 16 byte binary values uncomment leading 0s concatenation at the end of the function.
ALTER FUNCTION [dbo].[IPAddressStringToVarbinary]
(
#IPAddress VARCHAR( 39 )
)
RETURNS VARBINARY(16) AS
BEGIN
IF #ipAddress IS NULL
RETURN NULL;
DECLARE #bytes VARBINARY(16), #token VARCHAR(4),
#vbytes VARBINARY(16) = 0x, #vbzone VARBINARY(2),
#tIPAddress VARCHAR( 40 ),
#colIndex TINYINT,
#delim CHAR(1) = '.',
#prevColIndex TINYINT = 0,
#parts TINYINT = 0, #limit TINYINT = 4;
-- Get position if IPV4 delimiter
SET #colIndex = CHARINDEX( #delim, #ipAddress );
-- If not IPV4, then assume IPV6
IF #colIndex = 0
BEGIN
SELECT #delim = ':', #limit = 8, #colIndex = CHARINDEX( #delim, #ipAddress );
-- Get number of parts (delimiters)
WHILE #colIndex > 0
SELECT #parts += 1, #colIndex = CHARINDEX( #delim, #ipAddress, #colIndex + 1 );
SET #colIndex = CHARINDEX( #delim, #ipAddress );
IF #colIndex = 0
RETURN NULL;
END
-- Add trailing delimiter (need new variable of larger size)
SET #tIPAddress = #IPAddress + #delim;
WHILE #colIndex > 0
BEGIN
SET #token = SUBSTRING( #tIPAddress, #prevColIndex + 1, #Colindex - #prevColIndex - 1 );
IF #delim = ':'
BEGIN
SELECT #vbzone = CONVERT( VARBINARY(2), RIGHT( '0000' + #token, 4 ), 2 ), #vbytes += #vbzone;
-- Handles consecutive sections of zeros representation rule (i.e. ::)(https://en.wikipedia.org/wiki/IPv6#Address_representation)
IF #token = ''
WHILE #parts + 1 < #limit
SELECT #vbytes += #vbzone, #parts += 1;
END
ELSE
BEGIN
SELECT #vbzone = CONVERT( VARBINARY(1), CONVERT( TINYINT, #token )), #vbytes += #vbzone
END
SELECT #prevColIndex = #colIndex, #colIndex = CHARINDEX( #delim, #tIPAddress, #colIndex + 1 )
END
SET #bytes =
CASE #delim
WHEN ':' THEN #vbytes
ELSE /*0x000000000000000000000000 +*/ #vbytes -- Return IPV4 addresses as 4 byte binary (uncomment leading 0s section to force 16 byte binary)
END
RETURN #bytes
END
Test Cases
Valid cases
SELECT dbo.IPAddressStringToVarbinary( '0000:0000:0000:0000:0000:0000:0000:0001' ) -- 0x0000000000000000000000000001 (check bug fix)
SELECT dbo.IPAddressStringToVarbinary( '0001:0002:0003:0040:0500:0600:7000:0089' ) -- 0x00010002000300400500060070000089
SELECT dbo.IPAddressStringToVarbinary( '2001:db8:85a3:8d3:1319::370:7348' ) -- 0x20010DB885A308D31319000003707348 (check short hand)
SELECT dbo.IPAddressStringToVarbinary( '2001:db8:85a3:8d3:1319:0000:370:7348' ) -- 0x20010DB885A308D31319000003707348
SELECT dbo.IPAddressStringToVarbinary( '192.168.1.72' ) -- 0xC0A80148
SELECT dbo.IPAddressStringToVarbinary( '127...1' ) -- 0x7F000001 (check short hand)
SELECT dbo.IPAddressStringToVarbinary( NULL ) -- NULL
SELECT dbo.IPAddressStringToVarbinary( '' ) -- NULL
-- Check that conversions return original address
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '0001:0002:0003:0040:0500:0600:7000:0089' )) -- '0001:0002:0003:0040:0500:0600:7000:0089'
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '127...1' )) -- 127.0.0.1
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '192.168.1.72' )) -- 192.168.1.72
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '2001:db8:85a3:8d3:1319::370:7348' )) -- 2001:0db8:85a3:08d3:1319:0000:0370:7348
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '2001:db8:85a3:8d3:1314:0000:370:7348' )) -- 2001:0db8:85a3:08d3:1319:0000:0370:7348
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '2001:db8:85a3:8d3::370:7348' )) -- 2001:0DB8:85A3:08D3:0000:0000:0370:7348
-- This is technically an invalid IPV6 (according to Wikipedia) but it parses correctly
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '2001:db8::1319::370:7348' )) -- 2001:0DB8:0000:0000:1319:0000:0370:7348
Invalid cases
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '2001:db8::1319::7348' )) -- 2001:0DB8:0000:0000:0000:1319:0000:7348 (ambiguous address)
SELECT dbo.IPAddressStringToVarbinary( '127.1' ) -- 127.0.0.1 (not supported short-hand)
SELECT dbo.IPAddressVarbinaryToString( dbo.IPAddressStringToVarbinary( '127.1' )) -- 127.0.0.1 (not supported short-hand)
SELECT dbo.IPAddressStringToVarbinary( '0300.0000.0002.0353' ) -- octal byte values
SELECT dbo.IPAddressStringToVarbinary( '0xC0.0x00.0x02.0xEB' ) -- hex values
SELECT dbo.IPAddressStringToVarbinary( 'C0.00.02.EB' ) -- hex values
Thanks RBarry. I'm putting together an IP block allocation system and storing as binary is the only way to go.
I'm storing the CIDR representation (ex: 192.168.1.0/24) of the IP block in a varchar field, and using 2 calculated fields to hold the binary form of the start and end of the block. From there, I can run fast queries to see if a given block as already been allocated or is free to assign.
I modified your function to calculate the ending IP Address like so:
CREATE FUNCTION dbo.fnDisplayIPv4End(#block AS VARCHAR(18)) RETURNS BINARY(4)
AS
BEGIN
DECLARE #bin AS BINARY(4)
DECLARE #ip AS VARCHAR(15)
DECLARE #size AS INT
SELECT #ip = Left(#block, Len(#block)-3)
SELECT #size = Right(#block, 2)
SELECT #bin = CAST( CAST( PARSENAME( #ip, 4 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 3 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 2 ) AS INTEGER) AS BINARY(1))
+ CAST( CAST( PARSENAME( #ip, 1 ) AS INTEGER) AS BINARY(1))
SELECT #bin = CAST(#bin + POWER(2, 32-#size) AS BINARY(4))
RETURN #bin
END;
go
I usually use a plain old VARCHAR filtering for an IPAddress works fine.
If you want to filter on ranges of IP address I'd break it into four integers.
I like the functions of SandRock. But I found an error in the code of dbo.fn_ConvertIpAddressToBinary. The incoming parameter of #ipAddress VARCHAR(39) is too small when you concat the #delim to it.
SET #ipAddress = #ipAddress + #delim
You can increase it to 40. Or better yet use a new variable that is bigger and use that internally. That way you don't lose the last pair on large numbers.
SELECT dbo.fn_ConvertIpAddressToBinary('ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff')
We do a lot of work where we need to figure out which IP's are within certain subnets. I've found that the simplest and most reliable way to do this is:
Add a field to each table called IPInteger (bigint) (when invalid, set IP= '0.0.0.0')
For smaller tables, I use a trigger that updates IPInteger on change
For larger tables, I use a SPROC to refresh the IPIntegers
ALTER FUNCTION [dbo].[IP_To_INT ]
(
#IP CHAR(15)
)
RETURNS BIGINT
AS
BEGIN
DECLARE #IntAns BIGINT,
#block1 BIGINT,
#block2 BIGINT,
#block3 BIGINT,
#block4 BIGINT,
#base BIGINT
SELECT
#block1 = CONVERT(BIGINT, PARSENAME(#IP, 4)),
#block2 = CONVERT(BIGINT, PARSENAME(#IP, 3)),
#block3 = CONVERT(BIGINT, PARSENAME(#IP, 2)),
#block4 = CONVERT(BIGINT, PARSENAME(#IP, 1))
IF (#block1 BETWEEN 0 AND 255)
AND (#block2 BETWEEN 0 AND 255)
AND (#block3 BETWEEN 0 AND 255)
AND (#block4 BETWEEN 0 AND 255)
BEGIN
SET #base = CONVERT(BIGINT, #block1 * 16777216)
SET #IntAns = #base +
(#block2 * 65536) +
(#block3 * 256) +
(#block4)
END
ELSE
SET #IntAns = -1
RETURN #IntAns
END
I'm using varchar(15) so far everything is working for me. Insert, Update, Select. I have just started an app that has IP Addresses, though I have not done much dev work yet.
Here is the select statement:
select * From dbo.Server
where [IP] = ('132.46.151.181')
Go

Resources