Slashdot Mirror


User: eggyknap

eggyknap's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Re:Does Postgres do online backup? on Ask Slashdot: Is Postgres On Par With Oracle? · · Score: 1

    VMWare has invested quite a bit of work into PostgreSQL, and employs a few big names in the community. That said, I know nothing about it myself, and can't answer your question regarding it :)

  2. Re:Feature differences on Ask Slashdot: Is Postgres On Par With Oracle? · · Score: 2

    Everyone should love transactional DDL.

  3. Re:Feature differences on Ask Slashdot: Is Postgres On Par With Oracle? · · Score: 1

    I'm willing to be corrected here, but I understand CONNECT BY was Oracle's way of making recursive queries before the SQL standard invented them. Oracle and PostgreSQL (and presumably others) support standard recursion now. Postgres also has default function parameters, and extensions which sorta kinda but not really approximate Oracle's packages.

  4. Re:Cut out the middleman on Book Review: PostgreSQL 9.0 High Performance · · Score: 1

    There's more to a database than simply speed. There's transactions, rich data types, index types that support those rich data types (you can only us a b-tree when your data types come from a metric space, hence, for instance, PostgreSQL's GIN and GiST index types), a standardized (if somewhat arcane and problematic) query language...