Hi Piotr,<br><br>you can try:<br><br>1)<br>CREATE SEQUENCE my_seq START 1<br><br>2)<br>CREATE VIEW my_view AS<br>SELECT nextval('my_seq'), otherfield, ...<br>FROM mytable1, mytable2<br><br><br>HTH,<br>Fred<br><br><br>
<br><br><br><div class="gmail_quote">2009/5/29 Piotr Synowiec <span dir="ltr"><<a href="mailto:psynowiec@gmail.com">psynowiec@gmail.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">Kevin Neufeld wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Piotr Synowiec wrote:<br>
 > Is there any particular reason why AddGeoemtryColumn doesn't work on<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Views ?<br>
<br>
</blockquote>
<br>
AddGeometryColumn adds a column to a table and registers the column with the geometry_columns.  If you want to add a geometry column to your VIEW, alter your VIEW to select the column from an appropriate underlying table.<br>

</blockquote></div>
I have done it<div class="im"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
You're right that you will have to manually add or register the view with geometry_columns for some applications to detect the view.<br>
</blockquote></div>
maybe I expressed myself not clearly.<br>
The thing is that AddGeometryColumn function complains that View is not a Table and it will not add geometry column to<br>
geometry_columns table<br>
<br>
It works after I insert data with INSERT<br>
<br>
Just didn't figure it out how to add unique ID field to my VIEW.<br>
The ID I have in my tables merged to the VIEW have repeating IDs<br><font color="#888888">
<br>
Piotr</font><div><div></div><div class="h5"><br>
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net" target="_blank">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
</div></div></blockquote></div><br>