Slashdot Mirror


MSSQL 2005 Finally Released

mnovotny writes "Computerworld reports that Microsoft is finally set to release their belated SQL Server 2005. From the article: 'Despite a two-year delay, several users who have tested the software cited the improved performance and new functionality it brings as positive developments that likely will convince them to upgrade soon.' The free version can be downloaded directly from Microsoft."

21 of 318 comments (clear)

  1. Before you release the hounds by jellomizer · · Score: 5, Insightful

    Before the Anti-Microsoft redirect gets out. Please take into accounts. Most People who choose MS SQL Server already have a windows network, Oracle is to expensive for their needs, MySQL 5 just was released with most of the functionality that was in MS SQL 2000, Not many good tools for PostGreSQL, Easier to integrate with .NET, and gives PHB the warm and fuzzies. I have been working with MS SQL 2000 and I must say I was surprising pleased with it, other then the POS that is called DTS, I never had any problems with SQL server, with it crashing or problems handling a lot of data, or configuring security. My only Fear with MS SQL 2005 is that it will break so much compatibility that we well need to redo a lot of stored procedures and all our working around for DTS.
    MS SQL Server Yes it is closed sources, I don't know what type of security holes they will find in it, It is defiantly bloated because it will not fit 5 1/2 single density floppy disk with enough rooms for a 2000 record table. If you already have MS SQL 2000 and in a year or so you need to upgrade it will probably be easer to go to 2005 them migrating to the others.

    --
    If something is so important that you feel the need to post it on the internet... It probably isn't that important.
    1. Re:Before you release the hounds by trezor · · Score: 2, Insightful

      While compared to .NET PHP is relatively simple

      That got to be the understatement of the year. Seriously. Comparing event-based application programming (ASP.NET) to sequential HTML-generation (PHP) is something you just don't do.

      Not saying PHP is crap or anything. There's stuff that takes seconds in PHP and ages in ASP.NET and vica verse. There's probably also some Java-alternatives for those who need more advanced webscripting than PHP allows for. "Right tool for the right job" as I usually say.

      but you get the ability to not be stuck on your platform and move around

      Not disagreeing with you there, though.

      Haven't tried mono myself, but from what I've heard it still needs some work in a few departments. Now that .NET 2.0 is released they may also have to do some catching up, unless they've started that work already. Anyway, .NET (though pretty damn good IMO) is definitely MS-technology and if you don't want to get locked into a MS infrastructure, that's proably the worst choice you can ever make.

      --
      Not Buzzword 2.0 compliant. Please speak english.
    2. Re:Before you release the hounds by Brento · · Score: 2, Insightful

      These days I'm running a multi-terabyte data warehouse ... I could run my warehouse on the db2 express version for $1500 (total).

      No, you can't. Oracle XE, the free version, is restricted to 4gb of data. Not 4tb, 4 gigs.

      That's not a data warehouse, that's a data convenience store.

      --
      What's your damage, Heather?
  2. Sigh. Stored procs in C# by Reality+Master+201 · · Score: 5, Insightful
    Stored procedures are one of those things that are like antibiotics or LSD - they're wonderful and valuable when handled carefully and responsibly, and cause big problems when they're not.

    The limited stored proc language that SQL server had before was actually a good thing; you could do some limited stuff in the DB. Thus, you weren't often able to give in to the tendency to stick application logic in the database tier.

    And this quote pretty much says it all: Raichura said the support for Microsoft's Common Language Runtime technology via Visual Studio will let him avoid having to go to multiple developers with different specialties. "I can natively write stored procedures straight into software," he said. "This increases my resource pool because it reduces the distinction between software developers and architects."

    Read: Now, I can pay people less to create a complete fucking pigsty that will perform well enough that the app will appear largely stable.

  3. Free? by caluml · · Score: 3, Insightful

    Free? Only if you buy their other products.

  4. Open Source making waves... by rsborg · · Score: 5, Insightful
    As well as the free SQL Server Express Edition, Microsoft have also just released the 'Visual Studio Express Editions', available for free.

    Clearly, this (as well as news of Oracle's "free/lite" version of 10g), are good news... that Open Source projects like MySQL, PHP, PostgreSQL, etc are forcing the "cathedral" software shops to re-examine their ways, since they (Microsoft & others) can't rely on piracy anymore (due to impacted profits) to keep the "pipeline full" and "mindshare". It's good for the closed source developers, and ultimately it will be good for OSS developers, as OSS entries in these fields mature. Competition is good, and the developers benefit.

    --
    Make sure everyone's vote counts: Verified Voting
    1. Re:Open Source making waves... by Trepalium · · Score: 2, Insightful
      SQL 2005 Express isn't what's new. What's new is Visual * 2005 Express for free. Until very recently, they were saying that they were going to charge something like $50 for each edition. This is what was "forced" on MS. Someone in Microsoft finally clued into the fact that giving away this software would make them far more money than selling it ever would.

      On the other hand, expect companies like Borland to be very upset by this move. This will cut into some of their market (what's left of it), and might finally be enough to push them under.

      --
      I used up all my sick days, so I'm calling in dead.
    2. Re:Open Source making waves... by ergo98 · · Score: 4, Insightful

      Someone in Microsoft finally clued into the fact that giving away this software would make them far more money than selling it ever would.

      What utter nonsense.

      Firstly, as the other person mentioned - the thread was explicitly about SQL Server Express Edition, which is a variation of something that Microsoft has been doing since SQL Server 7 (when the MSDE first appeared). Not to mention things like the JET engine have always been freely distributable.

      Secondly, Microsoft has offered a free SDK/Platform SDK for years. This is a very comprehensive kit that can be used to develop software.

      The whole focus is wrong anyways - the Express editions of Visual Studio, which have some killer limitations (e.g. complete lack of optimization), are targetted at dabblers. These dabblers would never, in a million years, try getting going with Eclipse or the like. At the most they'd warez an ISO of Visual Studio Pro.

      Which brings up the next point - Microsoft has always been relatively hands off about piracy of Visual Studio. That is their tacit real "Free" version. Even Visual Studio 2005 doesn't include activation or any other anti-warez measures.

  5. Re:Sigh. Stored procs in C# by tonyr60 · · Score: 5, Insightful

    And paint them even further into a corner such that migration to another DB is next to impossible.

  6. Re:Sigh. Stored procs in C# by Kentamanos · · Score: 2, Insightful

    The only time I really get annoyed with the limits of standard SQL stored procedures is when I need an array of values to be passed into it. For instance, there are many times where a stored procedure that uses an "IN" statement could really benefit from passing in an array of values for the "IN". To get around this, you basically have to write a data access layer that creates SQL on the fly.

    I'm all about separating "logic" from the data access layer, but simple things like that are probably possible using the C# stored procs.

    Also, correct me if I'm wrong, but this approach is not too dissimilar from what Oracle has done with Java.

  7. New toys by MarkNijhof · · Score: 2, Insightful

    How I love those new toys :) been playing with them for a week or so now. The SQL Server Management Studio is less Access like, with is good :) -Mark

  8. Two years late, hunh?? by Stephen+Samuel · · Score: 3, Insightful
    This is a rather old (IBM in the '70s) trick -- promise a new product that will do everything, including cleaning the kitchen sink -- and it's due in a year or so.... or 6 months ... real soon now.

    It's used as the eternal carrot... to keep the CTO from moving to a competetor's product that's already there and better. As long as 'real soon now' continues to inch ever closer, you can keep this up for an incredible length of time.

    The mantra is: It's easier to stay with our junky product for X months than to go through the pain of migrating to their superior product. -- then, 6 months later, it's X-2 months.

    If it finally comes out missing a couple of promised features (cut because 'we had to finally ship something!'), that's OK because it'll be in the next release ((due in X months).
    Rinse-repeat.

    --
    Free Software: Like love, it grows best when given away.
  9. Re:Sigh. Stored procs in C# by EraserMouseMan · · Score: 4, Insightful

    You must not be into Object Oriented programming where you separate out the logic into tiers: Persistence Layer, Biz Logic Layer and Presentation Layer. Also, you must have been a DB admin before you were an app developer. Or maybe you've never been an app developer.

  10. Re:Here's hoping by Swamii · · Score: 4, Insightful

    The MiniMSFT blog you link to has a tendancy to report the negatives only. For instance, the blog post links to Wesner Moise's post regarding some VS 2005 bugs he'd found. What is not as well publicized is Wesner's next post, in which he says,

    "Despite the few hiccups, I am enjoying VS 2005 and have been able to work with it productively. VS 2005 is stable and performant, and it's better to have it arrive now rather than later. The runtime is solid, and various products across Microsoft and outside also depend on it being delivered on a timely basis."

    Yes, I've found a few minor hiccups in VS2005 as well. But honestly, it's nothing like MiniMSFT would have it seem. I can't speak for everyone, but VS2005 has been solid for us since RTM (we were a MS beta tester from Beta 1 through RTM), and we're very happy with its current form.

    --
    Tech, life, family, faith: Give me a visit
  11. Re:Here's hoping by e-r00 · · Score: 2, Insightful

    Not fully true. Serious developers simply know, that they will most probably have to port the system to the new tools. The sooner they learn the features/problems of the new systems, the better for them. So you can be sure that there were lots of beta testers that had a strong motivation, and most of them quite happy with the feedback I guess. As for getting free copies - let's take e.g. Blizzard. People didn't get a free copy although they spent hours on playing WoW in the beta program. And nobody complained. Oh, and btw - these MS products are free, unless you plan to make money on them. Fair enough imho. Disclaimer: I don't want to sound too pro-MS, but I just got tired of people often attacking MS just for the sake of it.

  12. People forget about the license issues by Anonymous Coward · · Score: 1, Insightful

    Why choose a database like Postgresql? Freedom. How many times do you have to get burned by a license to learn? How many times do you have to discover some problem that is fixed in the next version, and then have to pay for the next version just for a bug fix? How many times will the license be changed to extract more money out of you, or features removed and placed in the more expensive version?

  13. Say goodbye to the 80's by 3770 · · Score: 4, Insightful

    It is pretty easy to scale most things in a big n-tier system. Just buy more servers. The database however is really hard to scale. You quickly get to a point where twice the money will buy you only very little extra performance.

    Therefore I treat the database as the "sacred resource". This almost always means that business logic is kept outside the database.

    Your approach was right in the 80's when client/server was the norm. Today you should have an n-tier system and have the business logic in an application server.

    You can still have lots of different applications while using centralized code. Only, now you call the application server instead of the database.

    --
    The Internet is full. Go Away!!!
  14. Re:Sigh. Stored procs in C# by Anonymous Coward · · Score: 1, Insightful
    [snip]Rather than reinvent the wheel implementing the buisness logic in a million apps, we keep it in the database, where it keeps everthing consistant, no matter what app is talking to the database, and where it can run fast.

    Egads. Either this is a troll (good job - had me fooled), or yet another example of the bizarre lengths folks go when using .NET and don't know any better. Hey! Since you've got all your business logic in you db, simply switch to J2EE!

  15. Re:SQL Server Reporting Services and Report Builde by kpharmer · · Score: 2, Insightful

    hmmm, I've found that particular form of reporting to get quickly unmanageable - with an explosion of hundreds of almost identical reports created, but not maintained by users. At one shop I visited they had so many that we could only test a sample of them - and found almost 50% to give incorrect results.

    Since most reports of this type are created by users looking for answers to simple questions, i've found that creating dashboards with great navigation & drilling between graphs, charts, and tables to be a better option. This can then be managed by the warehouse or transactional database owners with its accuracy ensured.

    Sigh, i've got one database that needs an upgrade right now and the only obstacle is the brio users with their reports that will break. I can't fix their reports, so I will have to give them some terribly-long transition time.

  16. Re:Semi-On-Topic Question for Database Mavens by Anonymous Coward · · Score: 1, Insightful

    A BS programme in CS, without SQL? That's flawed.

  17. Re:The biggest are (for SQL) by trezor · · Score: 2, Insightful

    Biting a troll? I dunno, but here goes.

    MSDE: Not really a high-end database, even though I've seen it employed as one in production systems. Nasty, nasty.

    However MSDE -does- have it's merrits. For a developer, you can pretty much count on that working against a lightweight MSDE will produce the exact same results when moving your code over to the production server running MS SQL server 2000. I think that's what the parent poster might have implied.

    I'd take MS SQL Server Developer or Enterprise edition anyday, even for development, but not every company can afford one SQL-server licence per developer emloyed. In cases like that, people will likely go for MSDE.

    --
    Not Buzzword 2.0 compliant. Please speak english.