<?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 tags 'Administration', 'Developer', and 'Internals'</title><link>http://sqlblog.com/search/SearchResults.aspx?o=DateDescending&amp;tag=Administration,Developer,Internals&amp;orTags=0</link><description>Search results matching tags 'Administration', 'Developer', and 'Internals'</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>Learn More About SQL Server IO and Query Tuning in These Webcasts</title><link>http://sqlblog.com/blogs/kevin_kline/archive/2012/12/14/learn-more-about-sql-server-io-and-query-tuning-in-these-webcasts.aspx</link><pubDate>Fri, 14 Dec 2012 18:50:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:46662</guid><dc:creator>KKline</dc:creator><description>
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;I'm doing two new webcasts next week on Wednesday, December 19th, one in the morning and the other after lunch.&lt;/p&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;SSDs are a Game Changer for SQL Server Storage&lt;/h2&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;No, session is not exclusively about SSDs. &amp;nbsp;But this is my first session on IO and storage tuning that emphasizes SSDs over hard disks. &amp;nbsp;As Bob Dylan said "Times, they are a'changin'". &amp;nbsp;This session on Wednesday, December 19th at 11:30 AM EST, sponsored by Astute Networks, takes you through all of the basics of storage and IO tuning, regardless of the underlying storage technology. &amp;nbsp;I'll show you how SQL Server handles storage structures, how to identify IO activity on Windows and SQL Server, and best practices for minimizing IO bottlenecks. &amp;nbsp;Register now for:&lt;a title="Kevin Kline's Storage IO Best Practices for SQL Server" href="http://bit.ly/UcXYI3"&gt;&amp;nbsp;Storage IO Best Practices for SQL Server and a New Approach to Solving Application Performance Issues&lt;/a&gt;.&lt;/p&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;Write Better SQL Queries&lt;/h2&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;The next webcast on Wednesday, December 19th at 2 PM EST, is with me, Aaron Bertrand &amp;nbsp;(&lt;a href="https://twitter.com/#!/AaronBertrand"&gt;Twitter&amp;nbsp;&lt;/a&gt;|&amp;nbsp;&lt;a href="http://sqlblog.com/blogs/aaron_bertrand/rss.aspx"&gt;Blog&lt;/a&gt;)&amp;nbsp;and SQLCruise Impresario &amp;amp; Microsoft MVP Tim Ford &amp;nbsp;(&lt;a href="https://twitter.com/#!/sqlagentman"&gt;Twitter&lt;/a&gt;&amp;nbsp;|&amp;nbsp;&lt;a href="http://www.ford-it.com/sqlagentman/"&gt;Blog&lt;/a&gt;)&amp;nbsp;as we take you through the query tuning process, discussing important DMVs to use during query tuning, as well as demonstrating several essential query tuning techniques that every SQL developer should know. &amp;nbsp;Not only are we presenting an hour of top quality technical content, we’ll also be giving away some cool prizes, including the grand prize of a paid registration for the upcoming&amp;nbsp;&lt;a target="_blank" href="http://elink.sqlsentry.net/c/1/?aId=67857085&amp;amp;requestId=b34612-273953cd-e600-4a18-979a-a9f2ded860bd&amp;amp;rId=lead-a407ed107f65de119513001e0b614992-c233a49718324979b0d8efc0614ff5d0&amp;amp;ea=aunefuonetre=pbz=vagrepreir&amp;amp;dUrl=http%3A%2F%2Fsqlcruise.com%2F2013-cruises%3F_cldee%3DbmhhcnNoYmFyZ2VyQGludGVyY2VydmUuY29t&amp;amp;uId=0"&gt;SQLCruise Miami&lt;/a&gt;, a $1,395 value! &amp;nbsp;Register now for:&amp;nbsp;&lt;a title="SQL Server Query Tuning Best Practices, Hosted by Kevin Kline, Aaron Bertrand, and Tim Ford" href="http://bit.ly/UskPPm"&gt;SQL Server Query Tuning Best Practices, Hosted by Kevin Kline and Aaron Bertrand with special guest Tim Ford&lt;/a&gt;&lt;/p&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;I hope to see you at both of these sessions next week! &amp;nbsp;Best regards,&lt;/p&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;-Kev&lt;/p&gt;
&lt;p style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;"&gt;&lt;a title="Kevin E. Kline on Twitter" href="http://twitter.com/kekline"&gt;-Follow me on Twitter!&lt;/a&gt;&lt;/p&gt;</description></item><item><title>How Do You SKU?</title><link>http://sqlblog.com/blogs/kevin_kline/archive/2011/03/30/how-do-you-sku.aspx</link><pubDate>Wed, 30 Mar 2011 14:49:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:34502</guid><dc:creator>KKline</dc:creator><description>&lt;p&gt;&lt;a href="http://kevinekline.com/wp-content/uploads/2011/03/Decisions.jpg"&gt;&lt;img src="http://kevinekline.com/wp-content/uploads/2011/03/Decisions.jpg" class="aligncenter size-full wp-image-1582" title="Decisions" alt="Decisions" align="middle" height="320" width="400"&gt;&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;I’d like your opinion here.&lt;/p&gt;
&lt;p&gt;Follow my logic here for a moment as I walk through a couple 
rhetorical questions.&amp;nbsp; Have you ever had a friend developed an 
application entirely on SQL Server Developer Edition?&amp;nbsp; (Not that YOU 
would ever do such a thing, but maybe you know someone who has. Right?) 
And has your friend’s IT department actually deployed said application 
only to discover that they’re only licensed for Standard Edition in 
their production environment?&amp;nbsp; And then was your friend’s IT management 
team is horrified to learn that they’ve either got to go through the 
very expensive process of extracting all of the Enterprise and/or 
Datacenter Edition features for the production application in order to 
remain in compliance, upgrade to the more expensive SKU licenses, or 
risk a potential future audit?&lt;/p&gt;
&lt;p&gt;I’m not saying that this has happened to any of us.&amp;nbsp; We’re too smart 
for that, after all.&amp;nbsp; But have you ever known anyone who’s had this 
experience?&lt;/p&gt;
&lt;p&gt;Having worked with a lot of customers another commercial RDBMS 
platforms (which I’ll euphemistically call “SEER” from Redforest City 
and “IB4” from Upstate City), I can tell you that auditing is a fun and 
exciting way for those platform vendors to make a LOT of money.&amp;nbsp; This is
 especially true because a production application, once successfully 
