From: | Andreas Kretschmer <andreas(at)a-kretschmer(dot)de> |
---|---|
To: | pgsql-general(at)postgresql(dot)org, "José Pedro Santos" <zpsantos1(at)hotmail(dot)com> |
Subject: | Re: Add Metadata to Postgre SQL |
Date: | 2012-08-14 09:25:55 |
Message-ID: | 523483001.16189.1344936355116.JavaMail.open-xchange@ox.ims-firmen.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
"José Pedro Santos" <zpsantos1(at)hotmail(dot)com> hat am 14. August 2012 um 11:15
geschrieben:
>
> Dear Postgre Community,
>
> I would like to know if is possible to add metadata to Schemas. I have shemas
> with raster layers and I would like to add to them matadata. Is possbile in
> Postgre? If not how can I solve this problem?
What do you mean with 'metadata'? Comments?
test=# create schema foobar;
CREATE SCHEMA
test=*# comment on schema foobar is 'my new comment';
COMMENT
test=*# \dn+ foobar
List of schemas
Name | Owner | Access privileges | Description
--------+-------+-------------------+----------------
foobar | root | | my new comment
(1 row)
Regards, Andreas
From | Date | Subject | |
---|---|---|---|
Next Message | John R Pierce | 2012-08-14 09:50:36 | Re: Add Metadata to Postgre SQL |
Previous Message | Robert Gravsjö | 2012-08-14 09:24:08 | Re: Visualize database schema |