PostgreSQL

  • I would love to hear from anyone who has worked w/SQL Server and PostgreSQL. We are looking at moving some products to PostgreSQL for cost reasons. (Licensing costs way more than the hardware we will be using - doesn't seem right)

    I'll be building a red hat box and getting things started today.

    Any pitfalls to look out for? Major differences that I need to be aware of?

    Any comments appreciated.

    He is no fool who gives up what he cannot keep in order to gain that which he cannot lose.


    He is no fool who gives up what he cannot keep in order to gain that which he cannot lose.

  • I've worked with both...

    PostgreSQL definately has some pitfalls that you should be aware of,

    but I've been able to work around most of them.

    First off and most annoying is the lack of a good joined update command.

    The select statement in PGSQL does not allow for table aliases and does not conform to the same syntax as mssql.

    Instead of:

    select * from table1 a join table2 b on a.pkey=b.pkey

    You have to use:

    select * from table1 join table2 where table1.pkey=table2.pkey

    Another particular area of annoyance is the lack of a stored procedure,

    instead everything is done with functions and only on return variable is allowed. You can have more than one function of the same name as long as they accept different datatypes. This has some interesting uses but is mostly more difficult to manage. There is not really a native language for writing function either... it seems like plpgsql is the closest.

    Let me know if you have any other questions,

    Dan

  • [font=Verdana]how about performance ??

    triggers, mail, views, jobs, scheduled tasks, etcetera.

    greetings, Deejay[/font=Verdana

  • I didn't have to play around with triggers on PostgreSQL so I can't add much value there...

    Views seem to be the same (other than the different select syntax)

    Jobs and scheduled tasks have to be handled by the operating system (cron for unix, AT fot NT)

    There is a simple and full recovery model, although I've never setup the full recovery model.

  • Oh yeah you asked about performance too...

    I can't really say for sure since my application isn't in production yet (www.roushi.net). I would assume it would be similar to MySQL (optimized for select statements on porn sites). It seems like they have done alot to improve the update engine, but I don't think that their internal flat file structure is setup to compete with SQL or Oracle performance.

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply