Hi,<br><br>What is the best way to use postgres with openser?<br><br>Is postgres a viable option?<br><br>I ask, because the install script appears to be broken.<br>If I am able to fix it well enough create the necessary tables,
<br>will it be fit for use?<br><br>As an example, there are several errors in the openser_postgres.sh that comes with openser 1.1<br><br>In particular, there are instances where the following is done:<br><br>create table a (
<br>&nbsp;&nbsp; field type,<br>&nbsp;&nbsp; index a_idx(field)<br>);<br><br>However, postgres requires syntax like this:<br><br>create table a (<br>&nbsp;&nbsp;&nbsp; field type<br>);<br>create index a_idx on a (field);<br><br>Thanks.<br><br>