<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://beyondrelational.com/live/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 'SQL Server 2008 R2'</title><link>http://beyondrelational.com/live/search/SearchResults.aspx?a=1&amp;o=DateDescending&amp;tag=SQL+Server+2008+R2&amp;orTags=0</link><description>Search results matching tag 'SQL Server 2008 R2'</description><dc:language>en-US</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>SQL Server Page Restore</title><link>http://beyondrelational.com/live/blogs/ana/archive/2012/01/10/sql-server-page-restore.aspx</link><pubDate>Tue, 10 Jan 2012 06:00:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:15186</guid><dc:creator>Ana</dc:creator><description>&lt;p align="justify"&gt;We all know how backup is important. I usually say that restore is more important than backup. We can create backup but if we don’t know how to restore it, or we cannot because it isn&amp;#8217;t correct we have nothing. So always check your backups and restore it on different locations. In situation when you need to react quickly restore practice can save you a lot of times and nerves.&lt;/p&gt;
&lt;p align="justify"&gt;In this post I decided to show how to use page restore. Page restore isn’t something that has to be done on a regular basic, but every DBA should be familiar with technique and requirements in case page restore is needed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Page restore requirements and limitations&lt;/strong&gt;&lt;/p&gt;
&lt;p align="justify"&gt;Page restore is future available from SQL server 2005 version. Enterprise edition allows online page restore (restore of metadata pages require offline restore) while standard edition support only offline page restore.&lt;/p&gt;
&lt;p align="justify"&gt;Page restore is a nice future especially if you have a large database and a few damaged pages. As with all nice futures, page restore has some requirements and limitations. To be able to use page restore database must to be in full or bulk logged recovery model. Page restore must start with full, file or filegroup backup and there must be an unbroken chain of log backups up to the current log file. All log backups must be applied so that the page is brought up to date with the current log file.&lt;/p&gt;
&lt;p align="justify"&gt;Be aware that page restore cannot be used to restore: transaction log, full-text, allocation pages (GAM, SGAM, PFS, DIFF, ML), file header page (PageId =0 ), boot page (PageId =9).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How to identify damaged pages?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Damaged pages can be identified in multiple ways.&lt;/p&gt;
&lt;p&gt;1. Sometimes, executing some queries on database can result in an error 824 (invalid page checksum error).&lt;/p&gt;
&lt;p&gt;Msg 824, Level 24, State 2, Line 1&lt;/p&gt;
&lt;p&gt;SQL Server detected a logical consistency-based I/O error: incorrect checksum (expected: 0xbf649245; actual: 0xbf648ec5). It occurred during a read of page (1:80) in database ID 9 at offset 0x000000000a0000 in file &amp;#8216;D:\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\CorruptDB.mdf&amp;#8217;. Additional messages in the SQL Server error log or system event log may provide more detail. This is a severe error condition that threatens database integrity and must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online.&lt;/p&gt;
&lt;p&gt;Analyzing the error we can see that database with databaseid = 9 has damaged page 80 on file 1 (page 1:80).&lt;/p&gt;
&lt;p&gt;2. Damaged pages can be identified with DBCC CHECKDB command. Example results:&lt;/p&gt;
&lt;p&gt;Msg 8928, Level 16, State 1, Line 2&lt;br /&gt;
Object ID 2105058535, index ID 0, partition ID 72057594038779904, alloc unit ID 72057594039828480 (type In-row data): Page (1:80) could not be processed. See other errors for details.&lt;br /&gt;
Msg 8939, Level 16, State 98, Line 2&lt;br /&gt;
Table error: Object ID 2105058535, index ID 0, partition ID 72057594038779904, alloc unit ID 72057594039828480 (type In-row data), page (1:80). Test (IS_OFF (BUF_IOERR, pBUF-&amp;gt;bstat)) failed. Values are 12716041 and -4.&lt;br /&gt;
CHECKDB found 0 allocation errors and 2 consistency errors in table &amp;#8216;CorruptTable&amp;#8217; (object ID 2105058535).&lt;br /&gt;
CHECKDB found 0 allocation errors and 2 consistency errors in database &amp;#8216;CorruptDB&amp;#8217;.&lt;br /&gt;
repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (CorruptDB).&lt;/p&gt;
&lt;p&gt;3. dbo.suspect_pages table on msdb database. It contains one row per page that failed with an 823 error or an 824 error.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://amihalj.files.wordpress.com/2012/01/firtst3.png"&gt;&lt;img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Firtst3" src="http://amihalj.files.wordpress.com/2012/01/firtst3_thumb.png?w=484&amp;#038;h=46" alt="Firtst3" width="484" height="46" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;4. Check the SQL Server Error Log, and look for errors related to corrupted pages&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How to perform page restore?&lt;/strong&gt;&lt;/p&gt;
&lt;p align="justify"&gt;To perform page restore we need full backup containing un-damaged pages, differential and all transaction log backups to the current time. In the RESTORE DATABASE statement, we need to use the PAGE clause to list the page IDs of all of the pages to be restored. If we use offline page restore we first need to create backup log with NORECOVERY option. In this example, I will use online page restore.&lt;/p&gt;
&lt;div id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:fc26f330-79b8-4a45-b284-2170c28d7f14" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;"&gt;&lt;pre class="brush: sql;"&gt;--Restore database
RESTORE DATABASE CorruptDB PAGE = &amp;#39;1:80&amp;#39;
FROM DISK = &amp;#39;D:\Backup\CorruptDB_full.bak&amp;#39;
WITH NORECOVERY
-- Restore log
RESTORE LOG CorruptDB
FROM DISK = &amp;#39;D:\Backup\CorruptDB_log1.bak&amp;#39;
WITH NORECOVERY

/*
Processed 1 pages for database &amp;#39;CorruptDB&amp;#39;, file &amp;#39;CorruptDB&amp;#39; on file 1.
RESTORE DATABASE ... FILE= successfully processed 1 pages in 0.023 seconds (0.339 MB/sec).
Processed 0 pages for database &amp;#39;CorruptDB&amp;#39;, file &amp;#39;CorruptDB&amp;#39; on file 1.
RESTORE LOG successfully processed 0 pages in 0.002 seconds (0.000 MB/sec).
*/&lt;/pre&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p align="justify"&gt;In the example above, full backup with pageid = 80 is restored with option norecovery. Then we restored log with norecovery option. If we try to restore log with RECOVERY option without taking the last backup we would get an error:&lt;/p&gt;
&lt;p&gt;Processed 0 pages for database &amp;#8216;CorruptDB&amp;#8217;, file &amp;#8216;CorruptDB&amp;#8217; on file 1.&lt;br /&gt;
The roll forward start point is now at log sequence number (LSN) 43000000026100001. Additional roll forward past LSN 43000000042700001 is required to complete the restore sequence.&lt;br /&gt;
RESTORE LOG successfully processed 0 pages in 0.002 seconds (0.000 MB/sec).&lt;/p&gt;
&lt;p&gt;You can query database and all data are available except damaged page. If we try to query data from table containing damaged page after we restored it with NORECOVERY option we will get an error:&lt;/p&gt;
&lt;p&gt;ERROR:&lt;/p&gt;
&lt;p&gt;Msg 829, Level 21, State 1, Line 1&lt;br /&gt;
Database ID 9, Page (1:80) is marked RestorePending, which may indicate disk corruption. To recover from this state, perform a restore.&lt;br /&gt;
&lt;/p&gt;
&lt;div id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:b6c3b3c9-c388-44e7-985d-e541596cc2b8" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;"&gt;To finalize page restore we need to take log backup and to restore it with RECOVERY option.&lt;br /&gt;
&lt;pre class="brush: sql;"&gt;-- Backup DB log
BACKUP LOG CorruptDB
TO DISK = &amp;#39;D:\Backup\CorruptDB_log2.bak&amp;#39;
-- Restore DB log with RECOVERY option
RESTORE LOG CorruptDB
FROM DISK = &amp;#39;D:\Backup\CorruptDB_log2.bak&amp;#39;
WITH RECOVERY&lt;/pre&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p align="justify"&gt;Now we can query our table without error.&lt;/p&gt;
&lt;p align="justify"&gt;Offline page restore procedure is slightly different. With offline restore we first need to take log backup with NORECOVERY option. It will put database to restoring state. Then we need to restore full database using PAGE clause and NORECOVERY option. Then differential and all transaction log backup need to be applied with NORECOVERY option. Last transaction backup, taken with NORECOVERY option, should be restored with RECOVERY option.&lt;/p&gt;
&lt;div class="InlineAdBox"&gt;&lt;b&gt;Republished with author&amp;#39;s permission. See the original post &lt;a href="http://amihalj.wordpress.com/2012/01/10/sql-server-page-restore/" target="_blank"&gt;here.&lt;/a&gt; &lt;/b&gt;&lt;/div&gt;</description></item><item><title>DBCC CHECKDB WITH ESTIMATEONLY: Do you trust it?</title><link>http://beyondrelational.com/live/blogs/ana/archive/2011/11/10/dbcc-checkdb-with-estimateonly-do-you-trust-it.aspx</link><pubDate>Thu, 10 Nov 2011 06:00:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:14473</guid><dc:creator>Ana</dc:creator><description>&lt;p style="text-align:justify;"&gt;Yesterday I run into interesting situation with DBCC CHECKDB WITH ESTIMATEONLY command. Later I find out that it’s a known bug in SQL Server 2008 R2, but I experienced it for the first time and I think that it’s a good topic for my post. Here is the story.&lt;br /&gt;
Yesterday, after I restored database from the backup I decided to run DBCC CHECKDB on it. Data file size of tempdb database was 2.5GB. I know that DBCC CHECKDB is a resource-intensive task and it also require space in tempdb. I wanted to be sure that tempdb size is appropriate to accommodate the CHECKDB requirements so I run DBCC CHECKDB WITH ESTIMATEONLY.&lt;/p&gt;
&lt;p style="text-align:justify;"&gt;DBCC CHECKDB(DatabaseName) WITH ESTIMATEONLY&lt;/p&gt;
&lt;p&gt;Here is the output:&lt;br /&gt;
Estimated TEMPDB space needed for CHECKALLOC (KB): 40443&lt;br /&gt;
Estimated TEMPDB space needed for CHECKTABLES (KB): 13619&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s ~ 53MB. I expected larger values because database occupies 28GB of space. But I thought that tempdb with 2.5GB of data file size is enough because there will be no other workload on the server.&lt;/p&gt;
&lt;p style="text-align:justify;"&gt;I run DBCC CHECKDB(DatabaseName) and command completed successfully in about 11 minutes. Later I noticed that the size of tempdb data file is 3GB and data file auto growth occurred around the time of the DBCC CHECKDB execution.&lt;br /&gt;
That was very strange. Estimated tempdb space was about 53MB but it used more than 2.5GB of tempdb space. It is almost 50 times more than estimated space needed and it can lead to problem especially on very large databases. I decided to run DBCC CHECKDB command again and see usage of tempdb database.&lt;br /&gt;
Here is the script:&lt;/p&gt;
&lt;p&gt;&lt;pre class="brush: sql;"&gt;
DECLARE @read BIGINT
DECLARE @write  BIGINT