deployed, tends to be too valuable to disable or otherwise compromise 
because high-end features slipped in to the development cycle even 
though the production environment only a “standard edition” SKU in 
place.&amp;nbsp; Ouch! Talk about being caught between a rock and a hard place.&amp;nbsp; 
Now, keep in mind that this is a strategy used by SEER and not by 
Microsoft.&amp;nbsp; But Microsoft could implement the same sort of licensing 
audits if they wanted to.&amp;nbsp; (Please leave a comment here if you have ever
 been audited.&amp;nbsp; I’d love to hear your experiences, at least as much as 
NDA’s allow).&lt;/p&gt;
&lt;p&gt;So if you use SQL Server Developer Edition (DE), of any version, 
would you like to see a feature that enables you to run DE not in its 
default “full featured mode” but at another SKU level, such as good ol’ 
Standard Edition?&amp;nbsp; I know I would.&lt;/p&gt;
&lt;p&gt;If you’re on the same page as I am, there are a number of suggestions
 logged on Connect about this very feature!&amp;nbsp; Make your voice heard!&amp;nbsp; 
Check out:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://connect.microsoft.com/SQLServer/feedback/details/496380/enable-sql-developer-edition-to-target-specific-sql-version"&gt;https://connect.microsoft.com/SQLServer/feedback/details/496380/enable-sql-developer-edition-to-target-specific-sql-version&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;Of course, the more skeptical reader might say “Hey, that’s their 
tough luck. Developers should know the difference in the SKU licensing 
options and feature sets of whatever SKU they’re developing on compared 
to what they’ll deploy on.”&amp;nbsp; And I wouldn’t fault you for saying so.&lt;/p&gt;
&lt;p&gt;But I would go on to point out that much of Microsoft’s success in 
enterprise IT settings can be traced back to their very strong 
relationship with developers.&amp;nbsp; And anything that Microsoft can do to 
empower developers to save time, money, and resources during the 
development phase of an IT project in turn energizes that relationship 
between developer and Microsoft.&lt;/p&gt;
&lt;p&gt;It also makes the life of the DBA that much easier, because they 
don’t need to imply that those cowboys on the development team went off 
half-cocked again.&amp;nbsp; So what’s your opinion?&amp;nbsp; Should SQL Server Developer
 Edition include a feature that sets the SKU-level of the database 
