Slashdot Mirror


SAS Named Best Company To Work For In 2010

theodp writes "If you're in the market for a new job, Fortune has just published its list of 100 Best Companies to Work For in 2010. Topping the list this year is SAS (SAS jobs), the largest privately held software company, which Fortune notes is populated with more statisticians than engineers or MBAs, and led by a Ph.D. founder whose first love is programming. Google (jobs), which once viewed SAS as model for employee perks, took the #4 spot, and Microsoft (jobs) checked in at #51."

2 of 183 comments (clear)

  1. Re:What a joke... by Trepidity · · Score: 5, Informative

    According to this review:

    Pager duty is a major pain. Smaller teams can expect to be on-call at least one week per month, while larger teams spread out the pain longer. Getting paged in the middle of the night for a high-severity problem that take eight hours of investigation to fix is enough to drive many to quit.

    Sounds like they're trying to make routine (as opposed to rare, emergency) use of on-call engineers as a way of maintaining 24/7 staffing without actually paying for 24/7 staffing.

  2. Re:What a joke... by kd6ttl · · Score: 5, Informative

    The SAS data step language was originally modeled after PL/I. Some recent additions (for example, the "object-oriented" interface) appear to have been modeled after C or other more recently fashionable languages.

    If you are speaking of the data step language, it's not correct to say that "[m]ost of the functions automatically apply to a whole recordset at once"; that's a misunderstanding of the default data step iteration over records. Statements in the data step apply to one record at a time, going sequentially or in index order through the input - unless you've done something to make that not happen (which you can do - SAS is very flexible).

    In many ways, SAS follows the same principle of least surprise as Perl and some other languages.