From: | "Dan Langille" <dan(at)langille(dot)org> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | inet versus text for ip addresses |
Date: | 2003-07-05 00:08:04 |
Message-ID: | 3F05DEA4.5526.6F4CF1C5@localhost |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
The PostgreSQL inet datatype stores an holds an IP host address, and
optionally the identity of the subnet it is in, all in one field.
This requires 12 bytes.
Using my "random" data of approximately 8000 IP addresses collected
during previous polls, I've found the average length of an IP address
is 13.1 bytes. An integer requires 4 bytes.
First question: Why not store an option to store just an IP address?
That should require less than the 12 bytes for inet.
On to the real question:
The existing tables are:
create table recount_ips
(
ipid serial not null,
ipaddress inet not null,
primary key (ipid)
);
create unique index recount_ips_ip_address on recount_ips
(ipaddress);
create table recount_iptopolls
(
pollid integer not null,
ipid integer not null,
primary key (pollid, ipid)
);
alter table recount_iptopolls
add foreign key (pollid)
references recount_polls (pollid) on update restrict on delete
restrict;
alter table recount_iptopolls
add foreign key (ipid)
references recount_ips (ipid) on update restrict on delete
restrict;
I think a better solution is one table:
create table recount_iptopolls
(
pollid integer not null,
ipaddress inet not null,
primary key (pollid, ipaddress)
);
alter table recount_iptopolls
add foreign key (pollid)
references recount_polls (pollid) on update restrict on delete
restrict;
It removes a table and the associated primary key, and removed a
foreign key from the modified recount_iptopolls table.
Comments?
--
Dan Langille : http://www.langille.org/
From | Date | Subject | |
---|---|---|---|
Next Message | Ian Barwick | 2003-07-05 12:14:08 | Re: INSERT ... SELECT problem in Mysql |
Previous Message | Evil Azrael | 2003-07-04 22:06:59 | Re: INSERT ... SELECT problem in Mysql |