engine?&lt;/p&gt;</description></item><item><title>Join Me May 19th for 24 Hours of PASS</title><link>http://sqlblog.com/blogs/kevin_kline/archive/2010/04/26/join-me-may-19th-for-24-hours-of-pass.aspx</link><pubDate>Mon, 26 Apr 2010 14:16:00 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:24579</guid><dc:creator>KKline</dc:creator><description>&lt;p&gt;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUsjFujLwMmO4PXzbygaF5fdku5SaYPWbUZFYdvFwOOVeDMn2MXVUPhUdDXvrGrKN5lWICmQo4aFkmwkh8PZytaUrVzvHHz7RySzSepLlGuiT6YwgI4KHag4I8HOpslFpBI=" target="_blank" title="Register Now!"&gt;&lt;img src="http://kevinekline.com/wp-content/uploads/2010/04/24HOP.jpg" alt="" title="24HOP" class="aligncenter size-full wp-image-517" width="601" height="151"&gt;&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Join Us for 24 Hours of SQL Server Training&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;(with a special focus on SQL Server 2008 R2)&lt;/i&gt;&lt;/p&gt;&lt;p style="text-align:center;"&gt;&lt;i&gt;Did I mention that your Cohorts in Crime 
(that be &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUuOZjF-KrHxujYlsOQMesC-mjFLtFzLOWgl_FT1teNLftVY1iE8GydpQ1TGM9SLvJmNqxuu6UxYOAt5v1VqsjIFkexYTKE2pHD4rFc6-WLwjibWnqbvYhawz06OkxRZq6UwkwpcGq2lyhRfYCNqMpq0hlTqEy8k1LSsnHc1v0kUtKSWyPtJoRER" target="_blank" title="Take That, Access Programmer, erm, 
Evil-Doer!"&gt;me&lt;/a&gt;
 and &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvBoTeroUXVe1dwpHetEIajlBdTK-g57SuIoCeuKCsh-N8Er7lNvCsXBK01xw7I7dLzSuI7e9Y-8YPHXCJxS2arZoRPGc3wd9t_S5TbyWQAYP-qzOKpnSzqeToRSz4OY19b7-KG-Bx3X31e3QqWtYUXGZHsyKnQC7x8JqCbtA3WaSbmgl-xKuQD" target="_blank" title="My Fist Will Defragment the Face of 
Criminals Everywhere!"&gt;Brent
 Ozar&lt;/a&gt;) are presenting?!?&lt;br&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;The FREE &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUsjFujLwMmO4PXzbygaF5fdku5SaYPWbUZFYdvFwOOVeDMn2MXVUPhUdDXvrGrKN5lWICmQo4aFkmwkh8PZytaUrVzvHHz7RySzSepLlGuiT6YwgI4KHag4I8HOpslFpBI=" target="_blank"&gt;24 Hours of PASS&lt;/a&gt; event is bringing an exceptional 
