I'm using Express currently. What extra features do I get with the full edition?
-
Microsoft spells it out [here](http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx) – David Basarab Sep 22 '08 at 20:21
5 Answers
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.

- 2,205
- 20
- 24
-
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. – Tracker1 Jul 18 '12 at 22:05
-
3Intellisense is only supported by database engines 2008 and higher. You will never see intellisense when connecting to a 2005 or older server. – Ricardo C Jul 23 '12 at 16:12
-
1FYI, 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" – LarsH Nov 27 '13 at 15:24
-
@LarsH None of those tools are part of SSMS. They are additional and independent tools. – Ricardo C Sep 16 '16 at 15:48
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.

- 139,164
- 32
- 194
- 243
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

- 4,009
- 3
- 31
- 37
-
1Thanks 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? – MrBoJangles Dec 06 '11 at 16:49
The most annoying thing to me are the Import/Export options. Even devs need that.

- 399,467
- 113
- 570
- 794
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.

- 209
- 1
- 3