<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlblog.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'Express Edition'</title><link>http://sqlblog.com/search/SearchResults.aspx?o=DateDescending&amp;tag=Express+Edition&amp;orTags=0</link><description>Search results matching tag 'Express Edition'</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.1)</generator><item><title>Squishy Limits in SQL Server Express Edition</title><link>http://sqlblog.com/blogs/kevin_kline/archive/2013/03/28/squishy-limits-in-sql-server-express-edition.aspx</link><pubDate>Thu, 28 Mar 2013 12:19:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:48447</guid><dc:creator>KKline</dc:creator><description>&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;It's an old story you've probably heard before. &amp;nbsp;Provide a free version of your software product with strict limitations on performance or other specific capabilities so that folks can give it a try without risk, while you minimize the chance of&amp;nbsp;cannibalizing&amp;nbsp;sales of your commercial products. &amp;nbsp;Microsoft has take this strategy with&amp;nbsp;&lt;a href="http://www.microsoft.com/en-us/sqlserver/editions/2012-editions/express.aspx"&gt;SQL Server Express Edition&lt;/a&gt;, not only to increase adoption in the student market but also to counter the threat of open-source (i.e. free) relational databases like MySQL for entry-level applications.&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;One such limitation of SQL Server Express Edition is that it supports no more than 1GB of RAM for the instance. &amp;nbsp;Of course, you could have many Express Edition instances on a single Windows server, each with its own 1GB of RAM.&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;But what does that metric of 1GB of RAM actually mean? &amp;nbsp;The key thing to remember is that the restriction is for&amp;nbsp;&lt;em&gt;&lt;strong&gt;buffer&lt;/strong&gt;&lt;strong&gt;&amp;nbsp;cache.&amp;nbsp;&lt;/strong&gt;&lt;/em&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;Since SQL Server has many other caches, even when not counting the plan cache, there are plenty of other caches within SQL Server. &amp;nbsp;(Run a query against&amp;nbsp;&lt;em&gt;sys.dm_os_memory_clerks&lt;/em&gt;&amp;nbsp;if you'd like to see some of the others). &amp;nbsp;Because only the buffer cache has the strict 1GB limitation, you can actually watch SQL Server Express Edition's memory working set size grow to around 1.4-1.5GB due to the other memory caches at play.&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;Pawel Potasinski, a SQL Server MVP from Poland (&lt;a href="http://twitter.com/pawelpotasinski"&gt;Twitter&lt;/a&gt;&amp;nbsp;|&amp;nbsp;&lt;a href="http://sqlgeek.pl/"&gt;Blog&lt;/a&gt;), once&amp;nbsp;&lt;a href="http://sqlgeek.pl/2010/08/23/pl-sql-server-limity-w-sql-server-2008-r2-express-edition/"&gt;posted an interesting repro&lt;/a&gt;&amp;nbsp;for this behavior:&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;padding-left:30px;"&gt;&lt;span style="font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;"&gt;-- Assess amount of databases resident in buffer cache&lt;/span&gt;&lt;/p&gt;&lt;pre style="font-size:12px;line-height:18px;font-family:Consolas, Monaco, monospace;padding-left:30px;"&gt;SELECT
 CASE
 WHEN database_id = 32767 THEN 'mssqlsystemresource'
 ELSE DB_NAME(database_id)
 END AS [Database],
 CONVERT(numeric(38,2),(8.0 / 1024) * COUNT(*)) AS [MB in buffer cache] 
FROM sys.dm_os_buffer_descriptors 
GROUP BY database_id 
ORDER BY 2 DESC; 
GO&lt;/pre&gt;&lt;pre style="font-size:12px;line-height:18px;font-family:Consolas, Monaco, monospace;padding-left:30px;"&gt;-- Assess amount of tables resident in buffer cache
SELECT
 QUOTENAME(OBJECT_SCHEMA_NAME(p.object_id)) + '.' +
 QUOTENAME(OBJECT_NAME(p.object_id)) AS [Object],
 CONVERT(numeric(38,2),(8.0 / 1024) * COUNT(*)) AS [MB In buffer cache] 
FROM sys.dm_os_buffer_descriptors AS d 
 INNER JOIN sys.allocation_units AS u ON d.allocation_unit_id = u.allocation_unit_id 
 INNER JOIN sys.partitions AS p ON (u.type IN (1,3) AND u.container_id = p.hobt_id) OR (u.type = 2 AND u.container_id = p.partition_id) 
