Re: Extracting octets from an inet column

From: Alex Pilosov <alex(at)pilosoft(dot)com>
To: vessey(at)upei(dot)ca
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Extracting octets from an inet column
Date: 2001-07-15 20:03:41
Message-ID: Pine.BSO.4.10.10107151550540.18443-100000@spider.pilosoft.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

host() function doesn't do what you think it does.

Solution for your problem is munging data a bit in plperl (or pltcl or
plpgsql).

create function extract_octet(inet,int4) returns int4 as '
my @x=split /\\./, shift;
return $x[shift];
' language 'plperl';

On Sun, 15 Jul 2001 vessey(at)upei(dot)ca wrote:

> Hi,
>
> I'm trying to find a method I can use to extract octets from an inet
> value. I have a column that contains host addresses, which are all
> currently stored as "/32." I'd like to be able to extract the third and
> fourth octets of the address individually (due to the way we assign
> IP addresses on our campus, this would be a useful thing to do).
> This could be complete brain freeze, but I can't find a way to do it.
>
> I've looked at trying to change the mask length from "/32" to "/24",
> which would then let me get at the last octet using the host()
> function. I saw a reference to a set_masklen() function in 7.2, but
> I'm using 7.1.2. I looked at trying to convert a value to text,
> manipulate the text, and then convert it back to an inet, but can't
> find a magic combination to do this.
>
> I also failed to find a way to access the raw byte values as
> something like bit strings, which I could then play with.
>
> Can anyone point me in the right direction?
>
> Thanks!
> Blair
>
>
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> Blair Vessey VESSEY(at)UPEI(dot)CA
> Systems Manager, University of Prince Edward Island
> Charlottetown, Prince Edward Island, Canada C1A 4P3
> =-= Voice: (902) 566-0388 Fax: (902) 566-0958 =-=
> "An ounce of perception, a pound of obscure" - Rush
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/users-lounge/docs/faq.html
>
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Dominick 2001-07-15 20:42:47 Re: pg_dump problem with PostgreSQL v7.1.2
Previous Message Peter Eisentraut 2001-07-15 20:00:19 Re: pg_dump problem with PostgreSQL v7.1.2