Earlier quoted context omitted.
I beg to differ, those drivers exist since Java was owned by Sun. Also Oracle was the first RDMS to support stored procedures in Java. So source isn't available yet you are able to judge the code quality, interesting. No, disassembling bytecode isn't a reflection of the quality of the original source code.
> Also Oracle was the first RDMS to support stored procedures in Java. Who in their right mind would do that ? It's a nightmare on so many levels....
Oracle vs. PostgreSQL: First Glance
131–140 of 201 posts
Re: Oracle vs. PostgreSQL: First Glance
#132One RDBMS that I don't see mentioned much is Tibero https://www.tmaxsoft.com/products/tibero/ It's a clone of Oracle & I'm surprised that Oracle legal have never tried to splat it! Interesting blog post discussing it here: https://www.tmaxsoft.com/products/tibero/
That's not a blog post, that's just marketing material.
Re: Oracle vs. PostgreSQL: First Glance
#133Earlier quoted context omitted.
> Also Oracle was the first RDMS to support stored procedures in Java. Who in their right mind would do that ? It's a nightmare on so many levels....
Because the alternative is PL/SQL, which is Ada minus 90% of the things that make Ada reliable and powerful.
Re: Oracle vs. PostgreSQL: First Glance
#134I've been at 3 separate companies where each respective CIO had "get rid of Oracle" as a strategic initiative.
Perhaps it was retaliation for Larry’s comments about Amazon in this interview https://m.youtube.com/watch?v=xrzMYL901AQ
Re: Oracle vs. PostgreSQL: First Glance
#135Earlier quoted context omitted.
So some third party solution, and not first class support from the RDMS vendor. That is not the same as using Oracle.
Plugin_debugger is availlable on postgresql.org's repo. And supported by our postgresql support provider. You can of course use pgadmin, the official tool, with this plugin. You should reassess your critics before posting, I think. The evolution of postgresql is faster and faster.
Pushing for those plugins as alternative just shows how little one knows about the feature level of Oracle capabilities.
Re: Oracle vs. PostgreSQL: First Glance
#136Earlier quoted context omitted.
That's what we call throwing good money after bad. Besides, PostgreSQL has actually come a long way since 3 years ago or so. It's not a slow-moving project, especially for this space.
How often do developers recompile postgresql? How often do developers go through the hassle of upgrading databases versions? Whatever postgresql may have done recently, it won't be used and available in the common distro until a while later. Bear in mind that minor versions in postgresql are breaking changes. It does not follow semver.
Re: Oracle vs. PostgreSQL: First Glance
#137Earlier quoted context omitted.
I've spent a fair amount of time at the Sofitel in Redwood Shores, and I'd often chat with Oracle "sales engineers" at the bar. A simple "so, what do you work on" question would inevitably generate an hour's worth of them explaining some convoluted acronym-heavy product with a pushy sales model, and I'd eventually be like "ok... so it's a database?".
To be fair to Oracle (not something I say very often) - I suspect most of their sales are business applications (ERP, CRM, financial) that happen to use their database engine as a back end.
Re: Oracle vs. PostgreSQL: First Glance
#138Oracle used to be by far and away the best database out there. Now I wouldn’t use it even if you paid me. It’s shocking how little Oracle invested in developing their products and services over the years. They are a distant second, if not merely an “also ran”, for everything that they do. The company largely exists as an experiment in just how far you can go with a vendor lock-in strategy. Sadly that experiment is pr…
They're a victim of their own success. They became a monopoly and the quality of their product stopped mattering. They're an example of Steve Job's comments on Xerox's failure[0]. It happened at Oracle, IBM, Cisco, and Microsoft. It's happening now at Apple, Intel and Google. [0]: https://youtu.be/NlBjNmXvqIM
Re: Oracle vs. PostgreSQL: First Glance
#139I'm a happy Postgres user and recently did some work with a government agency using Oracle - the thing that shocked me most about Oracle was the lack of transactional DDL operations which was something I'd just taken for granted in the Postgres world.
To be fair I think only Postgres has that feature.
Re: Oracle vs. PostgreSQL: First Glance
#140Earlier quoted context omitted.
I've generally found SqlServer's query optimizer to be a hellish nightmare of broken dreams, so if Postgres' is even worse I'm giving up and going back to flat files.
I found SQL Server's query optimiser to be magical, but it relies on its table statistics being somewhat correct. Every now and again they liked to suddenly become wrong enough that queries go from magical to catastrophic mush. (Most recent version I've used was SQL Server 2008.)
As an example, say you have a database of all cars ever produced with indexes on model and production date. If you are looking for the latest Ford F-150 then the best plan is to just start looking backwards by date and you will find one soon enough. Much faster than looking up all F-150s and picking the latest one. On the other hand, if you are looking for latest Ford Model-T, that plan is going to be catastrophically terrible, going through 93 years of car production before finding the correct one.