WHERE d.database_id = DB_ID() 
GROUP BY QUOTENAME(OBJECT_SCHEMA_NAME(p.object_id)) + '.' + QUOTENAME(OBJECT_NAME(p.object_id))
ORDER BY [Object] DESC;
GO&lt;/pre&gt;&lt;pre style="font-size:12px;line-height:18px;font-family:Consolas, Monaco, monospace;padding-left:30px;"&gt;-- Fill up Express Edition's buffer allocation
IF OBJECT_ID(N'dbo.test', N'U') IS NOT NULL
 DROP TABLE dbo.test;
GO&lt;/pre&gt;&lt;pre style="font-size:12px;line-height:18px;font-family:Consolas, Monaco, monospace;padding-left:30px;"&gt;CREATE TABLE dbo.test (col_a char(8000));
GO&lt;/pre&gt;&lt;pre style="font-size:12px;line-height:18px;font-family:Consolas, Monaco, monospace;padding-left:30px;"&gt;INSERT INTO dbo.test (col_a)
 SELECT REPLICATE('col_a', 8000)
 FROM sys.all_objects 
 WHERE is_ms_shipped = 1;&lt;/pre&gt;&lt;pre style="font-size:12px;line-height:18px;font-family:Consolas, Monaco, monospace;padding-left:30px;"&gt;CHECKPOINT; 
GO 100&lt;/pre&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;padding-left:30px;"&gt;&lt;em&gt;&amp;nbsp;The bottom line for the hard memory limit of SQL Server Express Edition is "Yes, it's limited. &amp;nbsp;But it's a squishy limit. Not a hard limit."&lt;/em&gt;&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;&lt;span style="line-height:19px;"&gt;Although your mileage may vary, I'd bet a dollar that you'll find more than 1GB in the active working set for your instance of SQL Server Express Edition. &amp;nbsp;I am curious, however, if you're seeing much variation between versions and even service packs of SQL Server? &amp;nbsp;Let me know if you try this out on more than one version and/or service pack level of SQL Server. &amp;nbsp;Did it change much between versions? &amp;nbsp;Let me know!&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;Enjoy,&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;-Kevin&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;&lt;a href="http://twitter.com/kekline"&gt;-Follow me on Twitter!&lt;/a&gt;&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;&lt;a href="http://twitter.com/kekline"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://plus.google.com/u/1/113032055249023350257?rel=author"&gt;Google Author&lt;/a&gt;&lt;/p&gt;&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13.333333969116211px;line-height:18.99305534362793px;"&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Express Edition revisited, focus on SSMS</title><link>http://sqlblog.com/blogs/tibor_karaszi/archive/2013/01/30/express-edition-revisited-focus-on-ssms.aspx</link><pubDate>Wed, 30 Jan 2013 17:01:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:47398</guid><dc:creator>TiborKaraszi</dc:creator><description>&lt;p&gt;&amp;nbsp;(Note: I have re-written parts of this post in the light of the comments that SP1 of 2012 include Complete tools.)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I have decided to revisit the topic of whats included in Express Edition, with focus on the tools. I have a couple of reasons for this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In my &lt;a href="http://sqlblog.com/blogs/tibor_karaszi/archive/2011/02/10/what-does-this-express-edition-look-like-anyhow.aspx"&gt;2011 post&lt;/a&gt;, I never tried to connect from Express SSMS to a non-Express database engine.&lt;/li&gt;

&lt;li&gt;I want to check if there are any significant differences in SQL Server 2012 Express Edition, compared to SQL Server 2008R2 Express Edition.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It isn't uncommon that people want to have SQL Server Management Studio (SSMS) on their machines; and instead of searching for the install files for the full product, they download the freely available Express Edition and install SSMS from there. This was the main reason for this update post, and the reason I focus on SSMS and the tools&amp;nbsp;in this post.&lt;/p&gt;

&lt;p&gt;It turns out that both 2008R2 and 2012 RTM Express editions of SSMS includes a lot, but not quite everyting that the full version of SSMS has. And they don't have Profiler or Database Engine Tuning Advisor. 2012 SP1 Express download does indeed have the Complete tool package.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Basic and Complete&lt;/strong&gt;&lt;br&gt;The full SSMS (etc.) is referred to as "Management Tools - Complete". This is only available with the Product you pay for and with 2012 SP1 Express. The only one available with the various free Express downloads (prior to 2012 SP1), is called "Management Tools - Basic". You can explicitly request to install Basic from an install media that includes Complete, but you have to explicitly request that in the setup program. You don't want to do that. &lt;/p&gt;

