The best thing is not have to worry about the confusion over whether to use InnoDB over MyISAM on certain tables. Postgres offers the FTS that MyISAM gives (if you're into having the FTS not tied into Sphinx or something else), whilst also giving you the referential integrity that InnoDB gives - without a thought!<br>

<br><div class="gmail_quote">On Mon, Nov 16, 2009 at 6:20 PM, Jocke Selin <span dir="ltr"><<a href="mailto:jocke@selincite.com">jocke@selincite.com</a>></span> wrote:<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"><br>
On 16 Nov 2009, at 18:00, Sam Stokes wrote:<br>
><br>
> I've heard before that the PostgreSQL CLI is nicer than MySQL's.  Is its permission system any easier to administer?  I don't think I've ever successfully run a GRANT ALL PERMISSIONS TO fred@localhost AND HIS DOG without having to look up the syntax every time.<br>


<br>
</div>A cut-n-paste from my install notes:<br>
----<br>
aptitude install postgresql<br>
su postgres<br>
createuser -S -D -R -P -E -e theusername<br>
createdb -E UTF-8 -O spine -e thedatabase_production<br>
Test by logging in:<br>
psql -h localhost -U theusername -W thedatabase_production<br>
----<br>
<br>
Those commands create and run the SQL for you. :)<br>
<font color="#888888"><br>
/Jocke<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
Chat mailing list<br>
<a href="mailto:Chat@lists.lrug.org">Chat@lists.lrug.org</a><br>
<a href="http://lists.lrug.org/listinfo.cgi/chat-lrug.org" target="_blank">http://lists.lrug.org/listinfo.cgi/chat-lrug.org</a><br>
</div></div></blockquote></div><br>