What's the difference between SQL Server Management Studio and the Express edition?

70,849

Solution 1

There are no differences in Management Studio. The differences are in the database engine LIMITATIONS! The engine is the same but it will deny you some features.

Import/Export wizard in the express edition can be found at: C:\Program Files\Microsoft SQL Server\90\DTS\Binn\DTSWizard.exe

If you dont have it, dowload it from Microsoft: http://go.microsoft.com/fwlink/?LinkId=65111

You could install the Microsoft SQL Server 2005 Express Edition Toolkit to get the cool toys, like the Import/Export wizard and the reports.

The profiler is not part of Management Studio. It is one more application that comes with the full version of the SQL Server. Even if you have it installed your express edition server engine will refuse to work with it.

Solution 2

Assuming you are talking about differences in the client tools and not the database engine, the only differences that I have found so far are the lack of reports and the profiler. In the full version, on the tree of objects you can right click and select from set of standard reports. In the Express version, that menu option is missing. The express version does not install the profiler.

Solution 3

Most of the High-Availability options are missing from the Express Edition. The Express editions are great for development purposes. Here's the comparison facts:

http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx

Solution 4

The most annoying thing to me are the Import/Export options. Even devs need that.

Solution 5

One of the feature which prevents me from using Studio Express is the ability to import and export data via the SSIS (SQL Server Integration Services). It is hard to be a true DBA with just Studio Express. From a developer's standpoint, Studio Express would typically be sufficient.

Share:
70,849
MrBoJangles
Author by

MrBoJangles

Angular/Typescript/C#/SQL generalist

Updated on July 20, 2020

Comments

  • MrBoJangles
    MrBoJangles almost 4 years

    I'm using Express currently. What extra features do I get with the full edition?

  • MrBoJangles
    MrBoJangles over 12 years
    Thanks for clarifying the wordage, I was using the word Version but really meant Edition, at least as per Microsoft's wordage, which is important, right?
  • Tracker1
    Tracker1 almost 12 years
    I've noticed actual features missing from the SSMS Express vs. Full in versions prior to 2012 (not sure on 2012). For instance, the intellisense, which is a mixed blessing.
  • Ricardo C
    Ricardo C almost 12 years
    Intellisense is only supported by database engines 2008 and higher. You will never see intellisense when connecting to a 2005 or older server.
  • LarsH
    LarsH over 10 years
    FYI, for SSMS 2012 Express, the following are apparently included, as an optional part of the installation: "Reporting Services, Analysis Services, and Integration Services technologies, SQL Server Profiler, Database Tuning Advisor, and SQL Server Utility"
  • Ricardo C
    Ricardo C almost 8 years
    @LarsH None of those tools are part of SSMS. They are additional and independent tools.