&lt;p&gt;One difference between 2008R2 and 2012 is when you install from a pay-media and select that you want to install Express. For 2008R2, you then only have SSMS Basic available. For 2012, you have Complete. In other words, if you use a 2012 pay-media and select Express to install SSMS, you have the option to have the full-blown SSMS - Complete&amp;nbsp;(including other tools, like Profiler).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The downloads&lt;/strong&gt;&lt;br&gt;For SQL Server 2008R2, you have "Express Edition" and "Express Edition with Advanced Services". The former is basically only the database engine, where the later has some Tools (SSMS Basic, primarily). See my earlier blog post for more details about 2008R2. &lt;/p&gt;

&lt;p&gt;For 2012, there are bunch of downloads available. Note that if you want Complete tools, you need to download SP1&amp;nbsp;of the installers. You find SP1 &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=35579"&gt;here&lt;/a&gt; (and RTM, which you don't want to use,&amp;nbsp;&lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=29062"&gt;here&lt;/a&gt;). SP1 includes Complete tools, and you will see that those downloads are significantly larger compared to RTM. It isn't obvious what each exe files stand for, but scroll down and you will find pretty good explanations. I tried several of these (SSMS only, Express with Tools, Express with Advanced Services). They all have in common that for &lt;strong&gt;RTM&lt;/strong&gt; the tool included is &lt;strong&gt;Basic&lt;/strong&gt;, where for &lt;strong&gt;SP1&lt;/strong&gt; we have &lt;strong&gt;Complete&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;So what is the difference between Basic and Complete?&lt;/p&gt;

&lt;p&gt;In the table below, my focus was on what&lt;strong&gt; isn't&lt;/strong&gt; in Basic. In general, I don't bother to list functionality which is available in both Basic and Complete. So, if the functionality isn't in the table below, it is likely available in Basic. I might have missed something, of course! And my main focus was on SSMS and the database engine.&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;table id="Table1" cellspacing="1" cellpadding="1"&gt;
  
&lt;tr&gt;
&lt;td&gt;&lt;b&gt;Component/Functionality&lt;/b&gt;&lt;/td&gt;

&lt;td&gt;&lt;b&gt;2008R2&lt;/b&gt;&lt;/td&gt;
&lt;td&gt;&lt;b&gt;2012 RTM&lt;/b&gt;&lt;/td&gt;
&lt;td&gt;&lt;b&gt;2012 SP1&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;&lt;b&gt;Functionality in SSMS&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Node for Agent&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Graphical Execution Plans&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Projects and Solutions&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Maint Plans, Wizard&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Maint Plans, New, designer&lt;/td&gt;
&lt;td&gt;N (1)&lt;/td&gt;
&lt;td&gt;N (2)&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Maint Plans, Modify&lt;/td&gt;
&lt;td&gt;N (1)&lt;/td&gt;
&lt;td&gt;N (2)&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Node for SSIS Catalog&lt;/td&gt;
&lt;td&gt;N/A&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Tools menu, Profiler&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Tools menu, Tuning Advisor&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;&lt;b&gt;Connect Object Explorer to:&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
 
&lt;tr&gt;
&lt;td&gt;Analysis Services&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Reporting Services&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Integration Services&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;&lt;b&gt;Tools&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Profiler&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
  