SELECT  @read = SUM(fs.num_of_bytes_read),
@write = SUM(fs.num_of_bytes_written)
FROM    tempdb.sys.database_files AS df
INNER JOIN    sys.dm_io_virtual_file_stats(2, NULL) AS fs
ON fs.file_id = df.file_id
WHERE df.type = 0

DBCC CHECKDB(DatabaseName)

SELECT  (SUM(fs.num_of_bytes_read) - @read) / 1024. / 1024. AS tempdb_read_MB,
(SUM(fs.num_of_bytes_written) - @write) / 1024. / 1024. AS tempdb_write_MB,
(SELECT  internal_objects_alloc_page_count * 8. / 1024
FROM    sys.dm_db_task_space_usage
WHERE   session_id = @@SPID) AS internal_objects_alloc_size_MB
FROM    tempdb.sys.database_files AS df
JOIN    sys.dm_io_virtual_file_stats(2, NULL) AS fs
ON fs.file_id = df.file_id
WHERE df.type = 0
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Results:&lt;br /&gt;
tempdb_read_MB         tempdb_write_MB        internal_objects_alloc_size_MB&lt;br /&gt;
3192.21093750000       3192.60156250000       3194.562500&lt;/p&gt;
&lt;p&gt;From results, we can see that more than 3.1GB of data are written and read during DBCC CHECKDB execution.&lt;br /&gt;
I executed few more tests with different databases to see a difference between estimated tempdb space and the real usage during CHECKDB operation and only first database had issue with it.&lt;/p&gt;
&lt;p&gt;I googled and found the excellent blog post by Paul Randal (&lt;a href="http://www.sqlskills.com/blogs/paul/"&gt;blog&lt;/a&gt;|&lt;a href="http://twitter.com/@PaulRandal"&gt;twitter&lt;/a&gt;): &lt;a href="http://www.sqlskills.com/BLOGS/PAUL/post/How-does-DBCC-CHECKDB-WITH-ESTIMATEONLY-work.aspx"&gt;How does DBCC CHECKDB WITH ESTIMATEONLY work?&lt;/a&gt; At the end of the post Paul wrote:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt; &amp;#8221;PS Beware also that I&amp;#8217;ve heard of several cases of a bug in SQL Server 2008 R2 where the output is incorrectly very low. The dev team is aware of this issue and are working on it.&amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Be careful if you need to rely on DBCC CHECKDB WITH ESTIMATEONLY output.  You can be surprised, especially if you are working with large or very large databases.&lt;/p&gt;
</description></item><item><title>Microsoft SQL Server 2008 R2 Administration Cookbook - eBook and paperback Book - quick answers to common problems #sql #book</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2011/05/25/microsoft-sql-server-2008-r2-administration-cookbook-ebook-and-paperback-book-quick-answers-to-common-problems-sql-book.aspx</link><pubDate>Wed, 25 May 2011 23:25:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:12419</guid><dc:creator>sqlmaster</dc:creator><description>&lt;div class="postcontent"&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;This is something big in my life to announce, it gives pleasure and happiness to share about my first book (ebook and hard paper format)&amp;nbsp; titled : &lt;strong&gt;Microsoft SQL Server 2008 R2 Administration Cookbook&lt;/strong&gt; is released and out now. This book has an unique approach as a task based real-world best practices in a cookbook style. Foreword by (thanks to) Brad McGehee, SQL Server MVP &amp;amp; Director of DBA Education &amp;ndash; RedGate software.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;My thanks to the technical reviewers: &lt;/span&gt;&lt;a target="_blank" href="http://blogs.extremeexperts.com/"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Vinod Kumar&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; from Microsoft India, &lt;/span&gt;&lt;a target="_blank" href="http://www.ravichaganti.com/blog/"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Ravikanth Chaganti&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; - SharePoint MVP and &lt;/span&gt;&lt;a target="_blank" href="http://venkattechnicalblog.blogspot.com/"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Venkatesan Prabu&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; - SQL Server MVP for their efforts to shape up the book with full-blown technical content. Also special thanks to &lt;/span&gt;&lt;a target="_blank" href="http://www.sql-server-citation.com/"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Hemant Goswami&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; - SQL Server MVP [Author - &lt;/span&gt;&lt;a target="_blank" href="https://www.packtpub.com/microsoft-sql-server-2008-high-availability/book?utm_source=bundle&amp;amp;utm_medium=msqls8reb&amp;amp;utm_term=Microsoft%2BSQL%2BServer%2B2008%2BR2%2BAdministration%2BCookbook&amp;amp;utm_content=Microsoft%2BSQL%2BServer%2B2008%2BHigh%2BAvailability&amp;amp;utm_campaign=open%2Bsource"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Microsoft SQL Server 2008 High Availability&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; book]. Not to mention about the Technical Editors and Development Editors from &lt;/span&gt;&lt;a target="_blank" href="http://www.packtpub.com/"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Pactk Publishing&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; who has guided me all the way through in this journey, glad to work with these bunch of professionals.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="font-family:verdana,geneva;"&gt;What you will learn from this book :&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Discover best practice solutions for upgrading to SQL Server 2008 R2&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Employ the new enhancements in SQL Server 2008 R2 &lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Build a strategic multi-server management&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Automate administration tasks&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Implement the inter-operability of SQL Server Analysis Services and SQL Server Reporting Services with SharePoint 2010 services&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Manage and administer core SQL Server 2008 R2 Business Intelligence Services&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Implement and manage essential Availability and Programmability enhancements&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Implement best practices and build troubleshooting techniques on a multi-instance and multi-database environment&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Provides Advanced Administration techniques for SQL Server 2008 R2 as a book or eBook&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Covers the essential Manageability, Programmability, and Security features&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Emphasizes important High Availability features and implementation&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;Explains how to maintain and manage the SQL Server data platform effectively&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;font-size:small;"&gt;&lt;strong&gt;Detailed Information &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;b&gt;Language : &lt;/b&gt;English&lt;br /&gt;&lt;b&gt;Paperback : &lt;/b&gt;468 pages &lt;br /&gt;&lt;b&gt;Release Date : &lt;/b&gt;&lt;span class="date-display-single"&gt;May 2011&lt;/span&gt;&lt;br /&gt;&lt;b&gt;ISBN : &lt;/b&gt;1849681449&lt;br /&gt;&lt;b&gt;ISBN 13 : &lt;/b&gt;978-1-84968-144-5&lt;br /&gt;&lt;b&gt;Author(s) : &lt;/b&gt;&lt;/span&gt;&lt;a href="https://www.packtpub.com/authors/profiles/satya-shyam-k-jayanty"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Satya Shyam K Jayanty&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;Get &lt;/span&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book#in_detail"&gt;&lt;span style="font-family:verdana,geneva;"&gt;In more detail&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; with &lt;/span&gt;&lt;a href="https://www.packtpub.com/toc/microsoft-sql-server-2008-r2-administration-cookbook-table-contents"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Table of contents&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; and here is the &lt;/span&gt;&lt;a target="_blank" href="http://www.packtpub.com/sites/default/files/1445-chapter-1-getting-started-with-sql-server-2008-r2.pdf?utm_source=packtpub&amp;amp;utm_medium=free&amp;amp;utm_campaign=pdf"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Sample chapter&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; for download, have a look at &lt;/span&gt;&lt;a target="_blank" href="http://packtlib.packtpub.com/library/9781849681445" style="line-height:20px;vertical-align:middle;font-weight:bold;"&gt;&lt;span style="font-family:verdana,geneva;"&gt;PacktLib&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style="font-family:verdana,geneva;"&gt;Buy &amp;#39;&lt;/span&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book?utm_source=bundle&amp;amp;utm_medium=msqls8reb&amp;amp;utm_term=Microsoft%2BSQL%2BServer%2B2008%2BR2%2BAdministration%2BCookbook&amp;amp;utm_content=Microsoft%2BSQL%2BServer%2B2008%2BHigh%2BAvailability&amp;amp;utm_campaign=open%2Bsource"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Microsoft SQL Server 2008 R2 Administration Cookbook&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;#39; with &amp;#39;&lt;/span&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-high-availability/book?utm_source=bundle&amp;amp;utm_medium=msqls8reb&amp;amp;utm_term=Microsoft%2BSQL%2BServer%2B2008%2BR2%2BAdministration%2BCookbook&amp;amp;utm_content=Microsoft%2BSQL%2BServer%2B2008%2BHigh%2BAvailability&amp;amp;utm_campaign=open%2Bsource"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Microsoft SQL Server 2008 High Availability&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;#39; and get &lt;b&gt;50% off&lt;/b&gt; both the eBooks. Just add both the eBooks to your shopping cart and enter &amp;#39;&lt;b&gt;msqls8reb&lt;/b&gt;&amp;#39; in the &amp;#39;Enter Promotion Code&amp;#39; field. Click &amp;#39;Add Promoitonal Code&amp;#39; and the discount will be applied.&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description></item><item><title>SQL Server Migration tools and Best practice anlayzer #sql #sqltools</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2011/05/12/sql-server-migration-tools-and-best-practice-anlayzer-sql-sqltools.aspx</link><pubDate>Thu, 12 May 2011 10:49:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:12310</guid><dc:creator>sqlmaster</dc:creator><description>&lt;p&gt;If you are a DBA in a heterogenous data source enviornment then SQL Server Migration Assistant is a must-have tool in hand.&lt;/p&gt;
&lt;p&gt;During consulting assignments I go through I keep the tools in hand that will help me to carry on the important tasks efficiently.&lt;/p&gt;
&lt;p&gt;SQL Server Feature pack is the name that are available to download for free and recently few of them had latest releases too, here is the information about migration assistant tools :&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;strong&gt;Microsoft&amp;reg; SQL Server&amp;reg; Migration Assistant&lt;/strong&gt; &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp; 
&lt;ul&gt;
&lt;b&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188675"&gt;1. Microsoft SQL Server Migration Assistant for Access v4.2&lt;/a&gt;&lt;/b&gt; - out of the two downloads, &amp;lsquo;SSMA 2008 for Access&amp;rsquo; enables migration to SQL Azure&lt;br /&gt;&lt;b&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188705"&gt;2. Microsoft SQL Server Migration Assistant for MySQL v1.0&lt;/a&gt;&lt;/b&gt; - out of the two downloads, &amp;lsquo;SSMA 2008 for MySQL&amp;rsquo; enables migration to SQL Azure&lt;br /&gt;&lt;b&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188706"&gt;3. Microsoft SQL Server Migration Assistant for Oracle v4.2&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188709"&gt;4. Microsoft SQL Server Migration Assistant for Sybase v4.2&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188711"&gt;5. Microsoft SQL Server Migration Assistant 2008 for Sybase PowerBuilder Applications v1.0&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/ul&gt;
&lt;/li&gt;
Microsoft SQL Server Migration Assistant (SSMA) is a family of tools that dramatically cut the effort, cost, and risk of migrating from Oracle, Sybase, MySQL or Access to any edition of SQL Server 2008 R2 or SQL Server 2008 or SQL Server 2005. SSMA for MySQL and SSMA for Access products also support simple and direct migration to SQL Azure. SSMA provides an assessment of migration efforts as well as automates schema and data migration.&lt;br /&gt;&lt;br /&gt;Audience(s): &lt;b&gt;Customer, Partner, Developer&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a name="BPA"&gt;&lt;/a&gt;Further I would also recommend all the users (not only DBAs) to download and run the Best practices analyzer tool on your environment that can report&amp;nbsp; handful information:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Microsoft&amp;reg; SQL Server&amp;reg; 2008 R2 Best Practices Analyzer&lt;/b&gt; &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp; 
&lt;ul&gt;
&lt;b&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188674"&gt;Download Site&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;/li&gt;
SQL Server 2008 R2 Best Practices Analyzer is an analysis tool that validates your system configuration and execution against a recommended set of best practices developed by SQL Server Engineering and Customer Support.&lt;br /&gt;&lt;br /&gt;Audience(s): &lt;b&gt;Customer, Developer&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;
&lt;/ul&gt;</description></item><item><title>SQL Server 2008 R2 Service Pack 1 CTP - test and feedback #sql #sqltools #ctp</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2011/05/11/sql-server-2008-r2-service-pack-1-ctp-test-and-feedback-sql-sqltools-ctp.aspx</link><pubDate>Wed, 11 May 2011 11:02:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:12311</guid><dc:creator>sqlmaster</dc:creator><description>&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 service pack 1 contains all the cumulative update pack releases since RTM release. This means SP1 CTP consist the CU Package releases from 1 to 6, as CU7 has released on April 18th 2011.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;So before you test the SQL2008R2SP1 CTP, I would encourage to go through the release notes that gives information about list of issues that are fixed and what&amp;#39;s new with this release:&lt;/span&gt;&lt;/p&gt;
&lt;p class="section"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;The following features are new in Service Pack&amp;nbsp;1 (SP1).&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;div class="section"&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;b&gt;Dynamic Management Views for increased supportability. &lt;/b&gt;sys.dm_query_stats DMV is extended with additional columns to improve supportabilities over troubleshooting long-running queries. New DMVs and XEvents on select performance counters are introduced to monitor OS configurations and resource conditions related to the SQL Server instance. &lt;/span&gt;&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div class="indent"&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;b&gt;ForceSeek for improved querying performance. &lt;/b&gt;Syntax for FORCESEEK index hint has been modified to take optional parameters allowing it to control the access method on the index even further. Using old style syntax for FORCESEEK remains unmodified and works as before. In addition to that, a new query hint, FORCESCAN has been added. It complements the FORCESEEK hint allowing specifying &amp;lsquo;scan&amp;rsquo; as the access method to the index. No changes to applications are necessary if you do not plan to use this new functionality.&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;b&gt;Data-tier Application Component Framework (DAC Fx) for improved database upgrades.&amp;nbsp;&lt;/b&gt;The new Data-tier Application (DAC) Framework v1.1 and DAC upgrade wizard enable the new in-place upgrade service for database schema management. The new in-place upgrade service will upgrade the schema for an existing database in SQL Azure and the versions of SQL Server supported by DAC. A DAC is an entity that contains all of the database objects and instance objects used by an application. A DAC provides a single unit for authoring, deploying, and managing the data-tier objects. For more information, see &lt;/span&gt;&lt;/em&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkId=199000"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;Designing and Implementing Data-tier Applications. &lt;/span&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;b&gt;Disk space control in PowerPivot for SharePoint.&amp;nbsp;&lt;/b&gt;This update introduces two new configuration settings that let you determine how long cached data stays in the system. In the new Disk Cache section on the PowerPivot configuration page, you can specify how long an inactive database remains in memory before it is unloaded. You can also limit how long a cached file is kept on disk before it is deleted.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;strong&gt;Fixed various issues.&lt;/strong&gt; This update fixes&amp;nbsp;many&amp;nbsp;knowledge base&amp;nbsp;issues that&amp;nbsp;are listed in &lt;/span&gt;&lt;a target="_blank" href="http://support.microsoft.com/kb/2463333"&gt;&lt;span style="font-family:verdana,geneva;"&gt;this&amp;nbsp;master KB article&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;Depending upon the number of SQL Server 2008 R2 instances and their editions you must test this CTP release, as it will be a standard policy in enterprises to deploy the new product until the service pack release. The list of SQL Server 2008 R2 editions are:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 Parallel Computing Edition&amp;nbsp;&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 Datacenter Edition&amp;nbsp;&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 Enterprise Edition and Developer Edition&amp;nbsp;(non-production)&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 Standard Edition&amp;nbsp;&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 Web Edition&amp;nbsp;&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 Workgroup Edition&amp;nbsp;&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 Express Edition&amp;nbsp; (free)&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;Here are the download links:&amp;nbsp;&lt;/span&gt;&lt;a target="_blank" href="http://www.microsoft.com/downloads/info.aspx?na=46&amp;amp;SrcFamilyId=BD200F8E-BA8A-45E3-AF59-E28A9E2D17DF&amp;amp;SrcDisplayLang=en&amp;amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2fA%2f2%2f7%2fA2769888-E7D4-440B-B768-26DA31738A0C%2fSQLServer2008R2SP1-KB2463333-IA64-ENU.exe" class="download-btn"&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;span class="download-btn-m"&gt;Download&lt;/span&gt;&lt;span class="download-btn-r"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;nbsp; IA64 bit SP1CTP, &lt;/span&gt;&lt;a target="_blank" href="http://www.microsoft.com/downloads/info.aspx?na=46&amp;amp;SrcFamilyId=BD200F8E-BA8A-45E3-AF59-E28A9E2D17DF&amp;amp;SrcDisplayLang=en&amp;amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2fA%2f2%2f7%2fA2769888-E7D4-440B-B768-26DA31738A0C%2fSQLServer2008R2SP1-KB2463333-x64-ENU.exe" class="download-btn"&gt;&lt;span class="download-btn-l"&gt;&lt;/span&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;span class="download-btn-m"&gt;Download&lt;/span&gt;&lt;span class="download-btn-r"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;nbsp;X64 bit SP1CTP and &lt;/span&gt;&lt;a target="_blank" href="http://www.microsoft.com/downloads/info.aspx?na=46&amp;amp;SrcFamilyId=BD200F8E-BA8A-45E3-AF59-E28A9E2D17DF&amp;amp;SrcDisplayLang=en&amp;amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2fA%2f2%2f7%2fA2769888-E7D4-440B-B768-26DA31738A0C%2fSQLServer2008R2SP1-KB2463333-x86-ENU.exe" class="download-btn"&gt;&lt;span class="download-btn-l"&gt;&lt;/span&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;span class="download-btn-m"&gt;Download&lt;/span&gt;&lt;span class="download-btn-r"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; X86 SP1CTP files, and for further read on &lt;/span&gt;&lt;a target="_blank" href="http://www.microsoft.com/downloads/info.aspx?na=46&amp;amp;SrcFamilyId=BD200F8E-BA8A-45E3-AF59-E28A9E2D17DF&amp;amp;SrcDisplayLang=en&amp;amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2fA%2f2%2f7%2fA2769888-E7D4-440B-B768-26DA31738A0C%2fMicrosoft+SQL+Server+2008+R2+SP1+Readme.htm" class="download-btn"&gt;&lt;span class="download-btn-l"&gt;&lt;/span&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;span class="download-btn-m"&gt;Download&lt;/span&gt;&lt;span class="download-btn-r"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; SQL Server 2008 R2 SP1 Readme notes. If you haven&amp;#39;t deployed Windows Server 2008 R2 and to get more information about installing and running SQL Server 2008 R2 on Windows Vista and Windows Server 2008 refer to this&amp;nbsp;&lt;/span&gt;&lt;a target="_blank" href="http://www.microsoft.com/sqlserver/en/us/default.aspx"&gt;&lt;span style="font-family:verdana,geneva;"&gt;link &lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;Finally a best practice note that do not install this CTP release on existing production/good-working SQL Server 2008 R2 instances, always test the CTP releases before you deploy them to production platform.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;Happy testing!&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Microsoft SQL Server 2008 R2 Administration Cookbook - Book and eBook expected June 2011. Pre-order now!</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2011/03/07/microsoft-sql-server-2008-r2-administration-cookbook-book-and-ebook-expected-june-2011-pre-order-now.aspx</link><pubDate>Mon, 07 Mar 2011 21:53:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:11723</guid><dc:creator>sqlmaster</dc:creator><description>&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Over 85 practical recipes for administering a high-performance SQL Server 2008 R2 system.&lt;/span&gt;&lt;/p&gt;
&lt;div class="book-image-container"&gt;
&lt;div class="book-image"&gt;&lt;a target="_blank" href="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book#in_detail"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&lt;img width="125" src="https://www.packtpub.com/sites/default/files/imagecache/productview/1445EN_MockupCover_Coock%20book.jpg" alt="Microsoft SQL Server 2008 R2 Administration Cookbook" height="152" title="Microsoft SQL Server 2008 R2 Administration Cookbook" class="imagecache imagecache-productview" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="book-image"&gt;
&lt;div id="tab_book_and_ebook_content"&gt;
&lt;div class="availability_bookpage"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Book and &lt;/span&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book#ebook-version"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;eBook&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt; expected &lt;span class="date-display-single"&gt;June 2011&lt;/span&gt;. Pre-order now!&amp;nbsp; Multi-format orders get &lt;span class="error"&gt;free&lt;/span&gt; access on &lt;/span&gt;&lt;a target="_blank" href="http://packtlib.packtpub.com/"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;PacktLib&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;, &lt;/span&gt;&lt;/div&gt;
&lt;div class="cover-price"&gt;
&lt;div class="label"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div style="top:5px;" class="shipping-block"&gt;
&lt;div class="shipping-banner"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&lt;img src="https://www.packtpub.com/sites/default/files/pp/free-shipping.png" alt="Free Shipping to US, UK, Europe and selected Asian countries" /&gt; &lt;/span&gt;&lt;/div&gt;
&lt;div class="add-to-cart"&gt;
&lt;div&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;This practical cookbook will show you the advanced administration techniques for managing and administering a scalable and high-performance SQL Server 2008 R2 system. It contains over 85 practical, task-based, and immediately useable recipes covering a wide range of advanced administration techniques for administering a high-performance SQL Server 2008 R2 system and solving specific administration problems. It shows how the SQL Server 2008 R2 system can be taken further.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Administer a scalable and high-performance SQL Server 2008 R2 system using advanced administration techniques&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&lt;span style="font-size:small;"&gt;&lt;b&gt;What you will learn from this book :&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Discover best practice solutions to upgrading to SQL Server 2008 R2&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Employ the new enhancements in SQL Server 2008 R2 &lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Discover the new features and add enhancements to Scalability, Manageability, and Security features&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Build a strategic multi-server management&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Automate administration tasks&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Implement the inter-operability of SQL Server Analysis Services and SQL Server Reporting Services with SharePoint 2010 services&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Manage and administer core SQL Server 2008 R2 Business Intelligence Services&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Implement and manage essential Availability and Programmability enhancements&lt;/span&gt; &lt;/li&gt;
&lt;li&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Implement best practices and build troubleshooting techniques on a multi-instance and multi-database environment&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&lt;span style="font-size:small;"&gt;&lt;b&gt;Approach&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;This book offers practical, task-based, and immediately usable recipes covering a wide range of advanced techniques for administering a high-performance SQL Server 2008 R2 system. In addition to its cookbook style, which ensures the solutions are presented in a clear step-by-step manner, its explanations go into great detail, which makes it good learning material for everyone who has experience in SQL Server and wants to improve. The book is designed in such a way that you can either read it chapter by chapter or refer to recipes that you want in no particular order.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Although the book is focused on specific Microsoft SQL Ser&lt;/span&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;ver 2008 R2, most of the concepts and explanations are also applicable to SQL Server 2008.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
&lt;table cellpadding="4" cellspacing="0" id="table3"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book?utm_source=bundle&amp;amp;utm_medium=msqls8reb&amp;amp;utm_term=Microsoft%2BSQL%2BServer%2B2008%2BR2%2BAdministration%2BCookbook&amp;amp;utm_content=Microsoft%2BSQL%2BServer%2B2008%2BHigh%2BAvailability&amp;amp;utm_campaign=open%2Bsource"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&lt;img border="0" src="https://www.packtpub.com/sites/default/files/imagecache/productview_ebook/1445EN_MockupCover_Coock%20book.jpg" style="width:55px;height:67px;border:0px solid;" alt="" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;b&gt;&lt;span style="font-size:x-large;"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;+&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-high-availability/book?utm_source=bundle&amp;amp;utm_medium=msqls8reb&amp;amp;utm_term=Microsoft%2BSQL%2BServer%2B2008%2BR2%2BAdministration%2BCookbook&amp;amp;utm_content=Microsoft%2BSQL%2BServer%2B2008%2BHigh%2BAvailability&amp;amp;utm_campaign=open%2Bsource"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&lt;img border="0" src="https://www.packtpub.com/sites/default/files/imagecache/productview_ebook/1223EN_Microsoft%20SQL%20Server%202008%20High%20Availabilitycov.jpg" style="width:55px;height:67px;border:0px solid;" alt="" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td style="text-align:center;"&gt;
&lt;p style="text-align:justify;"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Buy &amp;#39;&lt;/span&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-r2-administration-cookbook/book?utm_source=bundle&amp;amp;utm_medium=msqls8reb&amp;amp;utm_term=Microsoft%2BSQL%2BServer%2B2008%2BR2%2BAdministration%2BCookbook&amp;amp;utm_content=Microsoft%2BSQL%2BServer%2B2008%2BHigh%2BAvailability&amp;amp;utm_campaign=open%2Bsource"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Microsoft SQL Server 2008 R2 Administration Cookbook&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&amp;#39; with &amp;#39;&lt;/span&gt;&lt;a href="https://www.packtpub.com/microsoft-sql-server-2008-high-availability/book?utm_source=bundle&amp;amp;utm_medium=msqls8reb&amp;amp;utm_term=Microsoft%2BSQL%2BServer%2B2008%2BR2%2BAdministration%2BCookbook&amp;amp;utm_content=Microsoft%2BSQL%2BServer%2B2008%2BHigh%2BAvailability&amp;amp;utm_campaign=open%2Bsource"&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;Microsoft SQL Server 2008 High Availability&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;font-size:small;"&gt;&amp;#39; and get &lt;b&gt;50% off&lt;/b&gt; both the eBooks. Just add both the eBooks to your shopping cart and enter &amp;#39;&lt;b&gt;msqls8reb&lt;/b&gt;&amp;#39; in the &amp;#39;Enter Promotion Code&amp;#39; field. Click &amp;#39;Add Promoitonal Code&amp;#39; &amp;nbsp;and the discount will be applied.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://www.twitter.com/SQLMaster"&gt;&lt;img src="http://twitter-badges.s3.amazonaws.com/follow_bird-c.png" alt="Follow SQLMaster on Twitter" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/p&gt;</description></item><item><title>Cumulative Update packages for SQL Server 2008 R2 RTM &amp;amp; SQL Server 2005 SP3 released</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2010/10/19/cumulative-update-packages-for-sql-server-2008-r2-rtm-amp-sql-server-2005-sp3-released.aspx</link><pubDate>Tue, 19 Oct 2010 13:00:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:9861</guid><dc:creator>sqlmaster</dc:creator><description>&lt;h2&gt;Cumulative update package 12 for SQL Server 2005 Service Pack 3 released&lt;/h2&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;Here is another instalment of Cumulative update package 12 for SQL Server 2005 SP3 is ready for download &amp;amp; testing.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;The build number for CU package will be 9.00.4311, also after applying this CU12 you may need to restart the server to apply the changes. Also a stand-alone package of SQL Native Client (SQLNCLI) is available to download. Further to know about list of files that are updated by this CU12 refer to &lt;/span&gt;&lt;a target="_blank" href="http://support.microsoft.com/kb/2345449"&gt;&lt;span style="font-family:verdana,geneva;"&gt;KBA2345499&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt; and an additonal note states that:&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;You must enable the SQL Server Management Object (SMO) extended stored procedures and the SQL Server Distributed Management Object (SQL-DMO) extended stored procedures before you apply the cumulative update package. For more information about the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b style="-webkit-box-sizing:border-box;"&gt;SMO and DMO XPs&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;option, see SQL Server 2005 Books Online.&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;br style="-webkit-box-sizing:border-box;" /&gt;&lt;br style="-webkit-box-sizing:border-box;" /&gt;&lt;b style="-webkit-box-sizing:border-box;"&gt;Note&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;SQL Server 2005 Books Online notes that the default setting of these stored procedures is 0 (off). However, this value is incorrect. By default, the setting is 1 (on).&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;The above KBA refers the list of other KBAs on the list of bugs that are fixed within this CU12:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:11px;line-height:16px;font-family:Verdana, Arial, Helvetica, sans-serif;" class="Apple-style-span"&gt;
&lt;div style="display:inline;vertical-align:middle;-webkit-box-sizing:border-box;" class="kb_nowrapper"&gt;
&lt;table cellspacing="1" style="border-top-width:0px;border-left-width:3px;border-bottom-width:2px;border-right-width:3px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;" class="table"&gt;
&lt;tbody&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;th style="font-weight:bold;font-size:11px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;VSTS bug number&lt;/th&gt;&lt;th style="font-weight:bold;font-size:11px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;KB article number&lt;/th&gt;&lt;th style="font-weight:bold;font-size:11px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;508225&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2268122/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2268122&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;User &amp;#39;guest&amp;#39; does not have permission to run DBCC checkdb for database &amp;#39;mssqlsystemresource&amp;#39;&amp;quot; error message when you run the DBCC CHECKDB(&amp;#39;master&amp;#39;) command on a computer that is running SQL Server 2005, SQL Server 2008, or SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548812&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2276717/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2276717&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error code 1456 when you add a witness to a new database mirroring session that has the same database name as an existing database mirroring session in Microsoft SQL Server 2005 and in Microsoft SQL Server 2008&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;531413&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2295460/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2295460&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;Fix: Replication error message when you register a custom resolver to a merge replication in SQL Server 2005 if a BIGINT column contains a NULL value&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;527698&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2295878/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2295878&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The SQL Server 2005 SP3-based table still grows after an insert error occurs if you try to insert LOB data&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;541779&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2389533/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2389533&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;Infinite recursion detected&amp;quot; error message when a drillthrough action is used in SQL Server 2005 Analysis Services SP3 CU7&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549739&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2397173/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2397173&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: A blank cell is returned when you query XML data by using the &amp;quot;Results to Grid&amp;quot; mode in SQL Server 2005 Management Studio if a large amount of data exists&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548975&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2407172/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2407172&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: An exception occurs before the error output for invalid data of an &amp;quot;XML Source&amp;quot; task is redirected in SSIS 2005 or SSIS 2008&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;557130&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2413430/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2413430&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;Cannot locate version record and page is not allocated&amp;quot; error message occurs when you rebuild an index by using the ONLINE option in SQL Server 2005&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;564139&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2428229/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2428229&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error message when you use Query Designer in SQL Server 2005:&amp;quot;Unable to find an entry point named &amp;#39;GetWindowLongPtr&amp;#39; in &amp;#39;user32.dll&amp;#39;&amp;quot;&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br class="Apple-interchange-newline" /&gt;Click on this link to&amp;nbsp;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;" class="Apple-style-span"&gt;&amp;nbsp;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:13px;font-family:Verdana, Arial, Helvetica, sans-serif;-webkit-border-horizontal-spacing:2px;-webkit-border-vertical-spacing:2px;" class="Apple-style-span"&gt;&lt;a href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=2345449&amp;amp;kbln=en-us" style="font-size:12px;text-decoration:underline;-webkit-box-sizing:border-box;" id="kb_hotfix_link"&gt;View and request hotfix downloads&lt;/a&gt;&amp;nbsp;and as usual if the CU package is available for download then within the specified KBA section will have the link, if not you need to contact your local MS customer service &amp;amp; support center to obtain this CU package.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;" class="Apple-style-span"&gt;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:13px;font-family:Verdana, Arial, Helvetica, sans-serif;-webkit-border-horizontal-spacing:2px;-webkit-border-vertical-spacing:2px;" class="Apple-style-span"&gt;Further Microsoft Releases Services blogs gives a good resource of previous CU KBA links for your information:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;" class="Apple-style-span"&gt;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:13px;font-family:Verdana, Arial, Helvetica, sans-serif;-webkit-border-horizontal-spacing:2px;-webkit-border-vertical-spacing:2px;" class="Apple-style-span"&gt;&lt;span style="word-spacing:0px;font:14px &amp;#39;Segoe UI&amp;#39;, &amp;#39;Lucida Grande&amp;#39;, Verdana, Arial, Helvetica, sans-serif;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;text-align:left;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:12px;line-height:18px;" class="Apple-style-span"&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div style="margin-top:0px;"&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#11 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/2258854" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/2258854&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#10 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/983329" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/983329&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#9 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/980176" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/980176&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#8 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/978915" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/978915&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#7 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/976951" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/976951&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#6 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/974648" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/974648&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#5 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/972511" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/972511&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#4 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/970279" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/970279&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#3 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/967909" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/967909&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#2 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/961930" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/961930&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;CU#1 KB Article:&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;a href="http://support.microsoft.com/kb/959195" style="font-weight:normal;cursor:pointer;text-decoration:none;outline-style:none;outline-width:initial;outline-color:initial;"&gt;http://support.microsoft.com/kb/959195&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;______________________________________________________________________________________________________________________________________________________________________&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;
&lt;h2&gt;Cumulative Update package 4 for SQL Server 2008 R2 released&lt;/h2&gt;
&lt;div class="postcontent"&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;SQL Server 2008 R2 has got another instalment of Cumulative Update 4 package release, that contains the hotfixes that have been packaged since the release of R2 RTM release.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;The&amp;nbsp;build number for this release will be 10.50.1746.0, by default these builds are cumulative and release contains all the security fixes that were included in the previous CU release. So it is always better to download and test each of these CU packages seperately if you are facing such issues on SQL Server 2008 R2 instance.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;KBA2345451 refers about list of bugs that are fixed with this CU4 release:&lt;/span&gt;&lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:11px;line-height:16px;font-family:Verdana, Arial, Helvetica, sans-serif;" class="Apple-style-span"&gt;&lt;br class="Apple-interchange-newline" /&gt;
&lt;table cellspacing="1" style="border-top-width:0px;border-left-width:3px;border-bottom-width:2px;border-right-width:3px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;" class="table"&gt;
&lt;tbody&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;th style="font-weight:bold;font-size:11px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;VSTS bug number&lt;/th&gt;&lt;th style="font-weight:bold;font-size:11px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;KB article number&lt;/th&gt;&lt;th style="font-weight:bold;font-size:11px;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549034&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/969845/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;969845&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error message when you run a SQL Server 2005, SQL Server 2008, or SQL Server 2008 R2 Integration Services package (SSIS) after you install the .NET Framework 2.0 SP2 or the .NET Framework 3.5 SP1: &amp;quot;ADO NET Source [1424]&amp;quot;&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548984&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/980570/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;980570&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;Fulltext index error during compression or decompression&amp;quot; error message when you rebuild the full-text search index in Microsoft SQL Server 2008 or in Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548986&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/980832/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;980832&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;A system assertion check has failed&amp;quot; error message when you run a Transaction-SQL query in Microsoft SQL Server 2008 or in Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;451119&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/980849/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;980849&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: You experience high latency for peer-to-peer distribution agents in Microsoft SQL Server 2005, Microsoft SQL Server 2008, or Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548988&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/981120/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;981120&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error message when you enable TDE on a database that has the snapshot isolation enabled in SQL Server 2008 or in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548990&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/982034/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;982034&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The translation feature does not work when you perform a grouping action in an Excel PivotTable that uses SSAS 2008 or SSAS 2008 R2 as the data source&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548996&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/982854/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;982854&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;There is insufficient system memory in resource pool &amp;#39;internal&amp;#39; to run this query&amp;quot; error message when you run a full-text query that uses compound words in Microsoft SQL Server 2008 or in Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548998&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/982857/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;982857&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error message when you configure a transactional replication for a database in SQL Server 2008 or in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549014&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/983577/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;983577&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The export process never finishes when you export a report that has nested tablix items in Microsoft SQL Server Reporting Services 2008 to the extensions that are supported by the hard page-break renderers&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549019&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2028406/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2028406&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Blank spaces between some items are generated incorrectly in a SQL Server 2008 or a SQL Server 2008 R2 report&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549021&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2028755/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2028755&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: An incorrect result is returned when you run a LIKE query with wildcards and the Latin1_General_100_CS_AS collation in Microsoft SQL Server 2008 or in Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549040&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2200755/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2200755&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error message when you run a MDX query in SSAS 2008 or in SSAS 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549042&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2220252/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2220252&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: A SQL Server 2005 report that uses the visibility toggles feature runs incorrectly in SQL Server 2008 or in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;547877&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2222998/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2222998&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: An incorrect cardinality estimate is returned when you run a query in SQL Server 2005, SQL Server 2008, or SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549032&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2248999/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2248999&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: An index corruption occurs when you update a view in Microsoft SQL Server 2008 or in Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549044&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2255410/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2255410&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;A query returns inconsistent results before the data cache is warmed up in SSAS 2008 or in SSAS 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561761&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2261403/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2261403&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The &amp;quot;SQL Server:SSIS Pipeline 10.0&amp;quot; performance object does not appear in the &amp;quot;Performance object&amp;quot; list while another user accesses some SSIS pipeline counters in SQL Server 2008 or in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549030&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2264562/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2264562&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: A full-text query that uses CONTAINS or FREETEXT predicate together with the &amp;quot;OR&amp;quot; operator takes a long time to run in SQL Server 2008 or in in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561767&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2276330/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2276330&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The &amp;quot;CHANGETABLE&amp;quot; function is slow in SQL Server 2008 and in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;519628&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2276495/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2276495&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;File system error&amp;quot; occurs when you try to run a process update operation on a dimension in Microsoft SQL Server 2008 R2 Analysis Services&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561769&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2276717/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2276717&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error code 1456 when you add a witness to a new database mirroring session that has the same database name as an existing database mirroring session in Microsoft SQL Server 2005, Microsoft SQL Server 2008, and Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561772&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2278042/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2278042&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: A derived column transformation may generate incorrect results in SSIS 2008 or in SSIS 2008 R2 when a column is derived both in read-only usage and in read/write usage&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;524544&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2284503/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2284503&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: You encounter two issues when you use Microsoft SQL Server 2008 R2 Master Data Services (MDS)&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;528558&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2291551/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2291551&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error occurs when you try to configure a remote report server database by using Reporting Services Configuration Manager in the Datacenter edition of SQL Server 2008 R2 Reporting Services&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;526900&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2291705/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2291705&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The AMO, ADOMD.NET, and XMLA assemblies for Microsoft SQL Server 2008 R2 have incorrect dependencies on the Microsoft.SharePoint.dll assembly and the Microsoft.AnalysisServices.SharePoint.Integration.dll assembly&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;536667&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2293053/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2293053&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The column header ID incorrectly contains prefix information when you use the &amp;quot;ReportViewer&amp;quot; control of Visual Studio 2010 to run a report locally&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;547891&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2295869/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2295869&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: An unresolved deadlock occurs when a database is recovered in SQL Server 2005 SP3 or in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;534262&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2297308/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2297308&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;A previous filestream configuration attempt was incomplete&amp;quot; error and an access violation occur when you perform post-setup configuration of the FILESTREAM feature on a SQL Server 2008 or SQL Server 2008 R2 failover cluster&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;534101&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2300689/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2300689&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: You cannot restore a backup of a database on another instance of SQL Server if you disable transparent data encryption before you create the backup in SQL Server 2008 or in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;544205&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2344694/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2344694&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Certain change tracking functions and DMVs do not work correctly after an automatic database mirroring failover occurs in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;536267&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2359606/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2359606&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;System.OverflowException: Value was either too large or too small for an Int32&amp;quot; error message occurs when you try to generate a report in Microsoft SQL Server 2008 R2 Reporting Services&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561798&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2380361/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2380361&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error message when you run the &amp;quot;sp_createstats&amp;quot; stored procedure in SQL Server 2008 or in SQL Server 2008 R2 if the table contains a nondeterministic computed column&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561800&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2380435/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2380435&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The query plan for a stored procedure is not cached if the stored procedure uses a BLOB variable and the variable is used in a string function in Microsoft SQL Server 2008 or in Microsoft SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561804&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2384766/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2384766&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The ANSI_NULLS property of an indexed view is changed to FALSE after the indexed view is replicated to the subscription database in SQL Server 2008 or in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;561806&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2387686/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2387686&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;A MOF syntax error occurred&amp;quot; error message occurs when you try to install SQL Server 2008 or SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;549656&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2397020/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2397020&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;Access is denied. [0x80070005]&amp;quot; error message occurs in SSCM when you try to change the password of an account of SQL Server 2008 R2 in Windows Vista or in a later version of Windows&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;548720&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2401453/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2401453&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX:&amp;quot;Search failed: Failed to retrieve data for this request&amp;quot; message when you search for some SQL Azure database objects in the &amp;quot;Object Explorer Details&amp;quot; tab of SQL Server 2008 R2 Management Studio&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;554322&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2407088/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2407088&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;Sys.ArgumentNullException&amp;quot; error occurs when you open a drillthrough report in a Report Viewer Web part if you use the SharePoint Integrated mode in SQL Server 2008 R2 Reporting Services&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;555924&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2410425/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2410425&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: You receive an exception when you try to create an MDS database in SQL Server 2008 R2 MDS if a non-MDS database table is named &amp;quot;tblSystem&amp;quot;&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;555933&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2412136/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2412136&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: The Entities Explorer grid displays few rows in a SQL Server 2008 R2 MDS website if you use a low screen resolution&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;560368&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2421014/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2421014&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;A severe error occurred on the current command&amp;quot; error message when you use the Freetexttable or the Containstable function on an indexed view in a CTE query in SQL Server 2008 R2&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;554345&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2428397/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2428397&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: &amp;quot;Type mismatch&amp;quot; error message occurs when you try to delete an embedded PowerPivot database from an instance of SQL Server 2008 R2 Analysis Services that is installed in the SharePoint Integration mode&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr style="-webkit-box-sizing:border-box;"&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;558922&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;a href="http://support.microsoft.com/kb/2431362/" style="text-decoration:none;-webkit-box-sizing:border-box;" class="KBlink"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;2431362&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/td&gt;
&lt;td style="font-size:11px;vertical-align:top;-webkit-box-sizing:border-box;background-origin:initial;background-clip:initial;padding:5px;"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;FIX: Error message when you try to create a named query in a project that uses Microsoft SQL Server 2008 R2 Parallel Data Warehouse as data source: Keyword not supported&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Further if you need to know the list of files that are modified with this CU release, refer to the specified KBA above.&lt;/p&gt;
&lt;p&gt;To download you need to visit this &lt;span style="word-spacing:0px;font:medium &amp;#39;Times New Roman&amp;#39;;text-transform:none;text-indent:0px;white-space:normal;letter-spacing:normal;border-collapse:separate;-webkit-border-horizontal-spacing:0px;-webkit-border-vertical-spacing:0px;-webkit-text-decorations-in-effect:none;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;widows:2;orphans:2;" class="Apple-style-span"&gt;&lt;span style="font-size:13px;font-family:Verdana, Arial, Helvetica, sans-serif;-webkit-border-horizontal-spacing:2px;-webkit-border-vertical-spacing:2px;" class="Apple-style-span"&gt;&lt;a target="_blank" href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=2345451&amp;amp;kbln=en-us" style="font-size:12px;text-decoration:none;-webkit-box-sizing:border-box;" id="kb_hotfix_link"&gt;&lt;strong&gt;View and request hotfix downloads&lt;/strong&gt;&lt;/a&gt;&amp;nbsp;page to select the relevant hotfix which requires an email address to submit the request, that page will have individual files according to the relevant (X86/X64/IA64) platforms.&lt;/span&gt;&lt;/span&gt;&lt;br class="Apple-interchange-newline" /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href="http://www.twitter.com/SQLMaster"&gt;&lt;img src="http://twitter-badges.s3.amazonaws.com/follow_bird-c.png" alt="Follow SQLMaster on Twitter" /&gt;&lt;/a&gt;
&lt;p&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:small;"&gt;&lt;span style="font-size:x-small;"&gt;&lt;span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Set a Winning Rhythm with SQL Server 2008 R2. Join the EXCLUSIVE Webcast Series!</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2010/09/28/set-a-winning-rhythm-with-sql-server-2008-r2-join-the-exclusive-webcast-series.aspx</link><pubDate>Tue, 28 Sep 2010 09:20:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:9183</guid><dc:creator>sqlmaster</dc:creator><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img width="760" src="http://www.timeus.net/trackv2/redir.asp?ow=Microsoft&amp;amp;ml=SQL2809&amp;amp;dt=28-09-2010&amp;amp;lk=SQL2809_Open&amp;amp;url=http://timeus.net/mailer/WebcastSeries2010/SQL_Sept/image/spot1.jpg" alt="Microsoft SQL Server 2008 R2" height="53" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img width="760" src="http://timeus.net/mailer/WebcastSeries2010/SQL_Sept/image/spot2.jpg" alt="Business Critical applications need reliable platform for a 24x7 uptime! Tune in to SQL Server Webcast series." height="187" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td bgcolor="#e2efff"&gt;Continuing with our promise of providing you in-depth insights into latest Microsoft Technologies, Microsoft brings to you a series of exclusive webcasts on SQL Server from 29&lt;sup&gt;th&lt;/sup&gt;&amp;nbsp;September to 5&lt;sup&gt;th&lt;/sup&gt;October, 2010. Join these demystifying sessions by industry veterans to get rare insights on the best practices that help you better leverage cool features of this technology.&amp;nbsp;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="http://www.timeus.net/trackv2/redir.asp?ow=Microsoft&amp;amp;ml=SQL2809&amp;amp;dt=28-09-2010&amp;amp;lk=SQL2809_Reg&amp;amp;url=http://application.timeus.net/sqlserverwebcast/registration1.aspx"&gt;&lt;img border="0" align="right" width="75" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-007.jpg" height="21" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#b1ddfc"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td height="27" bgcolor="#fdfcf4"&gt;&lt;strong&gt;Date &amp;amp; Time&lt;/strong&gt;&lt;/td&gt;
&lt;td bgcolor="#b1ddfc"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;td bgcolor="#fdfcf4"&gt;&lt;strong&gt;Webcast Topic&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#e2efff"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;29&lt;sup&gt;th&lt;/sup&gt;&amp;nbsp;Sept., 2010&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;(2:30 pm - 3:45 pm)&lt;/td&gt;
&lt;td bgcolor="#b1ddfc" valign="top"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;Plan Caching and Recompilation with SQL Server&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;By Amit Bansal&lt;br /&gt;&lt;/td&gt;
&lt;td align="right"&gt;&lt;a rel="nofollow" target="_blank" href="http://timeus.net/mailer/WebcastSeries2010/SQL_Sept/Plan%20Caching%20and%20Recompilation%20with%20SQL%20Server.ics"&gt;&lt;img border="0" width="75" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-003.jpg" height="24" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="20"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Performance tuning is a broad area and SQL Server has many hidden features which are lesser explored by many. One such concept is around plan caching which was introduced with SQL Server 2005. This feature has been enhanced and made more accessible to developers and admins alike. Join this demystifying session to know more about Plan Caching and understand how the recompilations affect performance if any.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="https://www.livemeeting.com/cc/sbsca13/join?id=SSK2JK&amp;amp;role=attend"&gt;Click here&lt;/a&gt;&amp;nbsp;on the day of the event to join the session!&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#b1ddfc"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#e2efff"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;30&lt;sup&gt;th&lt;/sup&gt;&amp;nbsp;Sept., 2010&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;(2:30 pm - 3:45 pm)&lt;/td&gt;
&lt;td bgcolor="#b1ddfc" valign="top"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;High Availability options Explored with SQL Server&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;By Balmukund Lakhani&lt;br /&gt;&lt;/td&gt;
&lt;td align="right"&gt;&lt;a rel="nofollow" target="_blank" href="http://timeus.net/mailer/WebcastSeries2010/SQL_Sept/High%20Availability%20options%20Explored%20with%20SQL%20Server.ics"&gt;&lt;img border="0" width="75" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-003.jpg" height="24" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="20"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The High Availability options with SQL Server are plenty. Most of us use various options like Logshipping, Mirroring, Clustering, Replication, and yet are not sure when to use one over the other. This session is about best practices in using these HA options and what &amp;lsquo;don&amp;rsquo;ts&amp;rsquo; need to be followed while using certain options.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="https://www.livemeeting.com/cc/sbsca13/join?id=63NW4P&amp;amp;role=attend"&gt;Click here&lt;/a&gt;&amp;nbsp;on the day of the event to join the session!&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#b1ddfc"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#e2efff"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;1&lt;sup&gt;st&lt;/sup&gt;&amp;nbsp;Oct., 2010&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;(2:30 pm-3:45 pm)&lt;/td&gt;
&lt;td bgcolor="#b1ddfc" valign="top"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;SQL Server Reporting Services Performance Monitoring and Tuning&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;By Arun Balachandran&lt;br /&gt;&lt;/td&gt;
&lt;td align="right"&gt;&lt;a rel="nofollow" target="_blank" href="http://timeus.net/mailer/WebcastSeries2010/SQL_Sept/SQL%20Server%20Reporting%20Services%20Performance%20Monitoring%20and%20Tuning.ics"&gt;&lt;img border="0" width="75" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-003.jpg" height="24" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="20"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tuning SQL Server Reporting Services is one of the many challenges every BI deployment person is faced with. This session talks about some of the tuning aspects of Reporting services introduced with SQL Server 2008 R2. The session will provide insights into On-Demand rendering engine that enhances the behavior of SSRS with the R2 release. Do join in to know more about Renderer and use of Execution Log for performance troubleshooting.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="https://www.livemeeting.com/cc/sbsca13/join?id=D8PNFJ&amp;amp;role=attend"&gt;Click here&lt;/a&gt;&amp;nbsp;on the day of the event to join the session!&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#b1ddfc"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#e2efff"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;4&lt;sup&gt;th&lt;/sup&gt;&amp;nbsp;Oct., 2010&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;(2:30 pm - 3:45 pm)&lt;/td&gt;
&lt;td bgcolor="#b1ddfc" valign="top"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;Practical Performance Troubleshooting - Best Practices&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;By Praveen Srivatsa&lt;br /&gt;&lt;/td&gt;
&lt;td align="right"&gt;&lt;a rel="nofollow" target="_blank" href="http://timeus.net/mailer/WebcastSeries2010/SQL_Sept/Practical%20Performance%20Troubleshooting%20-%20Best%20Practices.ics"&gt;&lt;img border="0" width="75" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-003.jpg" height="24" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="20"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Database performance tuning is one of the top issues in the minds of any DBA or developer. This session talks about some of the practical tips ranging from normal standard out-of-the-box tuning to some interesting internals which a seasoned DBA must be aware off. We will talk about Index Maintenance, VLF Usage Verification, and more. This is something you don&amp;rsquo;t want to miss so as to prepare yourself against any mishap happening on your production environments.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="https://www.livemeeting.com/cc/sbsca13/join?id=7BWM22&amp;amp;role=attend"&gt;Click here&lt;/a&gt;&amp;nbsp;on the day of the event to join the session!&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#b1ddfc"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#e2efff"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top"&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;5&lt;sup&gt;th&lt;/sup&gt;&amp;nbsp;Oct., 2010&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;(2:30 pm - 3:45 pm)&lt;/td&gt;
&lt;td bgcolor="#b1ddfc" valign="top"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;td valign="top"&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border="0" width="100%" cellpadding="0" cellspacing="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span style="color:#ed7b00;"&gt;&lt;strong&gt;Achieve Enterprise-wide Compliance Standard using PBM&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;By Venkatesan Prabu Jayakantham&lt;br /&gt;&lt;/td&gt;
&lt;td align="right"&gt;&lt;a rel="nofollow" target="_blank" href="http://timeus.net/mailer/WebcastSeries2010/SQL_Sept/Achieve%20Enterprise-wide%20Compliance%20Standard%20using%20PBM.ics"&gt;&lt;img border="0" width="75" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-003.jpg" height="24" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="20"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nowadays, maintaining security standards and adhering to compliance has become a challenging task. This session provides a great hands-on experience to deal with policy creation and evaluating the company standards using the newly created policies. Let&amp;rsquo;s take a practical problem and solve it straight away with our in-built policy and also let&amp;rsquo;s get an in-depth experience of creating our own user-defined policy. This session is flavored with three different angles of policy creation to fulfill compliance standard in enterprise wide servers.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" target="_blank" href="https://www.livemeeting.com/cc/sbsca13/join?id=5Z8CZC&amp;amp;role=attend"&gt;Click here&lt;/a&gt;&amp;nbsp;on the day of the event to join the session!&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td bgcolor="#b1ddfc"&gt;&lt;img width="1" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-004.jpg" height="1" alt="" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="65" align="center"&gt;&lt;a rel="nofollow" target="_blank" href="http://www.timeus.net/trackv2/redir.asp?ow=Microsoft&amp;amp;ml=SQL2809&amp;amp;dt=28-09-2010&amp;amp;lk=SQL2809_Reg&amp;amp;url=http://application.timeus.net/sqlserverwebcast/registration1.aspx"&gt;&lt;img border="0" width="129" src="http://www.microsoft.com/india/IMAGES/WebcastSeries_edm_images/sharedev-005.jpg" height="33" alt="" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;a href="http://www.twitter.com/SQLMaster"&gt;&lt;img src="http://twitter-badges.s3.amazonaws.com/follow_bird-c.png" alt="Follow SQLMaster on Twitter" /&gt;&lt;/a&gt; 
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/p&gt;</description></item><item><title>List of free resources and tools specific to SQL Server 2008 R2 &amp;amp; Visual studio 2010</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2010/09/27/list-of-free-resources-and-tools-specific-to-sql-server-2008-r2.aspx</link><pubDate>Mon, 27 Sep 2010 16:24:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:9170</guid><dc:creator>sqlmaster</dc:creator><description>&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;Whenever the new version of SQL Server is released the first thing I search for Books Online update to upgrade the local copy. In similar to that Microsoft have been releasing lot of free resources and tools that can enhance the learning experience for Developers, DBA and Architects. So here are few resources that I would like to refer about R2 product specific:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:small;font-family:trebuchet ms,geneva;"&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=CEB4346F-657F-4D28-83F5-AAE0C5C83D52&amp;amp;displaylang=en" target="_blank"&gt;SQL Server 2008 R2 Feature Pack&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p id="quickDescription"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;This R2 Feature Pack is a collection of stand-alone packages which provide additional value for SQL Server 2008 R2. THe important ones I refer:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&lt;strong&gt;Microsoft&amp;reg; SQL Server&amp;reg; 2008 R2 Books On-line&lt;/strong&gt; &lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp; 
&lt;ul&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=168577"&gt;&lt;span style="color:#0033cc;font-family:trebuchet ms,geneva;"&gt;&lt;em&gt;Download site&lt;/em&gt;&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;Microsoft SQL Server 2008 R2 Books Online is the primary documentation for SQL Server. Visit the SQL Server 2008 Books Online page on the Microsoft Download Center. &lt;br /&gt;&lt;br /&gt;Audience(s): &lt;strong&gt;Developer, DBA&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;a name="UA"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&lt;strong&gt;Microsoft&amp;reg; SQL Server&amp;reg; 2008 R2 Upgrade Advisor&lt;/strong&gt; &lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp; 
&lt;ul&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188397&amp;amp;clcid=0x409"&gt;&lt;span style="color:#0033cc;font-family:trebuchet ms,geneva;"&gt;&lt;em&gt;X86 Package&lt;/em&gt;&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt; (SQLUA.msi)&lt;br /&gt;&lt;strong&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188398&amp;amp;clcid=0x409"&gt;&lt;span style="color:#0033cc;"&gt;X64 Package&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt; (SQLUA.msi)&lt;br /&gt;&lt;strong&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188399&amp;amp;clcid=0x409"&gt;&lt;span style="color:#0033cc;"&gt;IA64 Package&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt; (SQLUA.msi)&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;Microsoft SQL Server 2008 R2 Upgrade Advisor analyzes instances of SQL Server 2000, SQL Server 2005 and SQL Server 2008 in preparation for upgrading to SQL Server 2008 R2. Upgrade Advisor identifies feature and configuration changes that might affect your upgrade, and it provides links to documentation that describes each identified issue and how to resolve it. &lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;a name="SNAC"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&lt;strong&gt;Microsoft&amp;reg; SQL Server&amp;reg; 2008 R2 Native Client&lt;/strong&gt; &lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp; 
&lt;ul&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188400&amp;amp;clcid=0x409"&gt;&lt;span style="color:#0033cc;font-family:trebuchet ms,geneva;"&gt;&lt;em&gt;X86 Package&lt;/em&gt;&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt; (sqlncli.msi)&lt;br /&gt;&lt;strong&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188401&amp;amp;clcid=0x409"&gt;&lt;span style="color:#0033cc;"&gt;X64 Package&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt; (sqlncli.msi)&lt;br /&gt;&lt;strong&gt;&lt;a href="http://go.microsoft.com/fwlink/?LinkID=188402&amp;amp;clcid=0x409"&gt;&lt;span style="color:#0033cc;"&gt;IA64 Package&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt; (sqlncli.msi)&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;Microsoft SQL Server 2008 R2 Native Client (SQL Server Native Client) is a single dynamic-link library (DLL) containing both the SQL OLE DB provider and SQL ODBC driver. It contains run-time support for applications using native-code APIs (ODBC, OLE DB and ADO) to connect to Microsoft SQL Server 2000, 2005, or 2008. SQL Server Native Client should be used to create new applications or enhance existing applications that need to take advantage of new SQL Server 2008 R2 features. This redistributable installer for SQL Server Native Client installs the client components needed during run time to take advantage of new SQL Server 2008 R2 features, and optionally installs the header files needed to develop an application that uses the SQL Server Native Client API.&lt;br /&gt;&lt;br /&gt;Audience(s): &lt;strong&gt;Customer, Partner, Developer&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;You can download the appropriate feature pack that you wanted individually or simply download all of them.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;As a part of Self-Service BI feature in SQL Server 2008 R2 you can download the Reporting Services Add-in that is specific for SharePoint 2010:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:small;font-family:trebuchet ms,geneva;"&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=B3BEBF9D-D86D-48CD-94E2-0639A846BE80&amp;amp;displaylang=en" target="_blank"&gt;SQL Server&amp;reg; 2008 R2 Reporting Services Add-in for Microsoft SharePoint&amp;reg; Technologies 2010&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;The Microsoft&amp;reg; SQL Server&amp;reg; 2008 R2 Reporting Services Add-in for Microsoft SharePoint&amp;reg; Technologies allows you to integrate your reporting environment with SharePoint to experience the benefits of using the collaborative environment provided by SharePoint.&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;For Developer specific I recommend &lt;/span&gt;&lt;a href="http://www.microsoft.com/downloads/info.aspx?na=47&amp;amp;p=1&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=130f7986-bf49-4fe5-9ca8-910ae6ea442c&amp;amp;u=details.aspx%3ffamilyid%3d1D69CE13-E1E5-4315-825C-F14D33A303E9%26displaylang%3den" target="_blank"&gt;&lt;span style="color:#0033cc;font-family:trebuchet ms,geneva;"&gt;Microsoft Chart Controls Add-on for Microsoft Visual Studio 2008&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;, &lt;/span&gt;&lt;a href="http://www.microsoft.com/downloads/info.aspx?na=47&amp;amp;p=3&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=130f7986-bf49-4fe5-9ca8-910ae6ea442c&amp;amp;u=details.aspx%3ffamilyid%3dEE8F6F35-B087-4324-9DBA-6DD5E844FD9F%26displaylang%3den" target="_blank"&gt;&lt;span style="color:#0033cc;font-family:trebuchet ms,geneva;"&gt;Microsoft Chart Controls for .NET Framework Documentation&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;&amp;amp; &lt;/span&gt;&lt;a href="http://www.microsoft.com/downloads/info.aspx?na=47&amp;amp;p=1&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=b3bebf9d-d86d-48cd-94e2-0639a846be80&amp;amp;u=details.aspx%3ffamilyid%3d130F7986-BF49-4FE5-9CA8-910AE6EA442C%26displaylang%3den" target="_blank"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;Microsoft Chart Controls for Microsoft .NET Framework 3.5&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;that are specific to ASP.NET and Windows Forms Chart Controls for .NET Framework 3.5 SP1. Also on the SharePoint Technologies refer to &lt;/span&gt;&lt;a href="http://www.microsoft.com/downloads/info.aspx?na=47&amp;amp;p=4&amp;amp;SrcDisplayLang=en&amp;amp;SrcCategoryId=&amp;amp;SrcFamilyId=5cd4dcd7-d3e6-4970-875e-aba93459fbee&amp;amp;u=details.aspx%3ffamilyid%3d49C79A8A-4612-4E7D-A0B4-3BB429B46595%26displaylang%3den" target="_blank"&gt;&lt;span style="color:#0033cc;font-family:trebuchet ms,geneva;"&gt;Microsoft SharePoint Foundation 2010&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp;download.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;Finally for entire Visual Studio 2010 related packs refer to&amp;nbsp;&lt;/span&gt;&lt;a id="ctl00_ctl01_bcr_AggPosts___Posts___Posts_ctl01_TitleLink" href="http://sqlserver-qa.net/blogs/dotnet_40/archive/2010/07/29/list-of-free-downloads-to-enhance-visual-studio-2010-sql-server-2008-r2-knowledge.aspx"&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;List of free downloads to enhance Visual Studio 2010 &amp;amp; SQL Server 2008 R2 knowledge&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&amp;nbsp; post.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:trebuchet ms,geneva;"&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;h1&gt;&lt;span style="font-size:small;"&gt;Here are few free tools and references to download that can enhance the Visual Studio 2010 knowledge:&lt;/span&gt;&lt;/h1&gt;
&lt;h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=752CB725-969B-4732-A383-ED5740F02E93&amp;amp;displaylang=en" target="_blank"&gt;Visual Studio 2010 and .NET Framework 4 Training Kit&lt;/a&gt;&lt;/h1&gt;
&lt;h5&gt;Brief Description&lt;/h5&gt;
&lt;div id="quickDescription"&gt;June 2010 Release of the Visual Studio 2010 and .NET Framework 4 Training Kit&lt;/div&gt;
&lt;h4 class="featureTitle2"&gt;&amp;nbsp;&lt;/h4&gt;
&lt;h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=92CED922-D505-457A-8C9C-84036160639F&amp;amp;displayLang=en" target="_blank"&gt;Visual Studio 2010 Keybinding Posters&lt;/a&gt;&lt;/h1&gt;
&lt;h5&gt;Brief Description&lt;/h5&gt;
&lt;div id="quickDescription"&gt;Reference posters for the default keybindings in Visual Studio 2010 for Visual Basic, Visual C#, Visual C++ and Visual F#&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=7B645F3A-6D22-4548-A0D8-C2A27E1917F8&amp;amp;displaylang=en" target="_blank"&gt;.NET Framework 3.5 Common Namespaces and Types Poster&lt;/a&gt;&lt;/h1&gt;
&lt;h5&gt;Brief Description&lt;/h5&gt;
&lt;div id="quickDescription"&gt;November 2007 Edition&lt;br /&gt;The .NET Framework 3.5 Common Namespaces and Types Poster&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=86B3D32B-AD26-4BB8-A3AE-C1637026C3EE&amp;amp;displaylang=en" target="_blank"&gt;Patterns for Parallel Programming: Understanding and Applying Parallel Patterns with the .NET Framework 4&lt;/a&gt;&lt;/h1&gt;
&lt;h5&gt;Brief Description&lt;/h5&gt;
&lt;div id="quickDescription"&gt;A document providing an in-depth tour of implementing a variety of parallel patterns using the .NET Framework 4.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=560A5365-5C62-488A-91ED-A779E0E33AC4&amp;amp;displaylang=en" target="_blank"&gt;Moving to Visual Studio 2010 e-Book&lt;/a&gt;&lt;/h1&gt;
&lt;h5&gt;Brief Description&lt;/h5&gt;
&lt;div id="quickDescription"&gt;It&amp;#39;s a book that will help professional developers move from previous versions of Visual Studio (starting with 2003 and on up).&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=26BAE65F-B0DF-4081-AE6E-1D828993D4D0&amp;amp;displaylang=en" target="_blank"&gt;Microsoft Visual Studio 2010 Professional Trial - Web Installer&lt;/a&gt;&lt;/h1&gt;
&lt;h5&gt;Brief Description&lt;/h5&gt;
&lt;div id="quickDescription"&gt;Microsoft Visual Studio 2010 Professional is an integrated environment that simplifies the basic tasks of creating, debugging and deploying applications. Let Visual Studio 2010 Professional unleash your imagination and easily deliver your ideas.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=e081c894-e4ab-42df-8c87-4b99c1f3c49b" target="_blank"&gt;Microsoft SQL Server 2008 R2 - PowerPivot for Microsoft Excel 2010 - RTM&lt;/a&gt;&lt;/h1&gt;
&lt;h5&gt;Brief Description&lt;/h5&gt;
&lt;div id="quickDescription"&gt;Microsoft&amp;reg; PowerPivot for Microsoft&amp;reg; Excel 2010 provides ground-breaking technology, such as fast manipulation of large data sets (often millions of rows), streamlined integration of data, and the ability to effortlessly share your analysis through Microsoft&amp;reg; SharePoint 2010.&lt;/div&gt;
&lt;/div&gt;
&lt;a href="http://www.twitter.com/SQLMaster"&gt;&lt;img src="http://twitter-badges.s3.amazonaws.com/follow_bird-c.png" alt="Follow SQLMaster on Twitter" /&gt;&lt;/a&gt; 
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>StreamInsight Updates 1.0 - get from Cumulative Update package 2 for Microsoft SQL Server 2008 R2</title><link>http://beyondrelational.com/live/blogs/sqlmaster/archive/2010/09/23/streaminsight-updates-1-0-get-from-cumulative-update-package-2-for-microsoft-sql-server-2008-r2.aspx</link><pubDate>Thu, 23 Sep 2010 11:38:00 GMT</pubDate><guid isPermaLink="false">6e5011fa-7db5-4df3-bb79-9085c1d333b3:9119</guid><dc:creator>sqlmaster</dc:creator><description>&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;One of the newest additions from SQL Server 2008 R2 is StreamInsight,&amp;nbsp; &lt;em&gt;Its high-throughput stream processing architecture and the Microsoft&amp;nbsp;.NET Framework-based development platform enable you&amp;nbsp;to quickly implement robust and highly efficient event processing applications.&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;This is helpful for the data sources and data-stream&amp;nbsp; that include financial based applications such as stock exchange trading or organisation dealing with SEO&amp;nbsp;&amp;amp; Web analytics applications.&amp;nbsp;For more information on development and getting started with StreamInsight, see:&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ee362329.aspx"&gt;&lt;span style="color:#1364c4;font-family:verdana,geneva;"&gt;Getting Started&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ee391397.aspx"&gt;&lt;span style="color:#1364c4;font-family:verdana,geneva;"&gt;Planning and Architecture&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ee391564.aspx"&gt;&lt;span style="color:#1364c4;font-family:verdana,geneva;"&gt;Development&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ee391224.aspx"&gt;&lt;span style="color:#1364c4;font-family:verdana,geneva;"&gt;Operations&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;nbsp;In addition to the above information here is the updates about&amp;nbsp;StreamInsight 1.0 that are released as a part of &lt;/span&gt;&lt;a target="_blank" href="http://support.microsoft.com/kb/2072493"&gt;&lt;span style="font-family:verdana,geneva;"&gt;Cumulative Update package 2 for SQL Server 2008 R2&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family:verdana,geneva;"&gt;. When you apply this CU2 then the build&amp;nbsp;number for SQL Server 2008 R2 instance should be 10.50.1720.0&amp;nbsp; and similar build numer for the StreamInsight 1.0 updates is 10.50.1724.0.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:verdana,geneva;"&gt;KBA&amp;nbsp;refers the following information with regard to .NET Framework 4.0 development and compatibility with .NET Framework 3.5 version:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;loadTOCNode(2, &amp;#39;summary&amp;#39;); &lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;All StreamInsight assemblies and the StreamInsight host (StreamInsightHost.exe) are compiled by using the .NET Framework 3.5. However, you can develop StreamInsight applications by using the .NET Framework 3.5 or the .NET Framework 4.0.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;For StreamInsight applications that are compiled by using the .NET Framework 4.0&lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;
&lt;table class="list ul"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class="bullet"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;bull;&lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;td class="text"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;You can load adapters and user-defined extensions that are compiled with either the .NET Framework 3.5 or the .NET Framework 4.0. &lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="bullet"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;bull;&lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;td class="text"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;You can connect to an external StreamInsight host that is compiled with either the .NET Framework 3.5 or the .NET Framework 4.0.&lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&lt;b&gt;For StreamInsight applications that are compiled by using .NET Framework 3.5&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;
&lt;table class="list ul"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class="bullet"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;bull;&lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;td class="text"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;You cannot load adapters and user-defined extensions that are compiled by using the .NET Framework 4.0. &lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="bullet"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;bull;&lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;td class="text"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;You can connect to an external StreamInsight host that is compiled by using either the .NET Framework 3.5 or the .NET Framework 4.0.&lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class="bullet"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;bull;&lt;/span&gt;&lt;/em&gt;&lt;/td&gt;
&lt;td class="text"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;If&amp;nbsp;you&amp;nbsp;want&amp;nbsp;to&amp;nbsp;host&amp;nbsp;.NET&amp;nbsp;Framework&amp;nbsp;4.0&amp;nbsp;assemblies&amp;nbsp;in&amp;nbsp;.NET Framework 3.5 applications (such as StreamInsightHost),&amp;nbsp;you&amp;nbsp;must&amp;nbsp;specify&amp;nbsp;the&amp;nbsp;.NET&amp;nbsp;Framework&amp;nbsp;4.0&amp;nbsp;runtime&amp;nbsp;in&amp;nbsp;the&amp;nbsp;App.config&amp;nbsp;file&amp;nbsp;as&amp;nbsp;follows:&lt;br /&gt;&lt;/span&gt;&lt;/em&gt;&lt;code&gt;
&lt;pre class="code"&gt;&lt;em&gt;&lt;span style="font-family:verdana,geneva;"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;&amp;lt;configuration&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;startup&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;supportedRuntime version=&amp;quot;v4.0&amp;quot; sku=&amp;quot;.NETFramework,Version=v4.0&amp;quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/startup&amp;gt;&lt;br /&gt;&amp;lt;/configuration&amp;gt;&lt;/span&gt;&lt;/em&gt;&lt;/pre&gt;
&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/p&gt;</description></item></channel></rss>