Earlier quoted context omitted.
> any program benchmark tests Don't think installation size or length of time taken to set up the program really qualify as a "program benchmark test", so he should be fine
Why not? Installation time and disk size are two values that may be important for some customers, and measuring those might therefore be considered benchmarks.
Oracle vs. PostgreSQL – A Comment
51–60 of 238 posts
Re: Oracle vs. PostgreSQL – A Comment
#52As a developer: - No license fees is huge. My company saves tens of thousands on license fees when we can't really afford it. - The ability to set up environments super quickly is amazing. - Rollback of DDLs is huge for testing migrations - The backup features aren't broken by default. I've spent hours researching how to back up an oracle db and transfer it to another. And at that point versions matter. With postures…
Oracle can't roll back these (create table/drop index etc)? That really surprises me. Pretty certain MSSQL can, because I've used it. Amazed, actually, that oracle can't.
Re: Oracle vs. PostgreSQL – A Comment
#53Earlier quoted context omitted.
Oracle may very well want to litigate it. I doubt they care about the optics. This is the well-known DeWitt clause, so named because Oracle crafted it to squelch database research being performed by Dr. David DeWitt. I believe these clauses should be clearly ruled as illegal, but to my knowledge they still persist. Details here: https://dwheeler.com/essays/dewitt-clause.html
If they decide to litigate, they might learn what a Streisand effect[0] is. [0] http://en.wikipedia.org/wiki/Streisand_effect
I’ve never dealt with Oracle myself, yet even I’ve known about their reputation since before I joined the software industry.
Re: Oracle vs. PostgreSQL – A Comment
#54Earlier quoted context omitted.
Chances are, he lives in a country where essentially saying "by purchasing our product you agree not to tell anyone how bad it is" is unenforceable. That might even include US.
The fact that something is unenforceable is a poor way of stopping rich lawyer-based companies, such as Oracle, from attempting to enforce it nonetheless.
Re: Oracle vs. PostgreSQL – A Comment
#55>” create stand alone database: ~30m” Something is oddly wrong in his tests if it took him 30 minutes to create an oracle database.
Re: Oracle vs. PostgreSQL – A Comment
#56Earlier quoted context omitted.
Chances are, he lives in a country where essentially saying "by purchasing our product you agree not to tell anyone how bad it is" is unenforceable. That might even include US.
The fact that something is unenforceable is a poor way of stopping rich lawyer-based companies, such as Oracle, from attempting to enforce it nonetheless.
Re: Oracle vs. PostgreSQL – A Comment
#57Copying from https://stackoverflow.com/questions/12115397/is-it-against-l... : The standard license ( http://www.oracle.com/technetwork/licenses/standard-license-... ) you agree to when you download software from the Oracle Technology Network (OTN) does state that you're not allowed to disclose benchmarks. You may not: > - disclose results of any program benchmark tests without our prior consent. I sadly suspect that…
> You may not: > I mean... does anyone here think this is in any way reasonable? Is this even legal?
Re: Oracle vs. PostgreSQL – A Comment
#58Earlier quoted context omitted.
There will always be a lot of use for large databases. PostgreSQL does provide some under-the-hood features for doing distributed db's (such as the PREPARE TRANSACTION extension) but the actual implementation work is left to the user - there's no such thing as a "one size fits all" solution in this domain.
Exactly, so, what use cases is Oracle best suited for, situations where Postgres cannot be a good fit?
Not that MSSQL isn't heading that way, and getting more weird and buggy all the time.
Re: Oracle vs. PostgreSQL – A Comment
#59As a developer: - No license fees is huge. My company saves tens of thousands on license fees when we can't really afford it. - The ability to set up environments super quickly is amazing. - Rollback of DDLs is huge for testing migrations - The backup features aren't broken by default. I've spent hours researching how to back up an oracle db and transfer it to another. And at that point versions matter. With postures…
> Rollback of DDLs Oracle can't roll back these (create table/drop index etc)? That really surprises me. Pretty certain MSSQL can, because I've used it. Amazed, actually, that oracle can't.
Postgres gets it right. DDL is contained in the transacrion until commit.
Re: Oracle vs. PostgreSQL – A Comment
#60Copying from https://stackoverflow.com/questions/12115397/is-it-against-l... : The standard license ( http://www.oracle.com/technetwork/licenses/standard-license-... ) you agree to when you download software from the Oracle Technology Network (OTN) does state that you're not allowed to disclose benchmarks. You may not: > - disclose results of any program benchmark tests without our prior consent. I sadly suspect that…