Slashdot Mirror


Review: Oracle Database 12c

snydeq writes "InfoWorld's Riyaj Shamsudeen offers an in-depth look at Oracle Database 12c, which he calls a 'true cloud database,' bringing a new level of efficiency and ease to database consolidation. 'In development for roughly four years, Oracle Database 12c introduces so many important new capabilities in so many areas — database consolidation, query optimization, performance tuning, high availability, partitioning, backup and recovery — that even a lengthy review has to cut corners. Nevertheless, in addition to covering the big ticket items, I'll give a number of the lesser enhancements their due,' writes Riyaj Shamsudeen. 'Having worked with the beta for many months, I can tell you that the quality of software is also impressive, starting with a smooth RAC cluster installation. As with any new software release, I did encounter a few minor bugs. Hopefully these have been resolved in the production release that arrived yesterday.'"

147 comments

  1. But but... by Anonymous Coward · · Score: 0

    My company just decided to upgrade from 8i to 10g :(
    Oh well maybe on 2030 ill be on this one.

  2. Abject Shillery by Anonymous Coward · · Score: 2, Insightful

    Shouldn't shill articles be over on SlashBusinessCrap or whatever?

  3. New features? by webmistressrachel · · Score: 1, Interesting

    Backup and restore are new features in this latest version of the Oracle Database??

    How on earth did they manage before?! Seriously? Is it just me or am I the only person who writes programs from scratch with data security, portability and safety in mind? Gosh, My data has been separate from the program since I was loading out to 90-minute Type II's!

    I mean, seriously, from this article can we assume that mysqldump offered a more sensible backup than every version of the mega-expensive Oracle, until this version?

    --
    This tagline was transcoded to result in at least one smirk. If you experience failure to smirk, please consult your Gen
    1. Re:New features? by Anonymous Coward · · Score: 0

      Pretty sure it meant new capabilities in that department. Oracle offered dump and restore long back. That said, my experience with oracle has not been that good either.

    2. Re:New features? by alen · · Score: 2, Informative

      lots of third party backup programs support Oracle and SQL server to back up the databases online

      last i looked at mysql you had to shut down the database or dump it to another db and then backup the file. too expensive to do this on a 200Gb database sitting on a SAN

    3. Re:New features? by segedunum · · Score: 1

      last i looked at mysql you had to shut down the database or dump it to another db and then backup the file. too expensive to do this on a 200Gb database sitting on a SAN

      I cannot fathom where you've picked this up from.

    4. Re:New features? by hamster_nz · · Score: 4, Informative

      I didn't read that from TFA - just that object level restores have been improved, as has some compression features.

      Just so everybody is aware Oracle has always had kick-ass restore and recovery features, way ahead of other database - such things as Flashback, it has been shipping transaction logs since Noah was a boy, and the good ol' "ALERT TABLESPACE BEGIN BACKUP" to allow you to copy files online. It can perform change block tracking on database datafiles to allow increment backups "ALTER DATABASE ENABLE BLOCK CHANGE TRACKING USING FILE ;". All of this is platform independent too.

      Recovery is also awesome. "ALTER DATABASE RECOVER UNTIL [timestamp]", "ALTER DATABASE RECOVERY UNTIL CANCEL", "ALTER DATABASE UNTIL CHANGE [transaction number]" and so on. If you accidentally loose you control files (somewhat like your MS-SQL master database being trashed) you can recreate them using SQL.

      The big problem is that you have to be doing a lot of it to be good at it, many very think books have been written on Oracle backup and restore. So tools like Oracle's RMAN have been created to manage the process for DBAs...

    5. Re:New features? by alen · · Score: 2

      so which backup programs support mysql natively

      like i install an agent, set a policy on the backup server and have it backup to my tape library automatically without dumping the data to another storage device?

    6. Re:New features? by F.Ultra · · Score: 2

      mysqldump? But what you are doing, i.e backup of the database files directly, is a very dangerous form of backup. Restoring such when the database has been corrupted for whatever reason is not something I would enjoy, so going by an ascii dump like mysqldump does is way more saner from that perspective, it's of course also way more slow.

    7. Re:New features? by Gwala · · Score: 4, Informative

      mysqldump can and will lock tables during its backup - there's some tricks around this; but on a big production database, its really suboptimal.

      --
      #!/bin/csh cat $0
    8. Re:New features? by NoNonAlphaCharsHere · · Score: 4, Informative

      I see you're a dedicated full-time Oracle support guy. I don't know of a lot of other products that require a full-time support person to do (conceptually) simple stuff. My biggest complaint about Oracle has always been that to even take it out of the box and install it required guru-level Oracle knowledge, much less keeping it running well. I absolutely hate all things Microsoft, but at least you can install Squeel Server and set up backups without two days effort and an overwhelming desire to stick a gun in your mouth.

    9. Re:New features? by alen · · Score: 4, Informative

      one of the selling points of sql server and oracle is you can backup the database directly while its running. you can backup the database, by separate files and file groups

      SQL server you can even have the database online during a restore. you restore the main file group and then the others. all the data may not be there, but the database will be able to server applications with some data. you can always move your tables around so that the most important ones get restored first

      with SQL server on decent hardware from the last 2-3 years you can backup a database during business hours and your users will never know. i do it all the time

    10. Re:New features? by war4peace · · Score: 5, Insightful

      It's a complex product. of course it has a point-and-grunt installer, but anything else requires configuring the product, and it doesn't have an "easy mode", simply because it's not targeting "simple people".

      You're thinking from a tiny point of view (small company or personal). And yes, in this case, oracle DB might not be for you. But a company which makes arguably billions off data located in an oracle DB Cluster doesn't care whether the DB needs 0, 1, or 25 people who manage it. Whatever the costs are, they represent a tiny fraction of the profits.

      if your monthly profit is $10K then your DB costs might need to be below $200. However, make your monthly profit $500M, then you can afford spending anywhere between $200K and $1M a month on the DB and its support (licensed or in-house) and even more.

      --
      ...gis sdrawkcab (usually not responding to ACs; don't bother posting as AC)
    11. Re:New features? by jbolden · · Score: 1

      I'm not sure what line you are talking about. There are a few references in the article to backup and recovery like, "In addition, you can back up and recover pluggable databases independently of the container database" which say nothing remotely like Oracle didn't have backup and recovery. The backup strategies that MySQL uses were developed by Oracle usually a decade or two before.

    12. Re:New features? by Anonymous Coward · · Score: 0

      Additional backup features moron. Like the ability to retrieve a point-in-time version of a single table from a full wihile-in-use backup augmented with continuous log backup. Didn't have to specify in advance a backup strategy for that specific table. Not limited by specific dump times.

    13. Re:New features? by malkavian · · Score: 4, Insightful

      The complexity often sets the ceiling.
      SQL Server is pretty simple out of the box, and with a reasonable toolset to let you administer it. I trust it to a level. However, cost 'savings' being what they are, a lot of companies who do not understand exactly what it is they're asking, will hire someone who can click the SQL Server buttons on the GUI and change a tape.
      They're cheaper than an in depth DBA that groks the environment by a long shot. However, when it comes emergency time, I really don't trust that things will go smoothly.

      Oracle has the starting point that you need to know a few of the bits under the hood, so you actually start to understand what's really going on (it tries not to hide the messy details from you), seems to come with the kitchen sink (though occasionally with a fair mortgage as well), and requires staff that actually know what they're about; it actively encourages you to go deeper all the time.

      I don't have a problem with a product that's geared for high end enterprise requiring a guru level knowledge to actually get going. At that level, you really should have the skills to back your actions up with.

    14. Re:New features? by jbolden · · Score: 4, Insightful

      First off installing Oracle does not require guru knowledge. They write pretty good installation guides. Developers install Oracle for themselves all the time. I will agree it is much harder than SQLServer to install but that's a SQLServer strength.

      Oracle is a professional product. It exists at the top end for people who want to be able to manually configure and tweak the database to get the most out of it. It also allows for complex configurations that the other systems don't. It the database server hardware cost is in 4 or 5 figures, and the configuration isn't extremely complex don't use Oracle. When you compare Oracle to SQLServer compare a setup of a database distributed over 4 continents involving $20m in server hardware because that's where all that complexity really shines.

    15. Re:New features? by Vanderhoth · · Score: 5, Insightful

      This is all very true. For a small website MySQL or MariaDB are fine. I work in government and we collect, process and create terrabytes of ocean data a month for weather, sea ice, waves, salinity, temperature, oxygen, species migration, satellite imagery, and tons of other things. I hate Oracle because of their business practices and general asshatery as much as the next techie, but for large databases that require the kind of collection, processing and modeling we do, Oracle is all there is.

      You're especially right that there's no "easy mode". I think it'd be silly to include such a thing and dumb down such a hugely complex product to a level that you might as well be using MySQL or MariaDB. And for the amount of data we deal with and the number of database instances we have, yes it's a full time DB admin job. God forbid the someone was to pull a Bobby tables because we didn't have someone qualified creating and maintaining the databases at all times.

    16. Re:New features? by Anonymous Coward · · Score: 2

      http://www.percona.com/doc/percona-xtrabackup/2.1/

      "Percona XtraBackup is an open-source hot backup utility for MySQL - based servers that doesn’t lock your database during the backup."

      http://www.mysql.com/products/enterprise/backup.html

      "MySQL Enterprise Backup performs online Hot, non-blocking backups of your MySQL databases."

    17. Re:New features? by NoNonAlphaCharsHere · · Score: 1

      I suppose I should have pointed out that I'm speaking as a developer of an independant application who has to (transparently) support multple database types. Oracle is the one that consistantly makes me want to tear my hair out.

    18. Re:New features? by FictionPimp · · Score: 1

      commvault, zmanda, tivoli?

    19. Re:New features? by h4rr4r · · Score: 4, Insightful

      What modern SQL server does not have some method of doing this? Even if it requires outside programs running against it?

      Please stop calling MS SQL server, sql server it makes it sound like it is the only one.

    20. Re:New features? by Anonymous Coward · · Score: 0

      I see you're a dedicated full-time Oracle support guy. I don't know of a lot of other products that require a full-time support person to do (conceptually) simple stuff.

      Oh look, somebody's never worked at a company with more than 50 people.

      Dipshit.

    21. Re:New features? by Anonymous Coward · · Score: 0

      Thanks for your thoughtful and useful response.

      Fucktard.

    22. Re:New features? by advid.net · · Score: 1

      It can perform change block tracking on database datafiles to allow increment backups "ALTER DATABASE ENABLE BLOCK CHANGE TRACKING USING FILE ;".

      Note: block change tracking is used to reduce reads in case of incremental backup. It is not required to allow incremental backup.

    23. Re:New features? by benjymouse · · Score: 2

      mysqldump? But what you are doing, i.e backup of the database files directly, is a very dangerous form of backup. Restoring such when the database has been corrupted for whatever reason

      Actually no, it is not dangerous provided that you use a backup agent or an operating system that supports this. Windows does, Linux and Unix do not.

      On Windows the Volume Shadow Copy Service (VSS) will interact with registered processes to coordinate *when* they should ensure persistent consistency - which is reserved as a fraction of a second. It requires the processes to register as VSS writers - which database servers generally do (Oracle and SQL Server do - I do not know if MySQL does).

      On Windows in a virtual environment this will even propagate through VM volumes, i.e. if you backup the host of the VMs (where some of the VMs could be running database servers), the host VSS service will ask the guest VSS service to ensure consistency right when the disk image file is being backed up. This means that you can backup the host Hyper-V server with all the disk images and rest assured that the VMs are consistent.

      Huge boon for uptime.

      --
      Reading slashdot one-liner: (irm http://rss.slashdot.org/Slashdot/slashdot).rdf.item | fl title,desc*
    24. Re:New features? by andawyr · · Score: 1

      You can do log shipping with mysql to have multiple sync'd databases - I've set this up in a small environment, and have not tested this feature with a high-capacity database, but the capability *is* there.

    25. Re:New features? by Anonymous Coward · · Score: 0

      ... And for the amount of data we deal with and the number of database instances we have, yes it's a full time DB admin job...

      Yes but it does get silly.

      i worked for a couple of big storage companies in their backup section to provide resources and training for, among many other types of clienst, Oracle DB Admins. It always struck me that it was only 'very complex' and required 'many DB admins' because those same DB admins made it that way. Of course I didn't care, I was just about getting data to Tape/Disk and making sure they had a workable process to make whatever backup scheme they wanted, but good god... they didn't half want to make it very complex.

      So I have to wonder, now that I am out of this field (and do SAN storage networking) if this is still the case. If after all you are 'essentially' just making space for some more data, why does the 'DataBase' need to be more and more complex?

      It's like saying I need more and more skilled and/or more and more Tape Monkeys or Storage Admins because I use more and mroe disks. You don't really need more, as long as you have a place to put the data and a way to get it back, why should the systems you have in place change?

      Most data just sits there and even then when it is needed it is read from, not really written too.

      I sort of see this like a Road worker having to get more and more and more skilled as we increase the number of lanes in a highway. It's nonsense, just smacks of either complexity for complexity's sake, or that people don't really understand their product well enough to produce efficient routines/processes/reports. Of course the software companies love it, they can sell you more and more licenses. The PHB are ignorant in most cases (at least in my experience).

      When I did my last job for the last backup company I worked for, it was for a finance and insurance company (a big international one), I noted that they had effectively 2 databases that were company critical, once system was legacy and was run on Mainframe (some Hitachi Iron I think) and the other was on a UNIX Platform (I think HPUX), the amount of DB admins to manage the Mainframe was 2 - for the whole of the northern hemisphere (they had a third who was on standby but was essentially a contractor), the UNIX Admins had 8 just for the one country.

      The amount of tape being used was 5 times the amount on the mainframe compared to the UNIX DB admins, yet they said they had not had to change any process for over 4 years and all they did was just 'add disk' as the database got bigger and bigger.

      I know that there is huge difference in cost of UNIX vs Mainframe, but the point was the amount of people needed to manage a system that was '5' times the size for an a geographical area 100 times the same took a quarter of the amount of people.

      I have and still am not convinced that the 'complexity' of products like Oracle at least from the perspective of the way each company uses it (it is a big suite of stuff after all I get that), is ever that well run.

    26. Re:New features? by HockeyPuck · · Score: 1

      I work at a fortune 100 company.. Where else do we have dedicated support personnel?

      Mainframe operators/programmers
      Storage (HDS & netapp) admins
      DBAs
      Network (L2/L3) and another team that handles L4-7 and security like firewalls
      VMware admins
      Aix admins

      Damn. You must work at one awesome company since your DBA can do all of that. He or she should get a raise.

    27. Re:New features? by Anonymous Coward · · Score: 1

      process and create terrabytes of ocean data

      A real dba would never make such a typo. I smell something fishy here.

    28. Re:New features? by Anonymous Coward · · Score: 0

      MySQL isn't the only other option. DB2, Postgresql, Hadoop ?

    29. Re:New features? by Anonymous Coward · · Score: 0

      That's want they want you to think. Its a corporate strategy. Same when they used "Word" as the same of their word processor product when there already existed "WordPerfect", "WordStar", etc. Same when they took over the ending ".doc" when it was in common use as any text document.

      Now people don't say "spreadsheet" they say "excel". Just like the use of "Kleenex" instead of "tissue".

    30. Re:New features? by Vanderhoth · · Score: 1

      My keyboard is old and has had a lot of coffee spilled on it. Lately the keys stick a bit. Had I spelled it tarriebytes I might be able to see your concern, but one extra 'r' doesn't really count as a serious typo.

      I'm not a DBA and I never made that claim, I'm a developer. Some of the applications I write are front ends for researchers to access data stored in Oracle databases. Some applications are for modeling data and comparing models against hindcasts. There is a lot of data.

    31. Re:New features? by Anonymous Coward · · Score: 0

      MySQL isn't the only other option. DB2, Postgresql, HBase ?

      FTFY

    32. Re:New features? by Anonymous Coward · · Score: 0

      This is all very true. For a small website MySQL or MariaDB are fine.

      A small website... like facebook?

    33. Re:New features? by Anonymous Coward · · Score: 0

      VSS may provide file consistency, but how does it provide database consistency ?

    34. Re:New features? by Anonymous Coward · · Score: 0

      How does your DB admin prevent SQL injection vulnerabilities in client code?

    35. Re:New features? by pak9rabid · · Score: 1

      God forbid the someone was to pull a Bobby tables [xkcd.com] because we didn't have someone qualified creating and maintaining the databases at all times.

      Wouldn't preventing a "Bobby tables" incident be more on the application developers plate than the DBA's?

    36. Re:New features? by jbolden · · Score: 1

      As for installing from the guides. I've done it many times, it does work. And they are extremely detailed. I often do look at websites for more information but the official oracle guide is my primary source.

      I'm not young, I'm not a shill. Oracle's documentation is rather good. No one writes 100k+ pages of professional quality documentation per version and intentionally cripples it. Absolutely Oracle Press and other 3rd party writers do a good job in providing documentation, often because you have writers and not technical writers involved. And there is better up to the minute information in their various forums, no question.

      But can you many products with better documentation?

    37. Re:New features? by Tailhook · · Score: 1

      install [...] a SQLServer strength.

      Microsoft has accomplished easy installation on a single platform. 12 c is fully supported on many versions of 5 major operating systems. The installation GUI (yes, the whining is about a system with a GUI/wizard installer you can blast through banging on 'next'...) is pretty consistent across platforms.

      It's not hipster software. Oracle has the conceit to expect sufficient experience to follow some basic instructions. Nevertheless developers get it done every day without drama.

      --
      Maw! Fire up the karma burner!
    38. Re:New features? by Vanderhoth · · Score: 1

      Yes, as I'm an application developer that is why it came to mind. My reason for pointing it out is because the DBA would be responsible for cleaning up the mess of some bad application developer if that situation was to arise. I'm not the only application dev in my group and am far more knowledgeable than some of my coworkers, and far less knowledgeable than others.

      That being said, my understanding is if a DBA does a good job setting up permissions and uses DBA terms, such as materialized view, they can reduce the chance of an application dev messing things up in the first place.

    39. Re:New features? by RaceProUK · · Score: 1

      It doesn't - that's what the DBMS is for.

      --
      No colour or religion ever stopped the bullet from a gun
    40. Re:New features? by nairnr · · Score: 1

      Backup and restore are new features in this latest version of the Oracle Database??

      How on earth did they manage before?! Seriously? Is it just me or am I the only person who writes programs from scratch with data security, portability and safety in mind? Gosh, My data has been separate from the program since I was loading out to 90-minute Type II's!

      I mean, seriously, from this article can we assume that mysqldump offered a more sensible backup than every version of the mega-expensive Oracle, until this version?

      No, it says that it has new capabilities - not that backing up is new to Oracle...

    41. Re:New features? by Anonymous Coward · · Score: 0

      LOL!! That was great! I laughed, I cried, I peed my pants.

    42. Re:New features? by jbolden · · Score: 1

      (yes, the whining is about a system with a GUI/wizard installer you can blast through banging on 'next'

      In all fairness to the critics, except on Windows, I've never been able to get an install to work out of the box using the GUI. It has always required I do the "pre prep" and unfortunately often some post prep work. On Windows wow is Oracle is easy to install, uninstall is really hard however.

    43. Re:New features? by jedidiah · · Score: 1

      > mysqldump? But what you are doing, i.e backup of the database files directly, is a very dangerous form of backup.

      mysqldump you must be joking. That is kiddie stuff.

      Oracle has been able to do online hot backups of individual datafiles since at least version 7 in the 90s. Hot backups and point and time recovery for serious relational databases has been the bare minimum acceptable standard since before anyone ever heard of mysql.

      Comments like yours is why people get the impression that mysql isn't ready for serious work.

      Oracle has had robust features in many of the categories mentioned by this advertisement for a very long time. It is a stupid ad.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    44. Re:New features? by jedidiah · · Score: 1

      >> mysqldump? But what you are doing, i.e backup of the database files directly, is a very dangerous form of backup. Restoring such when the database has been corrupted for whatever reason
      >
      > Actually no, it is not dangerous provided that you use a backup agent or an operating system that supports this. Windows does, Linux and Unix do not.

      Lemming propaganda nonsense.

      The database ensures integrity. It does this with things like transaction logging and transaction isolation. It doesn't require any special "Windows only" technology. It's just a feature of a robust database engine.

      Database recovery is a feature of the database, not of the filesystem.

      "fraction of a second" is still too slow for an Enterprise database. Query response times for a real database is simply not measured in seconds.

      Stupid amateurs!

      --
      A Pirate and a Puritan look the same on a balance sheet.
    45. Re:New features? by jedidiah · · Score: 0

      You just have an idiot Lemming here regurgitating Microsoft propaganda clearly with no clue what he's talking about.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    46. Re:New features? by bad-badtz-maru · · Score: 1

      Based on what you are saying, Oracle is essentially a niche product for huge data consumers. Why is it so aggressively marketed to businesses of nearly any size? They buy in and then the administration expenses, coupled with licensing, eat their lunch. Oracle's sales are marketing-driven, that's why we see it in so many businesses.

    47. Re:New features? by Anonymous Coward · · Score: 0

      <counterpedant>

      The product's name is not "MS SQL Server". It's just "SQL Server", usually followed by a version differentiator. It is made by Microsoft. Other SQL servers (lowercase "s") are not SQL Server (uppercase "S"). Though in most cases, it's prudent to include the version differentiator along with the name, since there are some drastically different capabilities from version to version.

      Use language to do what it was designed to do. A proper name has capital letters for a reason, and names are different from bylines.

      </counterpedant>

    48. Re:New features? by jedidiah · · Score: 1

      That only goes so far. Any application needs to be able to shoot the user in the foot. Otherwise it's not powerful enough to do anything useful.

      You may not be able to drop a table but you certainly can wipe it.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    49. Re:New features? by Anonymous Coward · · Score: 0

      SQL Server clusters require more than two days to set up, and they do include a free (bonus!) desire to not only stick a gun in your mouth, but also to pull the trigger. Trust me. They suck just as much as Oracle.

      That said, a single-server setup makes SQL Server a clear winner. That can be done and brought online within a couple of hours, complete with migration, replication, and a maintenance plan. From "your fresh Windows server is ready for you" to "your application is online and working" is no more than a couple of hours unless the DBA or the developer (either one or both) is terrible at their job.

    50. Re:New features? by jedidiah · · Score: 1

      Installing a trivial Oracle database is not the chore it used to be. It's not 1997 anymore. You can get an Oracle database up and running pretty easy. You can even do things with it without needing to be a guru.

      Once you get past that point, things get interesting fast.

      Although that's true for other products as well. Microsoft likes to sell the idea that a trained monkey can manage a serious RDBMS but it's simply not the case.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    51. Re:New features? by Anonymous Coward · · Score: 1

      VSS may provide file consistency, but how does it provide database consistency ?

      The VSS writer role defines a protocol (a COM interface) which the database vendor implements. The point is that it is an OS defined infrastructure. The protocol defines how the os interacts with the vss writer to coordinate when the vss writer (ie Oracle) ensures file consistency.

      Obviously it requires the application to be written to support the vs writer role. But once that is done, the os can ensure cnsistency also cross different apps, ie database files, file system storage, message queue storage etc.

    52. Re:New features? by jbo5112 · · Score: 1

      Off the top of my head: Hadoop, HBase, PHP, jQuery, JAVA, the Linux Kernel (e.g. make menuconfig), and MySQL all have better documentation than Oracle. I have trouble thinking of something that slashdot readers would know about with worse documentation.

      No one but Oracle writes documentation in numbered pages anymore. It's a horrible format for getting around data in this newfangled age of hypertext links, which Oracle uses painfully sparingly. Their docs are extremely wordy, not extremely detailed. The details are disorganized and horribly lacking (e.g. set some variable to some value, with no explanation of how or what it's affecting). If you're so sure of the level of detail, then show me the guide on deciphering ORA-0600 errors without going through paid support (who always asked for tons of info, then started by telling me to recover from a backup and see if that fails). While installing from the Oracle guides does work, installing a single-node HBase server in 2010 was easier (and ran not just circles, but knitted-doilies around Oracle in terms of performance).

    53. Re:New features? by Nelson · · Score: 1

      HBase and Hadoop is a very interesting option for certain kinds of data. It becomes more and more interesting as you add more and more machines too...

      I have no idea how the data is structured or how it is queried and worked with but HBase may be a very interesting option. Once you dork around with the configs a bit and get it booted up, it's insanely easy to scale it.

    54. Re: New features? by Anonymous Coward · · Score: 0

      Sadly, in the continuing workspace of legacy data and applications, forced upgrades that give you the options of only SQL Server or Oracle, it's a simple decision given the existing Linux servers. Only caveat is the steep learning curve of implementation, but that comes with the territory.

      Instill find it amusing that there are known undocumented workarounds for certain Oracle DB 'tricks'. Maybe that has changed in the last year or 2, but to here Oracle support say it directly, is well, a bit insane.

    55. Re:New features? by Anonymous Coward · · Score: 0

      Windows does, Linux and Unix do not.

      Linux supports copy-on-write (perfect point in time) snapshots. Simply put your DB on a LVM volume and you can take a "crash consistent" snapshot of the entire DB at any time.

      Unix of course varies a lot, but Solaris which is a Unix variant has ZFS which can easily do the same.

    56. Re:New features? by Anonymous Coward · · Score: 0

      If you can legitimately claim you see no need for "full time Oracle support guys," then it's evident that you've never worked in a large company where there are literally hundreds or thousands of database instances hosting petabytes of data.

      Since you cannot imagine a scenario where this might happen, we can assume that you have limited intellect, and very narrow vision, and thus your input and opinions may be disregarded as the rantings of an idiot.

      Gaylord.

    57. Re:New features? by Anonymous Coward · · Score: 0

      Please don't indulge the Oracle salesman.

      If he really can't find projects with better documentation, then he either lives
      on a different Internet or he is selling us the Larry's manifesto.

      He obviously never met PostgreSQL and its 100x better docs.

      Many things can be argued about Oracle's software quality, none
      about its documentation. It sucked, sucks and will suck donkey ass.

    58. Re:New features? by greg1104 · · Score: 1

      Recovery is also awesome. "ALTER DATABASE RECOVER UNTIL [timestamp]", "ALTER DATABASE RECOVERY UNTIL CANCEL", "ALTER DATABASE UNTIL CHANGE [transaction number]" and so on.

      PostgreSQL has had this sort of feature for a few years now, see recovery target. The main thing Oracle is better at is giving a simpler UI to this work. This sort of ALTER DATABASE interface is easier to use than the config file approach Postgres uses. Similarly, Oracle Flashback is a slicker interface to look at old data than you get out of the box with Postgres, but the same under the hood look is possible in both databases.

      The differences in the backup/recovery area are pretty small now though, especially now that UI clones such as pgbarman are available. The last time I wanted a better UI to part of this that wasn't in any of the available free tools yet, I paid a few thousand dollars to the pgbarman developers and they added it for me. Companies who are willing to spend some money on licensed software really should consider what spending the same amount on improving PostgreSQL would get them.

    59. Re:New features? by Anonymous Coward · · Score: 0

      Why is the on-disk state of your database *ever* inconsistent? Any sane database ensures that persistent stores transition atomically from one consistent state to another.

      Or why is your store snapshot not atomic? Atomic snapshots have been available in many flavors of UNIX for a long time -- LVM snapshotting has been part of linux since the 2.2 days, and BSD has supported various UFS snapshotting even longer.

      Given the above two conditions there's no need for coordination between the database (or any other program) and the backup service. But hey, why let facts stop your bashing?

    60. Re:New features? by greg1104 · · Score: 1

      Marketing will try to sell things to anyone that will buy them. The only companies who can easily demonstrate a real need for Oracle are larger installations. My job involves getting a lower total cost of ownership out of PostgreSQL for the sizes it can handle, rough practical limit is around 5TB right now, and that's easy to pull off in most cases. For a fraction of what an Oracle license costs, you can get support from a company that does source code level contributor to one of the open-source databases. And since you're not dependent on the company itself for help, you can take on as much of the administrator work as you'd like. There are so many horror stories about companies getting giant monstrosities built because they got Oracle consultants involved in a project. They love using the fancy features because it gives job security and your license costs go up.

      Oracle's marketing is starting to dip into FUD mode now about just how viable the open-source alternatives are to them. It's pretty funny to watch that coming out of one end, while they continue buying those very companies with the other. The main thing Oracle has going for it is that while good people are expensive, there are a lot of them out there. It is pretty hard to hire a good PostgreSQL DBA right now.

    61. Re:New features? by Anonymous Coward · · Score: 0

      Lemming propaganda nonsense.

      The database ensures integrity. It does this with things like transaction logging and transaction isolation. It doesn't require any special "Windows only" technology. It's just a feature of a robust database engine.

      Database recovery is a feature of the database, not of the filesystem.

      You need to learn the difference between recoverability and consistency. If you do a simple backup of the database files of a running system, you may have *recoverability*. But if you ever restore those files, the database system will see them as files from a crashed system and start recovering from that by replaying the log from a known consistent point. To have *consistency* you typically either shut Down the database system or use a dump feature of the database system. The former affects avaikability. The latter typically duplicates the database.

      If you could do a file level backup of a *running* system that is not only recoverable but *consistent* so that if ever restored the db system will not need to go through a recovery phase, that is clearly preferable. That is what Volume Shadow Copy Service is for.

      Oracle has always supported VSS.

      BTW, real mature name calling there. With that low ID did you buy it from someone else?

    62. Re:New features? by Aaden42 · · Score: 1

      Which makes me wonder how close "Excel" and "PowerPoint" are to falling out of trademark protection à la Kleenex or Aspirin? I can't remember the last time someone using OpenOffice referred to their slide deck as an "Impress" or honestly even from the Mac camp anyone who used "Keynote" by name. Seems like the MS terms are genericized to the point where trademark protection may be in peril.

    63. Re:New features? by war4peace · · Score: 1

      Define "huge data consumers".
      There are small (in terms of employee size) companies which handle enormous amounts of data. Think a genome sequencing lab. It can have as little as 5 employees, but works with huge data and handles big sums of money. I can think of a few situations where a single person needs to handle very large datasets and handle enough money to justify an Oracle Database.

      --
      ...gis sdrawkcab (usually not responding to ACs; don't bother posting as AC)
    64. Re: New features? by war4peace · · Score: 1

      I wouldn't say they're "undocumented". Oracle DB documentation is literally HUGE. In general, Oracle products documentation is so large, it starts caving into itself, for example OBIEE full documentation is 11 GB of text files.
      That's a pretty big issue: the answer definitely is in the documentation (except for very rare, very customized implementations) but you can't really find it. However, crowdsourcing helps. In this regard, I rarely look at documentation but ask lots of questions in the OTN forums, and other people either answer or at least send me on the right path.

      --
      ...gis sdrawkcab (usually not responding to ACs; don't bother posting as AC)
    65. Re:New features? by webmistressrachel · · Score: 1

      It may be simple, but it works, and I can take my SQL (pardon the pun) anywhere from there.

      Don't underestimate simple, reliable data formats and methods. Look where all this commercially-driven proprietary crap, and the attitudes that have come with it which now prevail in other industries, I.e. software patents, waste, the environment is taking us...

      --
      This tagline was transcoded to result in at least one smirk. If you experience failure to smirk, please consult your Gen
    66. Re:New features? by Anonymous Coward · · Score: 0

      I see you're a dedicated full-time Oracle support guy. I don't know of a lot of other products that require a full-time support person to do (conceptually) simple stuff. My biggest complaint about Oracle has always been that to even take it out of the box and install it required guru-level Oracle knowledge, much less keeping it running well. I absolutely hate all things Microsoft, but at least you can install Squeel Server and set up backups without two days effort and an overwhelming desire to stick a gun in your mouth.

      I'm just a mere software developer, and I can install it. Yes, you do have to read a bit, and learn a bit; but, that's what I had to do to use MS SQL Server, Postgresql, and MySQL too. Can't be bothered to read the manual? Then don't play with the toys.

    67. Re:New features? by F.Ultra · · Score: 1

      Yes, but I'm talking about the corner cases where the SQL Server has completely trashed the database files due to some bug in the SQL Server, if you then have the dump as a number of INSERT statements in a text file you have a much higher chance of recovering the data, or atleast partial amounts of it.

      And yes I write this because I have seen MS SQL Server corrupt datafiles in this way before.

    68. Re:New features? by F.Ultra · · Score: 2

      Of course unless you use only InnoDB (which everyone does since it's the default for some years now) and use --single-transaction to do the dump via a transaction istead of locking the tables.

    69. Re:New features? by F.Ultra · · Score: 1

      So you believe that only the filesystem can corrupt the datafiles, I sense that you have never encountered that nice feeling when the MS SQL Server have corrupted the binary files so that restore is simply ignored due to "corrupt database". VSS won't rescue you there.

    70. Re: New features? by Anonymous Coward · · Score: 0

      But saying "uppercase s uppercase q uppercase l server" is such a pain.

    71. Re:New features? by Gwala · · Score: 1

      --single-transaction is one of the 'tricks around this' - but it blows out the production databases memory use if the table is updated while the export is occurring. (e.g.someone does an update all for some insane reason)

      --
      #!/bin/csh cat $0
  4. Slashvertisement alert by Anonymous Coward · · Score: 1

    Wow. What a blatant advertisement. Slashdot has really sunk.

  5. Nothing about price? by Njovich · · Score: 5, Funny

    Wait what. He wrote a review about Oracle, gave an 8 for value, and didn't mention pricing? Is this some kind of shill or such?

    Even for a shill I would at least expect a line like
    'Yes, a license for a normal octocore setup costs more than your home, but...'
    or 'After going through the 2 hour cost calculation matrix, the resulting price seemed a tad steep, but'

    1. Re:Nothing about price? by roman_mir · · Score: 1

      'Yes, a license for a normal octocore setup costs more than your home, but...'
      or 'After going through the 2 hour cost calculation matrix, the resulting price seemed a tad steep, but'

      but, but... but you don't realise, look at the title of TFA, it says: Finally, a true cloud database.

      Do you understand that? They finally have managed to install their database on an actual freaking CLOUD! How cool is that? I imagine it's pretty cool, maybe -50 Centigrade or so.

    2. Re:Nothing about price? by jimshatt · · Score: 5, Funny

      A true clown database. Clown storage and clown computing is all the rage these days.

    3. Re:Nothing about price? by F.Ultra · · Score: 2

      Yeah but is it web scale?

    4. Re:Nothing about price? by Anonymous Coward · · Score: 2, Informative

      Price is pretty much the same - $25K per core for basic, $50K per core for enterprise, $75K for RAC. Things like containers are extra, so figure a typical 8 core at being only $.5M license (14% annual maintenance). Around here, that only buys a small house.

    5. Re:Nothing about price? by Anonymous Coward · · Score: 0

      'Yes, a license for a normal octocore setup costs more than your home, but...'
      or 'After going through the 2 hour cost calculation matrix, the resulting price seemed a tad steep, but'

      but, but... but you don't realise, look at the title of TFA, it says: Finally, a true cloud database.

      Do you understand that? They finally have managed to install their database on an actual freaking CLOUD! How cool is that? I imagine it's pretty cool, maybe -50 Centigrade or so.

      Weather summary: Shitstorm
      Chance of rain fucking up your data center: 100%

    6. Re:Nothing about price? by Mitchell314 · · Score: 1

      Yes, it works quite well with both spiders and silkworms. Though keep in mind that most arachnids and insects do not perform well uninsulated in the cloud layer due to the abnormal temperatures, turbulence, and humidity. To get the best query throughput, keep your servers and invertebrates in a controlled, pressurized environment.

      --
      I read TFA and all I got was this lousy cookie
    7. Re:Nothing about price? by jbolden · · Score: 1

      That is kinda weird since DB2 has now used pricing as a strategy, "buy our hardware (Netezza) and get your DB2 licenses included". Which means AFAIK Oracle is now the most expensive product per CPU.

      In terms of value... Oracle saves people a lot of money on hardware and telco at the high end. There just isn't any easy way to do a value computation because their just aren't the right kinds of competitors.

    8. Re:Nothing about price? by Anonymous Coward · · Score: 0

      Do spiders and silkworms support sharding?

    9. Re:Nothing about price? by Anonymous Coward · · Score: 0

      Im an Oracle DBA with 15 years behind me. Im an OCP as well (for what thats worth these days...).

      Oracle is not expensive. Not for what you get. The problem is that licensing and options are poorly understood. Business's install the Enterprise edition when they dont need it. They use partitioning and DG when they dont need it.

      And there is the hardware choice. Oracle applies a 1, a 0.5, or a 0.25 multiplier depending on your OS choice. In other words - it's going to cost you more to run the same edition of Oracle on a windows box than it would if you stuck OEL on it - same hardware. It's gets a little more complex with Solaris SPARC [and Oracle will seek to push this harder and harder over the next few years with it's promise of embedded database code on the chipsets]. And remember - the prices are negotiable.

      Oracle is licensed by CORE. Not by CPU. You can use this to your advantage.

      It's all in the documentation:@ http://docs.oracle.com/cd/E11882_01/license.112/e10594.pdf

      Anyway - thats me done. I know as a corporation that Oracle salesmen are asshats. But only if you let them be.

    10. Re:Nothing about price? by hibiki_r · · Score: 1

      I guess that they are not expensive for what you get in the same way that a fighter jet is not expensive for what you get. Most people should just not buy one at all.

      It's amazing how many companies are there paying an arm and a leg for Oracle installs when the same work would work just fine in Postgres for $0.

    11. Re:Nothing about price? by denvergeek · · Score: 1

      I bet the compression is pretty good

    12. Re:Nothing about price? by SuiteSisterMary · · Score: 1

      It's not as fast as /dev/null. Does /dev/null support sharding yet?

      --
      Vintage computer games and RPG books available. Email me if you're interested.
    13. Re:Nothing about price? by Bill+Dimm · · Score: 4, Funny

      Yeah but is it web scale?

      For those that don't know the joke, it is here.

    14. Re:Nothing about price? by Anonymous Coward · · Score: 0

      Only for mobile platforms.

    15. Re:Nothing about price? by roman_mir · · Score: 1

      But it only works if you pay premium for special large clown shoes, without those the thing tips over all the time (and that's how it got that clown nose, kept hitting the darn thing against the pavement).

    16. Re:Nothing about price? by Anonymous Coward · · Score: 3, Informative

      My old workplace (post anonymously to protect them) had a bit of fun with that. We had our main production machine licensed for Enterprise, but another machine licensed for Standard. Oracle decides to do an audit - I was working at a state agency, and they decided to audit the entire state government. We ran the scripts they sent us and sent back the output, believing that we'd done everything correctly.

      As it turned out, at some point, one of our DBAs had run the Oracle database tuner against the machine that was running the Standard version. You're not allowed to do that. Oracle said that we would have to upgrade the server running Standard to Enterprise, and back-license it for the previous five or six years - the time since we'd installed Oracle on that server. That was a significant chunk of money - it's been a few years now, but I believe it was in the neighborhood of $200K (after Oracle's offer of their usual incredibly steep 'discount' Hypothetically, we owed them over a million, at the list prices that no one actually pays). Certainly the state could afford it, but it was an unbudgeted expense, and someone would likely wind up on the chopping block for it.

      We dug deeper. We created a new database on the server running Standard, then tried to connect to it with the tuning application (which you install elsewhere, on a server running Oracle's management tools, not on the database server itself). We discovered that it did not give any warning that you are connecting to a server running Standard. Checking into the logs from Oracle's audit scripts, we also discovered that the tuner had been used against that server exactly once.

      So we talked to Oracle. We told them that one of our DBAs had innocently run the tuner against one database on there, once. We'd identified which DBA it was and given her additional training so that it would not happen again, and added to our procedures to let any future additions to the DBA staff know that they should not assume that the tool would let them know if it wasn't okay to use it on a particular database. We told them there was no malicious intent, and it was a simply mistake. We also mentioned to them the fact that their own tool didn't indicate anything about it not being allowed, and that they might want to fix that, since it would be simple for the tool to determine it.

      Their reply was essentially, "You touched it, you bought it. Pay up."

      We got our legal department involved, explaining the situation to them. One of our attorneys wrote a rather fun letter to Oracle, using the phrase "minefield marketing" - meaning basically that Oracle appeared to have deliberately set things up so that it would be likely for someone to accidentally do something they weren't supposed to, in order to make money by doing audits and then threatening people who made honest mistakes in order to get extra money.

      Again, their reply was simply, "You touched it, you bought it. Pay up."

      We offered as a compromise to pay them one year's licensing for the Enterprise version for that server, since there had only been the one incident. They replied that they would not accept that. License it all the way back (including a couple of years before the activity outside the license ever happened), or they would take us to court.

      Our legal department replied, "Okay. Take us to court, then. We'll have some very interesting things to tell a judge and jury about how your software is set up to entrap unwary users."

      I don't know what happened from there, since that's about the time that I left the company. The last I talked to anyone about it, about a year ago, it was just their lawyers and Oracle's lawyers talking, and the people in IT were being kept in the dark about it.

      Still, though, I found Oracle's attitude toward a company that had been a loyal customer for more than twenty years to be very hard to understand. We'd literally paid them somewhere in the neighborhood of $40-50 million in that time... but they w

    17. Re:Nothing about price? by jedidiah · · Score: 1

      ...or you can spend $500 on Oracle instead.

      You don't have to buy the gold-plated-ultra edition if you don't really need it.

      --
      A Pirate and a Puritan look the same on a balance sheet.
  6. Meta-review by Anonymous Coward · · Score: 0

    I wouldn't call this a review so much as an annotated version of a changelog. To me, the word review implies some level of critical analysis, but this article just describes what Oracle intended to achieve without examining how well the changes work. To the article's credit, it does at least briefly mention the techniques being used, but it would be a more effective advertisement if it included actual numbers rather than just gushing praise when describing improved query optimization and availability.

  7. If you have to ask, you can't afford it by RLiegh · · Score: 0

    maybe they have some sort of hobbyest program, like mysql or something?

    1. Re:If you have to ask, you can't afford it by ReallyEvilCanine · · Score: 4, Informative

      It's free for personal use (edelivery.oracle.com) just like all Oracle software. You only need paid licenses and support for commercial use. For that you need a lot of money.

    2. Re:If you have to ask, you can't afford it by Anonymous Coward · · Score: 0

      For commercial use, as an independent developer, the Personal licenses still only cost around $200/year.

    3. Re:If you have to ask, you can't afford it by L4t3r4lu5 · · Score: 3, Insightful

      Nobody, not one single person is using Oracle databases in a personal capacity. It is always in connection with business. Therefore, I expect there to be a mention of pricing.

      --
      Finally had enough. Come see us over at https://soylentnews.org/
    4. Re:If you have to ask, you can't afford it by ledow · · Score: 1

      So if you're one guy who needs a database for himself that he doesn't need to expose to clients at all, it's only $200 a year.

      Sorry, but I can't imagine they have much take-up of that at all, except for testing / experiments / copyright infringement.

    5. Re:If you have to ask, you can't afford it by Vanderhoth · · Score: 4, Informative

      No, it's $200/year for a personal licence if you're going to use it commercially. If you're just creating a DB to categorize the porn on your PC and don't ever plan on making money or exposing it in a commercial sense it's free to use.

    6. Re:If you have to ask, you can't afford it by ReallyEvilCanine · · Score: 1
      Sorry? Because you doubt the T&Cs right there on the site? As for the last line, you're not terribly imaginative, are you? The free access means anyone who wants to learn how to use any of Oracle's products to, say, get a job, can do so for free.

      Any company considering systems (Oracle sells hardware, OS, database, back end, middleware and front end) doesn't have to pay first and hope later. Developers can and do build full turnkey solutions at zero speculation cost. Try that with DB2 or MS Foxbase Pro. Try it with SAP (for that manner, try getting SAP to run on Flash.free Apple). Can you imagine it now? This is the same thing as Apple, Microsoft, Adobe, Autodesk and the rest giving freebies to schools and deep-discounting for students.

    7. Re:If you have to ask, you can't afford it by Vanderhoth · · Score: 2

      Oracle uses a tiered system for licensing and the prices are usually depended on what features you need for your business. I've installed and use Oracle DB for personal use. It was mostly a training excise, but I use it to keep track of my beer brewing recipes, cost of supplies, quality checks, temperature, specific gravity, alcohol by volume, taste, etc... I could have used MySQL, but I wanted to learn and practice with Oracle because that's the industry standard for large database applications.

      I'm not a shill promoting Oracle, MySQL and SQLServer are all great products. I haven't used MariaDB yet, but I like to play around with the technologies. Oracle is a great product if you have a need for large database applications. It's management are still a bunch of asshats; it sucks that business people get in the way of and ruin great technologies.

    8. Re:If you have to ask, you can't afford it by FictionPimp · · Score: 1

      In education they like to send you a quote for a unreasonable amount of money with stupid discounts.

      I think our quote was a few million for the license with 98.5% discount.

    9. Re:If you have to ask, you can't afford it by Anonymous Coward · · Score: 0

      Has anyone ever used Oracle's database (Oracle, not MySQL) for personal use, except as a trial for commercial use?

      It's like saying you have a wrecking ball that's free for personal use. I guess it's neat but who would ever use such a thing? It's inherently a tool for a different kind of project. For any personal use I can think of, there are perfectly good sledgehammers that are far easier to use.

    10. Re:If you have to ask, you can't afford it by fatp · · Score: 1

      No, it's not free for personal use. It's free for single person development / prototype use.

      There is a personal edition for production use, pricing at USD460 + around 20% per year for support.

    11. Re:If you have to ask, you can't afford it by Anonymous Coward · · Score: 1

      I am.... I have a 2 node RAC cluster running at home for fun. Only 1 app using right now, but it is for personal use.

    12. Re:If you have to ask, you can't afford it by tjwhaynes · · Score: 1

      Developers can and do build full turnkey solutions at zero speculation cost. Try that with DB2 or MS Foxbase Pro.

      DB2 Express is free, to allow developers to experiment and build up solutions with zero cost. Last time I looked, it was also the most deployed commercial database solution in the Amazon EC2 cloud. From there, it's up to you whether you want to head down the High Availability routes via HADR or pureScale, or the shared-nothing infrastructure of DPF. Or stay with Express if it meets your needs.

      P.S. Standard disclaimer: I work for IBM

      --
      Anything I post is strictly my own thoughts and doesn't necessarily have anything to do with the opinions of IBM.
    13. Re:If you have to ask, you can't afford it by L4t3r4lu5 · · Score: 1

      I could have used MySQL, but I wanted to learn and practice with Oracle because that's the industry standard for large database applications.

      QED.

      --
      Finally had enough. Come see us over at https://soylentnews.org/
  8. You lost me at RAC by Anonymous Coward · · Score: 0

    RAC is not the end all be all of database scalability and availability. :)

  9. Really? by Viol8 · · Score: 1

    Well good luck getting MySQL or MariaDB to run 24/7 on a multi terrabyte database with 99.999% uptime including doing backups.

    1. Re:Really? by Anonymous Coward · · Score: 1

      A "terrabyte"? Is that a byte the size of the earth? So, Marvin's brain is 1 terrabyte? Hmm. Makes sense.

    2. Re:Really? by Nerdfest · · Score: 0

      Actually, you'll have a lot of trouble doing that with Oracle.

    3. Re:Really? by Anonymous Coward · · Score: 0

      You could try the new Oracle Soil, featuring TerraForming Enterprise, which takes cares of al your terrabytes

    4. Re:Really? by Viol8 · · Score: 1

      We managed it. Get yourself some new DBAs.

    5. Re:Really? by drummerboybac · · Score: 1

      Good luck getting Oracle to do the same on a 500TB database.

    6. Re:Really? by Anonymous Coward · · Score: 0

      Well, it seems like Oracle was written by people who still soil their pants regularly. So Oracle Soil isn't new at all.

    7. Re: Really? by Anonymous Coward · · Score: 0

      Facebook does that

    8. Re: Really? by Anonymous Coward · · Score: 0

      This guy butters his bread with his oracle knowledge. Don't expect him to have an unbiased position here.

    9. Re:Really? by Anonymous Coward · · Score: 0

      ditto we do it as well on Oracle

    10. Re:Really? by jbo5112 · · Score: 1

      Thanks, I already have a multi-terabyte MySQL install with better uptime than Oracle than the last Oracle cluster I dealt with.

      Facebook scales each node to multi-terabyte, and runs so many database servers that it would probably be cheaper to buy the company that licensing (~2 million cpu licenses aren't cheap). A year ago, Facebook was dealing with 2.5 billion content items shared, 2.7 billion likes, and 500+ TB new data ingested every day on their primary database (estimate about 15% higher now). Something else to add: Facebook's workload is 90% read and quite interlinked.

    11. Re:Really? by Anonymous Coward · · Score: 0

      How many examples do you want... And let's raise the bar, not only multi, 100's of terabytes.
      And without a full time DBA.
      You Oracle fanboys need to go out of your cocoon and see some world.

      Just answer, how is your Oracle multimaster multi read only cluster of 50 machines?

      Oh wait... You will need an army of Oracle consultants to do that.

    12. Re:Really? by Anonymous Coward · · Score: 0

      500+ TB new data ingested daily? I call BS on that. 500+ GB maybe.

    13. Re:Really? by Anonymous Coward · · Score: 1

      And that is true of other database software as well. If you are having uptime trouble, you can fix it by getting a good enough DBA who knows what they are doing, the question is just how hard is it find such a DBA. In my experience, you can end up getting a Oracle fanboy for a DBA, and all of a sudden the stability of non-Oracle databases goes to crap, and they blame it on the software. But then you get a MySQL or Postgres fanboy in, and the Oracle database starts degrading, while you have remarkable uptime on the other database.

    14. Re:Really? by abirdman · · Score: 1

      Ah, but the database is the soil. And it's Net Scale. And with Oracle, the price of your license depends on how much you intend to earn from said license. And they will audit you. And you will be forever version bound and platform bound and tied to one processor size, because to change any of those you need more licenses. Please read the license carefully, then Click here to install. And be sure to check out our special deal on the Ask search bar for your browser. Oh wait, we must update your java client. Click here to accept agreement, then click install. You may be required to restart your computer after installation. Java runs on 4 billion devices. Larry Ellison must pwns all!

      I don't know if Oracle is a state of mind or a social disease.

      --
      Everything I've ever learned the hard way was based on a statistically invalid sample.
    15. Re: Really? by Anonymous Coward · · Score: 0

      Know the tool, use the tool for the job.

      Know the technology, use the correct tool for the job.

      Like so many things, it's a choice.

    16. Re: Really? by Anonymous Coward · · Score: 1

      Need an army, because perhaps you've decided to use the tool the wrong way.

      Happens a lot when people chose the solution before defining the problem.

  10. Ah, terrabytes... by Anonymous Coward · · Score: 2, Funny

    ...this earthy smell, I do like it!

  11. smooth RAC cluster installation by close_wait · · Score: 1

    "smooth RAC cluster installation". That would make a pleasant change.

  12. Oh Goody! by Anonymous Coward · · Score: 0

    Another version the DBA's will rave about, take years to put in, be afraid to actually use to fail-over because it doesn't actually address failing over the application that runs on it, spend all their time and system resources pounding the shit out of the system for backups they are afraid to use because it takes to long to restore and in the end rely on the real SYSADMINS and SAN ADMINS for flash copies and snapshots and then ask us why the systems are running slow. Can't wait.

  13. Where's the Skip This Ad button? by Anonymous Coward · · Score: 0

    I just get 4 pages of advert.

    1. Re:Where's the Skip This Ad button? by jfdavis668 · · Score: 1

      Its right beside the dislike button.

  14. Bad link to VSS by benjymouse · · Score: 1

    The correct one:

    http://msdn.microsoft.com/en-us/library/windows/desktop/aa384649(v=vs.85).aspx

    For a list of in-box (Windows' own internal VSS writers that ensure disk consistency) see here: http://msdn.microsoft.com/en-us/library/windows/desktop/bb968827(v=vs.85).aspx

    Oracle is an external VSS writer. Has supported VSS for many years.

    --
    Reading slashdot one-liner: (irm http://rss.slashdot.org/Slashdot/slashdot).rdf.item | fl title,desc*
  15. Cloud ? Not so much. by Anonymous Coward · · Score: 0

    There is not so much cloud in the review, but marketing - a lot !
    It gives percentages and bombastic sentences about how good the new Oracle is. It looks like the whole review is not intended for an engineers.

    All in all, looks like a product intended to squeeze more money out of DB cash cow, with limited innovation.

  16. Think twice before using Oracle, then think again by JDG1980 · · Score: 4, Insightful

    99% of database users have no need at all to give money to One Rich Asshole Called Larry Ellison.

    Yes, there are a tiny handful of applications where Oracle outshines the alternatives. Yours probably isn't one of them. If you're running a small website, MySQL/MariaDB will almost certainly work just fine. (Or the free version of MS SQL Server, if you're developing in ASP.NET.) For larger applications, PostgreSQL can do the vast majority of what Oracle can do at no cost. If you're not working with absolutely massive datasets, and don't need the specific enterprise features the system offers, Oracle is probably a waste of your money.

    Too many companies throw their money away just because it's "standard", even though it really isn't – other databases are more widely used as well as being cheaper and easier to administer. Anyone who wants to buy Oracle should have to justify with clear and specific reasons (not just marketing buzzwords) why they need it and how the massive expense is going to benefit the company compared to the alternatives.

  17. Oracle also allows online restores by emil · · Score: 1

    The syntax is:

    alter database recover datafile '/path/to/restored/file.dat';

    alter datafile '/path/to/restored/file.dat' online;

    I used that on an Oracle 7 database about 2 months ago.

    1. Re:Oracle also allows online restores by fatp · · Score: 1

      You need to take the datafile offline first

  18. Specifically... by emil · · Score: 1

    A processor license for Oracle Enterprise database is $47,500.

    http://www.oracle.com/us/corporate/pricing/technology-price-list-070617.pdf

    Currently, this lets you run on a dual-core x86, or a single core RISC/Itanium. The SPARC Niagra line had some real discount wierdness, since they present 64 cores to the OS.

  19. from an Oracle DBA by Anonymous Coward · · Score: 0

    Ok that article was nice marketing fluff. When the new version comes out the community tends to pick it apart. There are a significant number of people who dig into various new features. Its hard to find the good articles buried under the 'copy and paste of the documentation' guys who pretend like they are doing stuff to get attention. The best place to go for this is the oracle-l@freelists.org listserv. The guys on there tend to pick this stuff apart and talk about what work sand what doesn't with details.

    BTW, as far as price. No one pays list price. Everyone gets a discount and pays a fraction of that price. Its not uncommon for smaller companies to literally pay 10% of the listed price (or less) since they want to make the sale. It is still expensive, but its not as expensive as you think. Also, I agree if your running a small website or something like that Oracle is a waste of money. If you know how to exploit the features for a large high end system its pretty robust. I'm not an evangelist and Larry doesn't pay so I won't say that Oracle is always the best choice. I am on a project now where we are using oracle for our core central DB and then an open source DB for downstream data stores. The open source DBs have significant limitations, but its in the 'good enough cause its free' category.

    I have never been hired to work on small to medium size systems. All the projects looking for Oracle DBAs are large high end systems. They make the vast bulk of their money off of these systems.

  20. Re:Think twice before using Oracle, then think aga by hyperfl0w · · Score: 1

    PostgreSQL can do the vast majority of what Oracle can do at no cost

    And PG year after year is much, MUCH easier to install,backup,and maintain.

  21. Re:Think twice before using Oracle, then think aga by Shados · · Score: 1

    People use Oracle because either they use something that depends on it (some other Oracle product, like their ERP, which has some value for certain high end segments of retail), or because they're extremely high end, where a support contract and the license cost is irrelevent compared to a very specific feature they need.

    Its niche, but its a big buck niche with enough customers to prevent Oracle from dying...

    Now there's all the medium sized companies that got suckered into using Oracle for no good reason. I feel for them.

  22. Re:Think twice before using Oracle, then think aga by Anonymous Coward · · Score: 0

    PostgreSQL can do the vast majority of what Oracle can do at no cost

    And PG year after year is much, MUCH easier to install,backup,and maintain.

    Not sure when you got your Oracle experience, but this certainly isn't the case now. Oracle install on Linux takes ~10 minutes, DB create ~10 minutes, and backup? Hot backups are as simple as typing the word 'backup'. Too difficult?

  23. Is that all it's worth? by donak · · Score: 1

    I read it as "Oracle Database : price 12 cents".
    You'd get two for a quarter and a penny change!

    --
    Don't blame me, it's usually 2 in the morning when I post ...