Slashdot Mirror


Oracle To Invest In Sun Hardware, Cut Sun Staff

An anonymous reader writes "There's been much speculation as to what Oracle plans to do with Sun once the all-but-certain acquisition is complete. According to separate reports on InfoWorld, Oracle has disclosed plans to continue investing in Sun's multithreaded UltraSparc T family of processors, which are used in its Niagara servers, and the M series server family, based on the Sparc64 processors developed by Fujitsu. However, Larry Ellison has reportedly said that once the Sun acquisition is complete, Oracle will hire 2,000 new employees — more people than it expects to cut from the Sun workforce. Oracle will present its plans for Sun to the public Wednesday."

34 of 135 comments (clear)

  1. What about the software? by Anonymous Coward · · Score: 3, Interesting

    What about all of Sun's software? Solaris? Java? NetBeans? Their C, C++ and FORTRAN compilers? OpenOffice.org?

    1. Re:What about the software? by five18pm · · Score: 3, Informative

      Solaris, Java, NetBeans, OpenOffice.org, everything is staying according to Thomas Kurian and Ed Screven. Only thing I didn't hear about was OpenSolaris. There is also going to be an Oracle Cloud Office, online docs like Google Docs.

    2. Re:What about the software? by PCM2 · · Score: 4, Informative

      All of it was mentioned, with the exception of the C, C++, and Fortran compilers.

      • I don't remember specific plans for Solaris, other than that it will be the OS running a lot of the Oracle appliances they're talking about.
      • Various Java news. Integrating HotSpot with JRocket. Unifying the programming models/API for Java SE and Java ME. Java SE 7 will include support for multi-core and better support for multiple [non-Java] languages.
      • Netbeans goes forward as a "lightweight" dev environment, while JDeveloper is the "strategic" platform. Netbeans will get improved support for scripting, dynamic languages, and mobile.
      • OpenOffice.org will continue as a separate business unit. As with everything, Oracle is bragging that it plans to boost investment in it. They mentioned an Oracle Cloud Office based on OpenOffice.org, which aims to offer the same experience on the desktop, Web, and mobile (as Microsoft is talking about with Office 2010).

      Maybe someone else can fill in more details.

      --
      Breakfast served all day!
    3. Re:What about the software? by PCM2 · · Score: 2, Interesting

      Ellison re-iterated that it is not competitive, but complementary with Oracle. They plan to increase investment in the business. No specific announcements about development direction or how Oracle plans to package it (no mention of an "Unbreakable MySQL," for example).

      --
      Breakfast served all day!
    4. Re:What about the software? by Anonymous Coward · · Score: 2, Interesting

      http://blogs.sun.com/BestPerf/entry/free_compiler_wins_nehalem_race

    5. Re:What about the software? by TheRaven64 · · Score: 4, Interesting

      The most interesting thing about that was that the 'auto parallelization' code used 8 cores to get slightly more than 50% more performance than it got with one core. To be honest, I'm a bit surprised that it got any benefit. It's parallelizing loops which can only be done if the compiler can prove that there are no dependencies between loops (which means that it must be able to see all of the code that executes in the loop, including the bodies of called functions) and it will often result in slowdown because subsequent loop iterations will use data in the same cache line, so you get a lot of churn.

      Compiler performance is very important on the newer UltraSPARCs, like the T1 and T2, because they do not do out-of-order execution. That means that data dependencies between instructions can cause pipeline stalls (which, hopefully, won't be a problem because you've got another thread or seven waiting to run). The compiler needs to know the length of the pipeline and design the instruction stream with this in mind. It also needs to do things like space floating point operations for the T1, which has a much larger floating point latency than most other chips. Moving data between the floating point unit and an integer register (e.g. branch on a comparison between floating point values) takes several cycles, so it needs to be aware of this and shuffle the instructions accordingly.

      --
      I am TheRaven on Soylent News
    6. Re:What about the software? by David+Gerard · · Score: 2, Interesting

      The killer app for the Niagaras is Java, lots of Java. That's CPU-hungry but of course you can run a separate Java app (in the JVM) on each of your 96 threads. Makes a Niagara server well worth the money in our experience.

      --
      http://rocknerd.co.uk
  2. What Kind of 'Hiring?' by mpapet · · Score: 3, Insightful

    Sounds to me like he'll axe the long-time Sun employees, instill an environment of fear-based fealty and then replace workers.

    I also wonder if this wasn't part quid-pro-quo for getting the merger approved.

    I see green shoots!

    --
    http://www.maxineudall.com/2010/02/should-economists-be-sued-for-malpractice.html
    1. Re:What Kind of 'Hiring?' by Anonymous Coward · · Score: 5, Interesting

      As an Oracle employee, I can tell you "fear-based fealty" is not at all how Oracle works. They have a long history of acquisitions, and the strategy is always the same: Keep the best and brightest from the acquired company, and let everyone else go. Heck, they've bought entire companies before specifically so they could get their best engineers (virtual iron). They're practically obsessed with getting the best people, not the best bootlickers.

    2. Re:What Kind of 'Hiring?' by lawpoop · · Score: 3, Insightful

      How do they go about determining who the best people in a company are?

      --
      Computers are useless. They can only give you answers.
      -- Pablo Picasso
    3. Re:What Kind of 'Hiring?' by Anonymous Coward · · Score: 2, Informative

      Mod parent up, despite what outsider's think, there is no fear-mongering in Oracle developers. In fact, I can (and have) spoken outspokenly to very senior managers without being "afraid" - they didn't agree to what I said, but there were no repercussions because I said it. Apologies for posting AC, but I like my privacy - and this is personal information.

  3. Employee cuts by mu51c10rd · · Score: 4, Insightful

    However, Larry Ellison has reportedly said that once the Sun acquisition is complete, Oracle will hire 2,000 new employees — more people than it expects to cut from the Sun workforce.

    This is not right from the article. Oracle plans on hiring 2000 employees, but they plan on reducing Sun's headcount by more than that. Hope those Sun employees pick up jobs quick in this rough economy...

    From FTA:

    Ellison told The Wall Street Journal that Oracle plans to take on 2,000 new employees - but that it will reduce Sun's head count by a larger number.

    1. Re:Employee cuts by garyisabusyguy · · Score: 4, Insightful

      Hopefully Oracle will NOT hire the Sun server sales reps.

      They demanded that Sun push high end servers (with their high sales commissions) instead of x86-64 solutions and, IMHO, effectively killed the company

      --
      Wherever You Go, There You Are
    2. Re:Employee cuts by Courageous · · Score: 2, Informative

      That's not the only problem, believe me. Sun has trouble with pricing their x86 solutions. Dell so thoroughly kills them that the quiet cry of silence I've gotten from my Sun rep any time I've forwarded him a Dell quote in response to one of his has gotten to be pitiable. They have a long row to ho. I suspect that killing off the expensive cruft organization may be part of it.

  4. All I know about that is... by Third+Position · · Score: 3, Informative

    ...is that the shop I work in is replacing it's Sun, HPUX and AIX servers with Red Hat Linux clusters hand over fist. HP and IBM are making up the lost revenue selling us blade servers, which pretty much leaves Sun out in the cold, given that Sun hasn't really established themselves on commodity hardware. Sun's servers are great, of course, but I'm guessing that without a competitive commodity platform to get their foot in the door, they aren't going to be making most customers A list of vendors when they go shopping for high end hardware.

    --
    American Third Position
    Finally, a real choice!
    1. Re:All I know about that is... by QuantumRiff · · Score: 3, Funny

      Just how many blade servers do you have to buy to "make up the revenue" from one HPUX box?

      --

      What are we going to do tonight Brain?
  5. Trying to cut salaries? by ErichTheRed · · Score: 5, Informative

    I wonder what the motivation here is. Oracle isn't exactly known as a warm and fuzzy employer. Every time I've had to deal with Oracle products, it's painfully obvious that the people they have intentionally design their software to be difficult to support...and then they hire armies of low-skill consultants to "help" customers install their systems.

    (And yes, I understand enterprise-grade software is complex. However, needing someone to guide you through all the quirks in the products or documentation just to get a proof of concept going is sad. I think SAP may be the only worse company in this "doesn't work out of the box" category.)

    My guess? Larry is going to wipe out the current long-tenure Sun employees who know everything about Sun's products and replace them with low-skilled, low-salaried n00bs. My further guess would be that these employees would be in lower-wage countries as well.

    IBM has been doing stuff like this for a while, from what I've heard...including offering people permanent one-way transfers to India along with the appropriate salary cut. Every time one of these crazy schemes comes to light, I really wonder what I should do with the rest of my career...I have at least 30 years until I retire!!

    1. Re:Trying to cut salaries? by Angst+Badger · · Score: 4, Insightful

      Every time one of these crazy schemes comes to light, I really wonder what I should do with the rest of my career...I have at least 30 years until I retire!!

      So that would make you about 35, right? Well, take a look around you. How many technical coworkers do you see that are ten years older than you? How about twenty? And thirty years?

      There's age discrimination in every field, but being a 60-year-old programmer is only marginally more likely than being a 60-year-old stripper. You might get lucky and still have a job in this field in ten years if you're really, really good, but as hardly anyone has only one career these days, it might be a good idea to think seriously about what comes next.

      --
      Proud member of the Weirdo-American community.
    2. Re:Trying to cut salaries? by samkass · · Score: 2, Insightful

      So that would make you about 35, right? Well, take a look around you. How many technical coworkers do you see that are ten years older than you? How about twenty? And thirty years?

      There's age discrimination in every field, but being a 60-year-old programmer is only marginally more likely than being a 60-year-old stripper.

      While you may be correct, I don't think the current status quo is necessarily evidence of it. I'm 36, and am of one of the first generations where it was reasonable to have a microcomputer around the house as a small child. People 10, 20, 30 years older than me probably got their first computer at a much older age than me and probably don't have that much more experience than me. When I'm 60, I'll likely have decades more software experience than they do now.

      Of course, the younger kids might crush me in networking experience, since the WWW didn't exist until just about when I went to University.

      --
      E pluribus unum
    3. Re:Trying to cut salaries? by starfishsystems · · Score: 5, Insightful

      Having a home computer is only the most recent way that people have been able to gain access to computing resources.

      When I got started 38 years ago, what kids did was to demonstrate sufficient enthusiasm and talent to be granted access to a research computer somewhere. It was a serious privilege, but with it came contact with professionals - mathematicians, computer scientists, systems programmers, and electrical engineers - who very much knew what they were doing, and who actually had time to share their insights. These people were routinely tasked with writing things like kernels and schedulers and device drivers and compilers, and they could always use help with various lesser aspects of design and implementation.

      That's how I got started in the years before you were born. Then I earned my degree and learned the formal computer science to back up that practical experience. And you know what? It's all still completely relevant. I've lost count of the generations of technology and hype that have come and gone. That's all just surface appearance and deserving only of passing attention. The underlying principles haven't changed a bit, and they're as fascinating and challenging as ever.

      --
      Parity: What to do when the weekend comes.
    4. Re:Trying to cut salaries? by fhage · · Score: 5, Insightful

      So that would make you about 35, right? Well, take a look around you. How many technical coworkers do you see that are ten years older than you? How about twenty? And thirty years?

      There's age discrimination in every field, but being a 60-year-old programmer is only marginally more likely than being a 60-year-old stripper.

      While you may be correct, I don't think the current status quo is necessarily evidence of it. I'm 36, and am of one of the first generations where it was reasonable to have a microcomputer around the house as a small child. People 10, 20, 30 years older than me probably got their first computer at a much older age than me and probably don't have that much more experience than me. When I'm 60, I'll likely have decades more software experience than they do now.

      Of course, the younger kids might crush me in networking experience, since the WWW didn't exist until just about when I went to University.

      It's a myth that younger people are "better with computers and technology" because they had access to computers in their house as they grew up. I turned 50 this year and have been doing scientific programming for over 35 years. I started at 14 yrs old in '73, working on time share systems and wire wrapping PDP-11 backplanes. I've been on the Internet since '86 and kids almost always assume they have more "network" experience than I. Some of the recent CS college grads I've worked with can't program their way out of a paper bag without GUI UML tools an IDE and weeks of effort refactoring their work. Young kids take days to do things I'd have it done in several hours because I'd be using use the right tool for the job. 'Awk', 'sed' , bash, csh are still very useful for "fixing" data sets. 'perl', 'php' and 'python' are used for more complex tasks. Compiled languages and libraries are used when performance matters or complexity is high. We had 10+ yr experience software engineers who would spend weeks writing a Java app, when a one line 'dd' would do. They've never heard of 'dd', so they write their own buggy, hard coded program. This old guy was the first one to make use of AJAX and web apps in our 50+ engineering division. Companies should think about this, as they lay off us older guys so they can hire a new cheap, young kid within a month. I'm now doing low-level Linux driver and DSP work for a scientific instrument maker, trying to rescue them from the mess the Java programmer they hired to port their old C, C++ DOS code to XP. "interrupt latency jitter? what's that!?". How come I can't do 5k interrupts/sec on this PC?

      Right now, in many scientific fields, the new software being written have less features and run slower than they did 20 years ago. NCAR has spent over 5 years and many, many FTE's trying to replace a C application I wrote in 1991 with a Java version. This 19 year old C/C++ application is still being used quite extensively, even though it's been "replaced" several times with new the development efforts.

    5. Re:Trying to cut salaries? by turbidostato · · Score: 4, Insightful

      "It's a myth that younger people are "better with computers and technology""

      It doesn't make any difference as long as those hiring believe the myth.

    6. Re:Trying to cut salaries? by NormalVisual · · Score: 3, Insightful

      The underlying principles haven't changed a bit, and they're as fascinating and challenging as ever.

      I'll agree with that, but what *has* changed is the overriding desire to save a buck at most companies, along with a continuing loss of perceived value for the years of experience a senior person brings to the table. I've only got about 25 years of experience (20 of it professional), but even I am starting to run into the situation where experience just isn't considered something valuable anymore - "why should we pay you X thousands of dollars more than this kid right out of college? You both know C++, right?"

      --
      Please stand clear of the doors, por favor mantenganse alejado de las puertas
    7. Re:Trying to cut salaries? by DragonWriter · · Score: 2, Insightful

      I've only got about 25 years of experience (20 of it professional), but even I am starting to run into the situation where experience just isn't considered something valuable anymore - "why should we pay you X thousands of dollars more than this kid right out of college? You both know C++, right?"

      The question, though, is reasonable -- as long as they are willing to listen to an answer. Years of experience aren't valuable on their own, they are valuable to the extent that you've leveraged them to gain broader or deeper knowledge and skills that are themselves valuable in the position for which you are being considered (which its quite possible to fail to do much of while still accumulating years of experience -- I'm sure we've all met people who spend years basically marking time in a job, and manage to stay employed and even get promoted within an organization. Would you want a hiring organization to automatically see someone like that as more valuable than you if they happened to have more years of experience than you do?)

      OTOH, oftentimes the people hiring may have an excessively narrow view of the relevant skill sets for the job they are hiring for, or be subject to short-term pressures that lead them to overvalue saving personnel costs and undervalue talent.

  6. Leave those stellar objects alone by (ana!)a · · Score: 4, Funny

    I can't believe what's happening, first ax the moon, now cut the sun, not to mention this thing about mars' spirit being stuck. What the hell is going on with our solar system ?

    --
    IANWYTIA (I Am Not Who You Think I Am)
  7. Re:Bye bye, SunOS by Anonymous Coward · · Score: 2, Insightful

    Haven't been listening to anything, have you? Ellison (and the other Oracle people) keep talking about Solaris being the Best High End Unix out there and running the most Oracle instances, so they're putting *more* investment into Solaris.

  8. Re:Bye bye, SunOS by yttrstein · · Score: 3, Insightful

    I've been through fifteen buyouts in my career, big and small. I know therefore that absolutely nothing that anyone involved with this purchase should be taken as truth.

    They're likely, based on my experience with all manner of corporate buyout, going to replace the old Solaris silverbacks with their own people, sooner rather than later.

    Are you old enough to remember the Compaq/DEC buyout? Digital Unix will continue, they said. It's DEC's best product, they said. And it did, kind of, when it got its name changed to Tru64.

    Then they ignored it until it pretty much died. Oh, it's still around and will be supported until 2012, so HP says. Then the lights get shut off and that's the end of it.

    When was the last time you actually saw a Tru64 machine?

  9. Re:2000 new hires by __aaclcg7560 · · Score: 2, Funny

    Seriously, dude, I wouldn't want to hire any outdated support consultants from 1998. :P

  10. This happens alot by Stregano · · Score: 2, Insightful

    Whether we like it or not, it happens. Fire the people making a bunch of money and hire younger people or outsource to cut costs.

    I guess I am new to this industry, but I have seen this multiple times. I always thought making more money had to do with delivering good products on a good time, and not firing people to make up the difference. I guess I am still new since I think that idea is messed up.

    --
    The world is how you make it
  11. Investment Opportunity by twmcneil · · Score: 2, Funny

    Go short in where ever My Little Pony ends up next.

    --
    "The ferrets, they're every where I tell you!"
  12. Re:Maybe now's the time to switch... by williamhb · · Score: 3, Insightful

    To Free/Open alternatives. GCJ anyone?

    But given that Sun has already GPL'ed Java -- see OpenJDK -- you'd be wasting your time.

  13. Re:Bye bye, SunOS by TheRaven64 · · Score: 2, Insightful

    Tru64 was killed because HP bought Compaq, and it competed with HP-UX. Compaq didn't already have their own UNIX, but HP did. They took the bits of Tru64 that they liked, incorporated them into HP-UX, and started pushing their customers to migrate to HP-UX.

    The really depressing thing is that, a couple of years ago, I was talking to someone who did OS research at HP and she'd never heard of VMS...

    --
    I am TheRaven on Soylent News
  14. I don't know about this... by Bill,+Shooter+of+Bul · · Score: 2, Funny

    Doesn't investing in SPARC processors, at this point, sound a bit ... RISC-y?

    --
    Well.. maybe. Or Maybe not. But Definitely not sort of.
  15. Database machines by tomhath · · Score: 3, Insightful

    The direction seems pretty clear: If you want an Oracle database, you buy the entire stack in one place - proprietary hardware, compilers, operating system, DBMS. That's the product they will sell.

    The rest of Sun will likely disappear within a couple of years