lineup of SQL Server and BI experts to     your computer&amp;nbsp;starting at 
12:00 GMT (UTC) on &lt;b&gt;May 19&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUv9BzshqvEpgwFz2XgXW8b50msy2KWLG6SUXomR2ueFSBBlGRE8t0T3Gm8TFRUuAju_JJAJTk4sfASGuUxhKeZ_DnvhS8B1U3pNX_z7UuaJTzTpPFS_Jeffu-MFCaaZ-vodt5ipVGLca8kUGDZO0qkz" target="_blank"&gt;Get an in-depth look at     the hottest SQL Server and 
BI topics&lt;/a&gt;, including (but not limited to!) -     the new &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUucFSQNQD9KQ4Ntv3s9hlw6Q-cJKsl3izrdqF1yFPMNJOgl89Oz2Oxbw4e9-tx93DriP9fRXDPbHc4k3JOMfoOL0zRptrY-Az6_iobSekFy_wlyU7flegXgvCU_FWWd5weQJdIG1bUc_RAvtRW0dSuG" target="_blank"&gt;SQL Server 2008 R2&lt;/a&gt;,     with its business 
intelligence and data management&amp;nbsp;innovations, and     much more.&lt;/p&gt;

&lt;p style="padding-left:30px;"&gt;&lt;b&gt;When does it  start? 12:00 GMT (UTC):&lt;/b&gt;&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;b&gt;New York:&lt;/b&gt; 08:00&lt;br&gt;
&lt;b&gt;Chicago:&lt;/b&gt; 07:00&lt;br&gt;
&lt;b&gt;San Francisco:&lt;/b&gt; 05:00&lt;br&gt;
&lt;b&gt;London:&lt;/b&gt; 13:00&lt;br&gt;
&lt;b&gt;Paris:&lt;/b&gt; 14:00&lt;br&gt;
&lt;b&gt;Moscow:&lt;/b&gt; 16:00&lt;br&gt;
&lt;b&gt;Mumbai:&lt;/b&gt; 17:30&lt;br&gt;
&lt;b&gt;Singapore:&lt;/b&gt; 20:00&lt;br&gt;
&lt;b&gt;Sydney: &lt;/b&gt;22:00&lt;/p&gt;
&lt;p&gt;&lt;b&gt; &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The roster of phenomenal speakers features many MVPs and top-rated 
presenters, including &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvRttnKUIPgEfTwaZKi_dXRCm0ovRW61__s3U7eGggyi29sZlGbafhj1SG2mGAaJrtYaKN3pppoQkwoUVglQ0NNt9PML74oermOhrP3pnkU_s-D5oI8H-2koge2DYhQpFYO0KOXAqCE6WbYb52FnS10YDWdXr2oD9L_vSdZKCgcAdTJmLrHpEiNFo6fTZwgzEU=" target="_blank"&gt;Adam Machanic&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUsRaxJ-QQCeYZucHSYDtsC3_l0d7zxFi0lAlAzS7a3AtrUnxJhfZu53TduvDTatyis5p_rmCC4zme5dDD7RsI1rA2TtnTg8o9M2x62WSbClCdcg7YB3Ky8BQCcLU7OvwLtDuSCJW2zj4M3fd08RypckBHINg1AnrCaTNzFvtursClTGPUB_O_OX" target="_blank"&gt;Andy Leonard&lt;/a&gt;, &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUtk-d8XeuFcUzbuJ93heeDU3L7AodjJcYHIYRS5miiYyFKGkxiw6tD1ovm0CHNI7qs8_sinbPz5GCpKIlLIVwKRZNn5fYqjJ1K1MrUXs2cgmb0DHedjPK3Zd12MuppYDN0xRd6OGcpH9XY4kW_Ks5jjgrVRQ6baCs2liRiqcSgtgwSlNqG0QFKsIVsiRr6wckVPNPjmsRXEsg==" target="_blank"&gt;Brad McGehee&lt;/a&gt;, &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvBoTeroUXVe1dwpHetEIajlBdTK-g57SuIoCeuKCsh-N8Er7lNvCsXBK01xw7I7dLzSuI7e9Y-8YPHXCJxS2arZoRPGc3wd9t_S5TbyWQAYP-qzOKpnSzqeToRSz4OY19b7-KG-Bx3X31e3QqWtYUXGZHsyKnQC7x8JqCbtA3WaSbmgl-xKuQD" target="_blank"&gt;Brent Ozar&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUv759uUGW0Z9kO0wSn-AhOGr6kyD__KRrZyZNtq9jUPojFIgXmC0jMKpKMapT2zpVzcynWQ-dXXyQdPT2NStMz85l3ACdj5QqJml11NrL09sEA4_1k-KdbaSh6zE63qaBFLRM3FYzq7TzlZXEzjp2XCir4W2JWRhwh-dnqHCKhkZWECX09gDD7X" target="_blank"&gt;Brian Knight&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvPZpqX_VoYtK9mvoNAFEcaaKwxUGUEXfsCaDkFkeF4ywTuXIFTNZ58dybX-GOah7QtZippU9LoSx2nLoQMtN6VJjYQZPFFJPsqY8Gw42bGkveXAK_5af5kOMih2T3qaAnfXxpJod12KXfYovXZfyRwZkYTX4UzoRHMjvvPEehZkBvuMtm2lljwYZrvW95S1Pw8_NNjngU_9w==" target="_blank"&gt;Chuck Heinzelman&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvTsIn8-QLqkXdl4TUlAkrSwlzwo951WIxpdvrUoHCWXnH_8b0yNohWDPSVfHnpU6Xg0GMjIBpYDNkba_uyUgcrQ6GgN9GIv6IVqPYNhTCKxyWTkrfcUzJ835uFb8qS5yfdXKrihHQkyPZM7suYxDeQAIVUbi8PVu38ZfMXYYNkjtRTF14d3y5KtSVu-B3XjiQ=" target="_blank"&gt;Dean Richards&lt;/a&gt;, &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvrDILg7v9w8Ml-qJDVtbyZCOoLSmbQ3VIQ0yxSeOW6V6ymnNcxUM1njL3B2PPXhy2E3lPDDqykyxJdorGzhwp2NC5E1PSqbCBWFJWcJfInd-eytt4fOhGWEUvM2wTvbjUGH9ZXB-I0PNCaCCwNr_9f2E_x5gHLhCzdUedqaEQFMsMdKOqFhnK-cXVIZ6CHc94z2CWcagTyxg==" target="_blank"&gt;Don Kiely&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUt8cKaJG-xGr7eRaLE-aBuMofXRyMc_rs5HGZ-rInl4bCT0XuO0xsoBr55n9T8hqhUB_tMDzphgjhZ49uL_vis3-w04R3SJpGTgW1H16twj9nOIcA-97xFYXrGcjCEQo-mKYhJD5Cx_RPvog8ffrSmlG9j0tT4q4Md41-d9YPTEO8-afoaCvpHC" target="_blank"&gt;Don Vilen&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUsb0V0NrWcKVmZPC8ArhHlfJEil9C_Uqgi1sBCbCFDu_TZ5jXslmymf2YLEyKi-SjQSXa6AM5UoXSYZIXUELCmoUzTVk4QZDoJFKIwLX-4zzKkKHEZxbp0hzxqKyQxA6o2o2ryv8hsx1il_9XF_spp36xgALxqERtJajS3hYoFXvZmPy8IxmRiHwEMsHevSp40wARy018XNuw==" target="_blank"&gt;Donald Farmer&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUv9V-QhuKbDXajC6kkRkHF5ZPn-mQrAaoRvOpBkOLIQkk-N2EyUIp2-ix4kUvts7xQ-fH_cdzFCg9Q_69WPSYBR6AFl9mBOK7dlIN_iJwffAQzTMKJtdHoN-qbA0FD-qJq7gK-jchd7Fex1PD_FvvxtV_b8GJq52u99Mj_qd0qRtdMg034WzCZp7qcwa2rN75I8Vott98Y1_w==" target="_blank"&gt;Glenn Berry&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvYa5FkvZ5tRxOc1zGqx2wqOsTpP0QbXPZPFm9521D_qlnQR6D5ACuGozNXTXffrHIfxe7LoxY2ALQHElm-KugmxaWoPT0yi1VHBDshWOUHNH6zfNkJJn0UXw77LJUXzaIlscW21Y9rfpr0EgURQ_6s34c2pI3WAds9K_FNer6uHxvedkTuhYiyenrCCr6LFvjPRBZW53i_nA==" target="_blank"&gt;Greg Low&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUtsxBZq1jw_KH-qLD2DI52_Y3XyYzbSHSb6yM-rQWl-OfC4LOVHZlklIV77Wh99pJE9CVxGuWvWTstzEUpluDUVujDZ9ASuzhnpz4LzLoe3GXpaoLFd8lz3ovujAMpLpXjRguXfZg2vTPQhUPAjh4cxvrM1pPx8qPK9lSNc6v-BcQ==" target="_blank"&gt;Jacob Sebastian&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUt3xSciFZoYQXjH0eDBFccjTzucFLHn-0Lf7CYyUhzIZ4Uia63EprDWmgE_oQPb7YBfEggx6pabfUWDIRugLaWapJndFesNODqZl7oqtIKkx-INEkfhIZ1u3_eCXmtUJJxPPKRsfu8FOMnOqpDHagdCC3BtQxy6PpvgcLMKh-3yLpkBxIQVAOJM_dMd1ViuKl9qITtmaeDQuA==" target="_blank"&gt;Jessica Moss&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUsUzI5ItTP5FTNthnveT4hXmo1Uvr338NTJPBJh8E-9XopMNGPO5F5moLusnJltz_g7CPq9EYUP8u3ikHsq6xpZSQY0zCkgiBBgo06vZhShT0sHA8YaKNx12jOCe9m11yE3HTdV2KixPB6R88Py1Fu4bO-umonCYvtC7yHxCntDv8bpr4u9Z_22UQije_-Gj54=" target="_blank"&gt;Kevin Cox&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUuOZjF-KrHxujYlsOQMesC-mjFLtFzLOWgl_FT1teNLftVY1iE8GydpQ1TGM9SLvJmNqxuu6UxYOAt5v1VqsjIFkexYTKE2pHD4rFc6-WLwjibWnqbvYhawz06OkxRZq6UwkwpcGq2lyhRfYCNqMpq0hlTqEy8k1LSsnHc1v0kUtKSWyPtJoRER" target="_blank"&gt;Kevin Kline&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvzkUExcYeTUjo01daTWZysvyT0Xl2lZD01dcgBM-F_1-zVrXx0pJjT5lea8BKg0GXEeO_Hi8BXJUHhMMqNVWvCD9RewkREnogAYUBysea-saeu0Tzgyt2qNXKKRm1TLrlpu6PwEL5Cj1VgaWeAl2Y0jnAd9U51R4zbH-SpNbRKm8TTAV3b5YOA" target="_blank"&gt;Louis Davidson&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvbuhRENF0zC3pBuIU8Q3c0puWIlJI3RAfNuy9o0ZgswbEdzXbb9rOm6ye-AEkikcRyqOQNnCgmorga_YcqJE6YFUW1PiFjBYxUhJDfxdBixJF4LYe5gd6Xo9Fx4c4zEGk92d92kc1zJHcPOIQrdaIwluo5yFF25_6JqSEmiJeWDr9jCA--66D_el0eFxfLdxfoGL0NyDpLuw==" target="_blank"&gt;Maciej Pilecki&lt;/a&gt;, &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUsEEk6IDxtt9nT6LonA4DZMTHGhX1DviG10I83vsVLhTBKQvlchQqJKa84nZ9lnccfPlcbApb_R6JdFHroZXF_ppwtqOm1y62h3OqjHOG93QiXb1XdM1P1he6QG1H0swrxCVuq3ZZWo2t83SSYiAeD-pEoVXSDP5JSwAv7kknZlgNpHEbnq8DA3aGJj5IEhzRF-w2u2TVpZAWzReeX48B7d" target="_blank"&gt;Peter Myers&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUs86mRTX-_nLk8gehGTsYzAVDOaSQKMH09ibFQKQ58TWVmmzIaB4_8G3roFb9C5iwGbvBqvGuf4vVrkq2WgFc517HHwWlLz-2Hey-B1vIZoLa_ijX2HwEHy_QZskeM87IOrFMTU0x3K_jzp_KLYsp1aBlqovKuRZ_n4RSOVJ7cP2WQk0dlGvb_obKmsuhP9RLg=" target="_blank"&gt;Peter Ward&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUsiHcxJKKv-htoBbEWbpPoiPAt8U3y38VLn2HJSoEsMZvHSdwcFmsxpVB2osQKfl1fF2nxojcHR7aIqYyTsewdIaO5_RaWc__btcWDJEWv9HCNuMhi0Ovwn4bO_ggahrW0JW7paP6CKDiefxB5BT3u1jEUuQYd865VMGpeBwUjrpcp77JCqt5KXZnYzFbTNMUrB6ZIiJeTnuw==" target="_blank"&gt;Rushabh Mehta&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUvaOlOWHhuddpbCUBj46nDISE8cADHje4X07zaJlwKF8Lyc1fLEDCoKDGS57P3gHu8A7OjnurtxvToyamHijnfKBCJeY4tEqcN-0zxjKOIUMVtHs1zA0fPjNM5NwPSeAOs2xrygq6i5oyI5akHmD9ko1pe2qaFU3Auoy3pjT1dhjG5ueAEOr3wHnoU3Nbnc4gzy5LvCbBpKSw==" target="_blank"&gt;Sean McCown&lt;/a&gt;, &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUuBBIB0j-f-_qw_941E_ejf46YJYRRORUoxg96203opjnxuS-DJzcCWrU87L9gMsJSTn9mTbCGxXKdAkhAQPoOgQxgOi-urQyt_mVYZCPjOYSo7BnQt0KGY_kYPiSxxfF6r4IFNgs3KnwBUt8zhQyzMMF7wYu22iLFmvy2TECtPPqEyzOZWK_Yj" target="_blank"&gt;Simon Sabin&lt;/a&gt;,&amp;nbsp;&lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUtKRe3ZF5buPuLCr4qosGxeyUxrn2t8Tz4avfnvgMFrdmWfn6B8pldAThHkMNnUVW9k2H6KlX_jUfUsO7b8xJxmOVwkxefotak3nF-7XNopaS1_bq6L5VKLaq9PhkXEhFS6pyfQGNFbiSAacXzks3bKc_DpL3GKUqXOa0rPCAviwwsTNcn-3HP4tuD4C6-zR6poTORcsXVNcQ==" target="_blank"&gt;Thomas Grosher&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Check out &lt;a href="http://r20.rs6.net/tn.jsp?et=1103309079192&amp;amp;s=12702&amp;amp;e=001gzGzoQWNOUucFSQNQD9KQ4Ntv3s9hlw6Q-cJKsl3izrdqF1yFPMNJOgl89Oz2Oxbw4e9-tx93DriP9fRXDPbHc4k3JOMfoOL0zRptrY-Az6_iobSekFy_wlyU7flegXgvCU_FWWd5weQJdIG1bUc_RAvtRW0dSuG" target="_blank"&gt;all the great SQL Server     sessions&lt;/a&gt; you can 
attend for FREE. Share this information with a friend or colleague.&lt;/p&gt;
&lt;p&gt;PASS is looking forward to having you join us all for this 
exceptional event.     Please contact us at &lt;a href="mailto:24hrs@sqlpass.org" target="_blank"&gt;24hrs@sqlpass.org&lt;/a&gt; with any questions.&amp;nbsp; You can also find lots of general details at &lt;a href="http://www.sqlpass.org/24hours/2010/"&gt;http://www.sqlpass.org/24hours/2010/&lt;/a&gt;.&lt;/p&gt;</description></item></channel></rss>