&lt;tr&gt;
&lt;td&gt;Database Engine Tuning Advisor&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;N&lt;/td&gt;
&lt;td&gt;Y&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;(1): The selections are there, but they were dead - nothing happened when you select them.&lt;br&gt;(2): The selections are there, but I got an error message when selecting any of them.&lt;/p&gt;</description></item><item><title>What does this Express Edition look like, anyhow?</title><link>http://sqlblog.com/blogs/tibor_karaszi/archive/2011/02/10/what-does-this-express-edition-look-like-anyhow.aspx</link><pubDate>Thu, 10 Feb 2011 17:40:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:33378</guid><dc:creator>TiborKaraszi</dc:creator><description>&lt;p&gt;Chances are that you rarely get to see the Express Edition of SQL Server if you mainly work with servers. This blog post is inspired from a forum discussion where some functionality is missing in SQL Server Management Studio (SSMS) and I suspected that the tools were installed as a Basic installation instead of Complete installation. So how do I check that? Difficult if I don’t have such an install to look at. I’m training this week and have a few spare machines to play with so I went ahead and installed a couple of SQL Server 2008 R2 Express Editions.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Installation&lt;br&gt;&lt;/strong&gt;When you install SQL Server, you are asked what to install. Depending on your installation media, the install is pre-selected for the edition of your SQL Server (the product key is already entered for you), or one of the free editions is selected. You can select any of the free editions even if you have a pre-pidded installation. The free editions are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Enterprise Evaluation Edition&lt;/li&gt;
&lt;li&gt;Express Edition&lt;/li&gt;
&lt;li&gt;Express Edition with Advanced Services&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;I decided to install the two Express Editions, on two different machines, to see what they look like.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Express Edition&lt;br&gt;&lt;/strong&gt;This is pretty much only the database engine. Here is what options the Feature Selection gave for installation:&lt;/p&gt;
&lt;p&gt;&lt;img title="Express bare install" alt="Express bare install" src="http://www.karaszi.com/SQLServer/misc/Express-Setup-FeatureSelection.jpg"&gt;&lt;/p&gt;
&lt;p&gt;I selected all three. Setup then suggested the instance name SQLEXPRESS. One option I haven’t seen before was the ability to install support for User Instances. The installation took 6 minutes. Setup created a program group:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Microsoft SQL Server 2008 R2&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Configuration Tools&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;SQL Server Configuration Manager&lt;/li&gt;
&lt;li&gt;SQL Server Error and Usage Reporting&lt;/li&gt;
&lt;li&gt;SQL Server Installation Center (64 bit)&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;Import and Export Data (64 bit)&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;
&lt;p&gt;Below services were installed&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;SQL Active Directory Helper Service, Disabled&lt;/li&gt;
&lt;li&gt;SQL Server (SQLEXPRESS), Automatic&lt;/li&gt;
&lt;li&gt;SQL Server Agent (SQLEXPRESS), Disabled&lt;/li&gt;
&lt;li&gt;SQL Server Browser, Disabled&lt;/li&gt;
&lt;li&gt;SQL Server VSS Writer, Automatic&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;So, this is a pretty much “bare” SQL Server with close to no tools. Or more to the point, no SSMS.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Express Edition with Advanced Services&lt;br&gt;&lt;/strong&gt;This edition includes some bells and whistles, especially SSMS. The feature Selection dialog looks like:&lt;/p&gt;
&lt;p&gt;&lt;img title="Express bare install" alt="Express bare install" src="http://www.karaszi.com/SQLServer/misc/ExpressAdvServ-Setup-FeatureSelection.jpg"&gt;&lt;/p&gt;
&lt;p&gt;Again, I selected all options. Setup then suggested the instance name SQLEXPRESS. The installation took 20 minutes. Setup created a program group:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Microsoft SQL Server 2008 R2&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Configuration Tools&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Reporting Services Configuration Manager&lt;/li&gt;
&lt;li&gt;SQL Server Configuration Manager&lt;/li&gt;
&lt;li&gt;SQL Server Error and Usage Reporting&lt;/li&gt;
&lt;li&gt;SQL Server Installation Center (64 bit)&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;Integration Services&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Data Profile Viewer&lt;/li&gt;
&lt;li&gt;Execute Package Utility&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;Import and Export Data (32 bit)&lt;/li&gt;
&lt;li&gt;Import and Export Data (64 bit)&lt;/li&gt;
&lt;li&gt;SQL Server Business Intelligence Development Studio&lt;/li&gt;
&lt;li&gt;SQL Server Management Studio&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;
&lt;p&gt;Below services were installed&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;SQL Active Directory Helper Service, Disabled&lt;/li&gt;
&lt;li&gt;SQL Full-text Filter Daemon Launcher (SQLEXPRESS), Automatic&lt;/li&gt;
&lt;li&gt;SQL Server (SQLEXPRESS), Automatic&lt;/li&gt;
&lt;li&gt;SQL Server Agent (SQL Express), Disabled&lt;/li&gt;
&lt;li&gt;SQL Server Browser, Disabled&lt;/li&gt;
&lt;li&gt;SQL Server Reporting Services (SQLEXPRESS), Automatic&lt;/li&gt;
&lt;li&gt;SQL Server VSS Writer, Automatic&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;So you get some goodies with Advanced Services, what probably attract most is SSMS.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What about SQL Server Agent?&lt;/strong&gt;&lt;br&gt;We usually say that Express doesn’t come with Agent, but the Agent service is installed. But disabled and you won't be able to start it even if you enable the service. There’s logic behind this. You might want to upgrade your Express to a higher edition. Thanks to all bits already on the disk, the upgrade essentially just adjusts to your product key, no installation of files is necessary. See&amp;nbsp;&lt;a href="http://sqlblog.com/blogs/tibor_karaszi/archive/2011/01/27/upgrading-from-express-edition-to-standard-edition.aspx"&gt;Upgrading from Express Edition to Standard Edition&lt;/a&gt; &lt;br&gt;for info on how to upgrade Express to a higher edition.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Express Edition of SSMS?&lt;br&gt;&lt;/strong&gt;There used to be such a beast. But nowadays, you instead have below options:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Management Tools Basic&lt;/li&gt;
&lt;li&gt;Management Tools Complete&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;If you install Express Edition with Advanced Services, your only option is Management Tools Basic. This corresponds to the old SSMS Express. Your SSMS is limited and lacks a lot of functionality. The interesting aspect is that you can also select Management Tools Basic from a “real” SQL Server installation media (Standard Edition, for instance). I doubt anyone wants to do this, but it can happen by mistake. One way to see if your SSMS is Basic is to look for SQL Server Profiler in the Tools menu (thanks &lt;a title="Mladen Prajdić" href="http://www.sqlteam.com/author/mladen-prajdic"&gt;Mladen Prajdić&lt;/a&gt;). If it isn’t there, you have the Basic installation of SSMS. Read on for another way to check this.&lt;/p&gt;&lt;p&gt;Update 2011-08-06: I just learned that 1) there are some minor differences between Basic from Express install and Basic from non-express install and 2) Basic does have a node (GUI) for Agent, if connected to a non-express instance. I learned it in &lt;a title="http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/e186fe94-eb54-4bdd-9d5d-e54883f53201/" href="http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/e186fe94-eb54-4bdd-9d5d-e54883f53201/"&gt;this&lt;/a&gt; thread and you&amp;nbsp;can find out more in &lt;a title="http://blogs.msdn.com/b/psssql/archive/2008/09/02/sql-server-2008-management-tools-basic-vs-complete-explained.aspx" href="http://blogs.msdn.com/b/psssql/archive/2008/09/02/sql-server-2008-management-tools-basic-vs-complete-explained.aspx"&gt;this&lt;/a&gt; blog post.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How do I find out what is installed?&lt;/strong&gt;&lt;br&gt;There’s a great discovery tool built in the setup program, and this is already on your machine:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Start menu&lt;/li&gt;
&lt;li&gt;Microsoft SQL Server 2008 R2&lt;/li&gt;
&lt;li&gt;Configuration Tools&lt;/li&gt;
&lt;li&gt;SQL Server Installation Center.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Here you select:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tools&lt;/li&gt;
&lt;li&gt;Installed SQL Server features discovery report&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;This will lead you to a HTML page which clearly states what SQL server stuff is installed on your machine. It will tell you the edition of the server components, and it will tell you whether your tools are installed as Basic or also Complete (if you installed the “full” SSMS, you see both Basic and Complete).&lt;br&gt;&lt;/p&gt;</description></item><item><title>November CTP of SQL Server 2008 R2 : Download now</title><link>http://sqlblog.com/blogs/aaron_bertrand/archive/2009/11/11/november-ctp-of-sql-server-2008-r2-download-now.aspx</link><pubDate>Wed, 11 Nov 2009 22:44:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18752</guid><dc:creator>AaronBertrand</dc:creator><description>&lt;p&gt;For those of you that have been wanting to try out SQL Server 2008 R2, you can download &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c772467d-e45b-43e1-9208-2c7b663d7ad1" title="http://www.microsoft.com/downloads/details.aspx?FamilyID=c772467d-e45b-43e1-9208-2c7b663d7ad1" target="_blank"&gt;the November CTP of Express here&lt;/a&gt; (posted yesterday) and &lt;a href="http://www.microsoft.com/sqlserver/2008/en/us/R2Downloads.aspx" title="http://www.microsoft.com/sqlserver/2008/en/us/R2Downloads.aspx" target="_blank"&gt;the full version of the November CTP here&lt;/a&gt;.&amp;nbsp; This is version 10.50.1352.12.&amp;nbsp; The full version is an evaluation edition and will expire after 180 days.&amp;nbsp; I am not sure when the full version of the CTP was posted publicly; earlier this week, that privilege was restricted to MSDN / TechNet Plus subscribers (and TAP a.k.a. early adopter customers).&lt;br&gt;&lt;/p&gt;&lt;p&gt;For the Express Edition, if you scroll down the page, you will see that you can also download the Express version of Management Studio (SSMSE) for both 32-bit and 64-bit systems, without having to download the entire engine and other services.&amp;nbsp; This was announced earlier today by &lt;a href="http://twitter.com/SQLAzure" title="http://twitter.com/SQLAzure" target="_blank"&gt;@SQLAzure&lt;/a&gt; in a &lt;a href="http://blogs.msdn.com/ssds/archive/2009/11/11/9921041.aspx" title="http://blogs.msdn.com/ssds/archive/2009/11/11/9921041.aspx" target="_blank"&gt;blog post&lt;/a&gt;.&amp;nbsp; In previous releases of Express, it wasn't always easy to find the Management Studio Express Edition downloads, and they often came later than the combined downloads (w/Tools or w/Advanced Services).&amp;nbsp; Most users ended up downloading one of those and then trying to install just the management tools.&lt;br&gt;&lt;/p&gt;For those of you who are unwilling to download any of these pre-release builds onto your machines, and who don't have virtual machines you can use for this purpose, you can get limited exposure to the new engine and some of its features by signing up at &lt;a href="http://test.sqlserverbeta.com" title="http://test.sqlserverbeta.com" target="_blank"&gt;sqlserverbeta.com&lt;/a&gt; (you can read more about this program in a recent &lt;a href="http://sqlchicken.com/2009/10/sql-universitycomputer-lab-at-sqlserverbeta-com/" title="http://sqlchicken.com/2009/10/sql-universitycomputer-lab-at-sqlserverbeta-com/" target="_blank"&gt;blog post&lt;/a&gt; by &lt;span class="fn"&gt;Jorge Segarra (&lt;/span&gt;&lt;a href="http://twitter.com/SQLChicken" title="http://twitter.com/SQLChicken" target="_blank"&gt;@SQLChicken&lt;/a&gt;)&lt;a href="http://sqlchicken.com/2009/10/sql-universitycomputer-lab-at-sqlserverbeta-com/" title="http://sqlchicken.com/2009/10/sql-universitycomputer-lab-at-sqlserverbeta-com/" target="_blank"&gt;&lt;/a&gt;).&amp;nbsp; Currently their front page advertises a lab for the August CTP (build 10.50.1092.20), but this could just be a lag in marketing materials.&amp;nbsp; So I'm not sure if they are currently offering the latest CTP build of R2, or if you will have to wait for that to become part of their offering.&lt;br&gt;</description></item><item><title>Download a standalone installer for SQL 2008 Management Studio Express</title><link>http://sqlblog.com/blogs/aaron_bertrand/archive/2009/02/21/download-the-standalone-installer-for-sql-server-2008-management-studio-express.aspx</link><pubDate>Sat, 21 Feb 2009 15:32:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:12063</guid><dc:creator>AaronBertrand</dc:creator><description>&lt;p&gt;In October, &lt;a href="http://is.gd/kjh6" title="http://is.gd/kjh6" target="_blank"&gt;I complained (surprise, surprise)&lt;/a&gt; on behalf of Express users that you had to download an entire Express package (with Tools or with Advanced Services) in order to install the basic Management Studio Express, even if you already had the engine installed and had no need for another instance.&amp;nbsp; (For SQL Server 2005, a &lt;a href="http://www.microsoft.com/downloadS/details.aspx?familyid=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796" title="SSMSE 2005" target="_blank"&gt;standalone installer&lt;/a&gt; was made available very early on.)&amp;nbsp; While articles like &lt;a href="http://www.asql.biz/Articoli/SQLX08/Art1_2.aspx" title="http://www.asql.biz/Articoli/SQLX08/Art1_2.aspx" target="_blank"&gt;this one&lt;/a&gt; by fellow MVP Andrea Montanari proved to help a lot of people figure this out, there still seemed to be a loud cry for a standalone installer that didn't require jumping through all of these hoops. &lt;br&gt;&lt;/p&gt;
&lt;p&gt;Well, better late than never.&amp;nbsp; &lt;a href="http://adjix.com/t9t4" title="http://adjix.com/t9t4" target="_blank"&gt;Bill Ramos announced yesterday&lt;/a&gt; that they have released a standalone installer for SQL Server 2008 Management Studio Express, in both x86 and x64 flavors.&amp;nbsp; You can download it here:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=08e52ac2-1d62-45f6-9a4a-4b76a8564a2b" title="SQL Server 2008 Management Studio Express standalone installer" target="_blank"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=08e52ac2-1d62-45f6-9a4a-4b76a8564a2b&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;Now, when I download the 64-bit installer, it is 175 MB, and it seems to be a full-on setup program for either Express with Tools or Express with Advanced Services (I stopped the install when it asked me if I wanted to create a new instance of SQL Server 2008 or to modify an existing instance).&amp;nbsp; I will download again later this weekend and try it out, but so far, it is not the "no-frills" installer that Bill advertises.&amp;nbsp; If you have a different experience, please let me know.&lt;br&gt;&lt;/p&gt;</description></item><item><title>SQL Server 2005 Express SP3 might already be on your system</title><link>http://sqlblog.com/blogs/aaron_bertrand/archive/2009/01/28/sql-server-2005-express-sp3-might-already-be-on-your-system.aspx</link><pubDate>Wed, 28 Jan 2009 15:30:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:11535</guid><dc:creator>AaronBertrand</dc:creator><description>&lt;p&gt;Early reports indicate that some users running Express &amp;lt;= SP2 are getting SP3 for Express pushed to their system automatically as an important update, rather than recommended, which means that some users are getting it without even knowing about it.&amp;nbsp; Even though the &lt;a href="http://blogs.msdn.com/sqlreleaseservices/archive/2009/01/27/sql-server-2005-service-pack-3-is-now-available-on-microsoft-update-mu.aspx" title="http://blogs.msdn.com/sqlreleaseservices/archive/2009/01/27/sql-server-2005-service-pack-3-is-now-available-on-microsoft-update-mu.aspx" target="_blank"&gt;official Release Services blog&lt;/a&gt; states that this behavior shouldn't start happening for another two weeks.&amp;nbsp; So just as a warning, if you don't want SP3 just yet (and if it isn't already installed), turn off automatic updates until this gets sorted out.&amp;nbsp; If I hear anything back from Microsoft on this issue, I will post here. &lt;br&gt;&lt;/p&gt;</description></item><item><title>SQL Server Express 2008 is now available</title><link>http://sqlblog.com/blogs/aaron_bertrand/archive/2008/08/12/sql-server-express-2008-is-now-available.aspx</link><pubDate>Tue, 12 Aug 2008 11:02:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:8331</guid><dc:creator>AaronBertrand</dc:creator><description>&lt;p&gt;Sorry I missed this yesterday with all the excitement over the Visual Studio SP1 release (which allowed some people to finally install the SQL Server 2008 release from last week).&amp;nbsp; Yesterday also marked the release of SQL Server 2008 Express Edition, which you can download here:&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.microsoft.com/express/sql/default.aspx%20" title="http://www.microsoft.com/express/sql/default.aspx " target="_blank"&gt;http://www.microsoft.com/express/sql/default.aspx &lt;/a&gt;&lt;/p&gt;&lt;p&gt;You can read more background about it at the sqlexpress blog; if you have a previous edition of Express on your machine(s), you should read this for important setup/upgrade information:&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://blogs.msdn.com/sqlexpress/archive/2008/08/11/sql-server-2008-express-is-now-live.aspx" title="http://blogs.msdn.com/sqlexpress/archive/2008/08/11/sql-server-2008-express-is-now-live.aspx" target="_blank"&gt;http://blogs.msdn.com/sqlexpress/archive/2008/08/11/sql-server-2008-express-is-now-live.aspx&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Note that only the core edition of SQL Server Express has been made available; you will likely have to wait a few weeks before you see the "with Tools" and "with Advanced Services" releases that &lt;a href="http://sqlblog.com/blogs/aaron_bertrand/archive/2008/08/08/express-now-comes-in-small-medium-and-large.aspx" title="http://sqlblog.com/blogs/aaron_bertrand/archive/2008/08/08/express-now-comes-in-small-medium-and-large.aspx"&gt;I talked about the other day&lt;/a&gt;. &lt;br&gt;&lt;/p&gt;</description></item></channel></rss>