<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://sqlserver-qa.net/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>SSQA.net</title><link>http://sqlserver-qa.net/blogs/default.aspx</link><description>Knowledge Sharing Network</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.2)</generator><item><title>Outputting DBCC results </title><link>http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/26/4665.aspx</link><pubDate>Sat, 26 Jul 2008 11:29:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4665</guid><dc:creator>Madhivanan</dc:creator><slash:comments>2</slash:comments><description>Sometimes it may be useful to reuse the result of the DBCC commands. If the DBCC command resturns a resultset, it can be outputted to a table. Consider the following command DBCC useroptions It returns a single resultset. To copy the resultset to a table, you can use the following Create table #dbcc_useroptions ( [set option] varchar ( 100 ), [value] varchar ( 100 )) insert into #dbcc_useroptions exec ( 'DBCC useroptions' ) select * from #dbcc_useroptions drop table #dbcc_useroptions Note that it...(&lt;a href="http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/26/4665.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4665" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/T-SQL/default.aspx">T-SQL</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/DBCC+output/default.aspx">DBCC output</category></item><item><title>SQL Server data and log files initialization, think multiple files, backup &amp; restore performance!</title><link>http://sqlserver-qa.net/blogs/tools/archive/2008/07/25/sql-server-data-and-log-files-initialization-think-multiple-files-backup-restore-performance.aspx</link><pubDate>Fri, 25 Jul 2008 11:01:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4661</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>Whenever you perform a database creation, add a data or log file to database, AUTOGROW process is intiated or restore of database will trigger the file initialization if that is created afresh. In addition to this when you talk about files intialization you must consider the hardware such as RAID, as the software data block size is computed for optimal performance by SQL Server and should not be altered which is set to a maximum 64KB blocksize. Say if you are writing to disk or to tape (high-speed)...(&lt;a href="http://sqlserver-qa.net/blogs/tools/archive/2008/07/25/sql-server-data-and-log-files-initialization-think-multiple-files-backup-restore-performance.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4661" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/performance/default.aspx">performance</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/throughput/default.aspx">throughput</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/best+practices/default.aspx">best practices</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/filegroup/default.aspx">filegroup</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/multiple/default.aspx">multiple</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/restore/default.aspx">restore</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/files/default.aspx">files</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/backups/default.aspx">backups</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/tapes/default.aspx">tapes</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/disks/default.aspx">disks</category></item><item><title>CLR Stored Procedures - handling security on SQL Server side</title><link>http://sqlserver-qa.net/blogs/perftune/archive/2008/07/24/4655.aspx</link><pubDate>Thu, 24 Jul 2008 08:52:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4655</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>Ok this is not new to say you can write stored procedures in any language to manage them in SQL Server, as 2005 version has started this CLR integration functionality that is exposed in an assembly called system.data.dll, which is part of the .NET Framework. So think about code access security in addition to managing security privileges for the user on database side. CLR supports the access security mechanism which is based on the assumption that the runtime can host both fully trusted and partially...(&lt;a href="http://sqlserver-qa.net/blogs/perftune/archive/2008/07/24/4655.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4655" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/security/default.aspx">security</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/.net/default.aspx">.net</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/code/default.aspx">code</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/peverify/default.aspx">peverify</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/practices/default.aspx">practices</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/clr/default.aspx">clr</category></item><item><title>Leveraging SQL Server Technologies to Build a Solid High-Availability Strategy - Tech-ed Online Panel video available to view</title><link>http://sqlserver-qa.net/blogs/etc/archive/2008/07/22/4645.aspx</link><pubDate>Tue, 22 Jul 2008 11:37:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4645</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>In continuation to Tech-ed North America - what I'm doing there? &amp;amp; Say goodbye to Tech-ed 2008 Developers and say hello to IT-PRO! posts here and to wrap up the earlier posts about Tech-ed Online Panel: Leveraging SQL Server Technologies to Build a Solid High-Availability Strategy the panel discussion video is available to view for the users. You can view the show from this Leveraging SQL Server Technologies to Build a Solid High-Availability Strategy link and also various videos sharing best...(&lt;a href="http://sqlserver-qa.net/blogs/etc/archive/2008/07/22/4645.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4645" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/tech-ed/default.aspx">tech-ed</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/high+availability/default.aspx">high availability</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/online/default.aspx">online</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/networking/default.aspx">networking</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/panel+discussions/default.aspx">panel discussions</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/standards/default.aspx">standards</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/strategy/default.aspx">strategy</category></item><item><title>Leveraging SQL Server Technologies to Build a Solid High-Availability Strategy - Tech-ed Online Panel video available to view</title><link>http://sqlserver-qa.net/blogs/ha/archive/2008/07/22/leveraging-sql-server-technologies-to-build-a-solid-high-availability-strategy-tech-ed-online-panel-video-available-to-view.aspx</link><pubDate>Tue, 22 Jul 2008 11:31:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4647</guid><dc:creator>SQL Master</dc:creator><slash:comments>0</slash:comments><description>In continuation to Tech-ed North America - what I'm doing there? &amp;amp; Say goodbye to Tech-ed 2008 Developers and say hello to IT-PRO! posts here and to wrap up the earlier posts about Tech-ed Online Panel: Leveraging SQL Server Technologies to Build a Solid High-Availability Strategy the panel discussion video is available to view for the users. You can view the show from this Leveraging SQL Server Technologies to Build a Solid High-Availability Strategy link and also various videos sharing best...(&lt;a href="http://sqlserver-qa.net/blogs/ha/archive/2008/07/22/leveraging-sql-server-technologies-to-build-a-solid-high-availability-strategy-tech-ed-online-panel-video-available-to-view.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4647" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/ha/archive/tags/high+availability/default.aspx">high availability</category><category domain="http://sqlserver-qa.net/blogs/ha/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/ha/archive/tags/tech-ed/default.aspx">tech-ed</category><category domain="http://sqlserver-qa.net/blogs/ha/archive/tags/2008/default.aspx">2008</category><category domain="http://sqlserver-qa.net/blogs/ha/archive/tags/video/default.aspx">video</category></item><item><title>SQL Server Business Intelligence - handling data mining and mission critical applications</title><link>http://sqlserver-qa.net/blogs/bi/archive/2008/07/22/sql-server-business-intelligence-handling-data-mining-and-mission-critical-applications.aspx</link><pubDate>Tue, 22 Jul 2008 09:31:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4641</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>Data, data and data everywhere: a typical scenario for an Enterprise DBA to handle the mission critical applications and comprehensive information across the organization using SQL Server technologies. Since the inception of SQL Server 2005 version Business INtelligence has taken new heights for Data Warehousing and Data Mining perspective to manage the show as if it's all right here--from data mining, warehousing, and scripting techniques to MDX queries, KPI analysis, and the all-new Unified Dimensional...(&lt;a href="http://sqlserver-qa.net/blogs/bi/archive/2008/07/22/sql-server-business-intelligence-handling-data-mining-and-mission-critical-applications.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4641" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/microsoft/default.aspx">microsoft</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/data+mining/default.aspx">data mining</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/business+intelligence/default.aspx">business intelligence</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/data+providers/default.aspx">data providers</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/learning/default.aspx">learning</category></item><item><title>Ordering Interger values stored in Varchar column </title><link>http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/21/4636.aspx</link><pubDate>Mon, 21 Jul 2008 14:21:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4636</guid><dc:creator>Madhivanan</dc:creator><slash:comments>2</slash:comments><description>I have seen many newbies asking "How do I sort the numbers stored in varchar columns?" Here are some methods declare @t table ( data varchar ( 15 )) insert into @t select '6134' union all select '144' union all select '7345' union all select '109812' union all select '100074' union all select '1290' union all select '45764' --Method 1 select data from @t order by cast ( data as int ) --Method 2 select data from @t order by data + 0 --Method 3 select data from @t order by len ( data ), data --Method...(&lt;a href="http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/21/4636.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4636" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/T-SQL/default.aspx">T-SQL</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/sorting/default.aspx">sorting</category></item><item><title>Cumulative Update 8 package for SQL Server 2005 Service Pack2</title><link>http://sqlserver-qa.net/blogs/tools/archive/2008/07/16/cumulative-update-8-package-for-sql-server-2005-service-pack2.aspx</link><pubDate>Wed, 16 Jul 2008 09:50:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4618</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>I felt like somehow I missed to post the availability of Cumulative Update package releases here and referring the last CU7_Update package blogpost now we have CU8 available for download if the specified problem occurs in your platform as per the KBA 951217 here. Obviously this is for the installations that will have SQL Server 2005 SP2 and includes 50 Resolved Issues &amp;amp; 39 Unique Customer Requests, thats a lot. As usual the best practice note from Microsoft and industry is Cumulative Updates...(&lt;a href="http://sqlserver-qa.net/blogs/tools/archive/2008/07/16/cumulative-update-8-package-for-sql-server-2005-service-pack2.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4618" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/best+practices/default.aspx">best practices</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/blogs/default.aspx">blogs</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/2005/default.aspx">2005</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/service+pack2/default.aspx">service pack2</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/cumulative+update/default.aspx">cumulative update</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/cu7/default.aspx">cu7</category></item><item><title>DTS Packages migration webinar - get tips and tricks from a MVP</title><link>http://sqlserver-qa.net/blogs/etc/archive/2008/07/15/4617.aspx</link><pubDate>Tue, 15 Jul 2008 15:44:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4617</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>Brian Kinight is well known SQL Server Professional in the community, every user will know about SQL Server Central website which was founded by him. Join Brian to discuss the strategies of upgrading DTS packages to SQL Server Integration Services (SSIS). As this is a web seminar it is free and will have a definitive showcase an actual DTS package conversion using DTS xChange and other strategies. DTS xChange provides automated DTS to SSIS migration technology for complete SQL Server 2005 upgrades....(&lt;a href="http://sqlserver-qa.net/blogs/etc/archive/2008/07/15/4617.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4617" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/mvp/default.aspx">mvp</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/webcast/default.aspx">webcast</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/best+practices/default.aspx">best practices</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/webinar/default.aspx">webinar</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/migration/default.aspx">migration</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/dts/default.aspx">dts</category></item><item><title>Varchar(max) datatype and Replicate function </title><link>http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/15/4612.aspx</link><pubDate>Tue, 15 Jul 2008 13:54:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4612</guid><dc:creator>Madhivanan</dc:creator><slash:comments>2</slash:comments><description>As you know, Replicate function is used to repeat a character expression for a specified number of times. But by default the result is converted to varchar of maximum size 8000 when you dont convert the expression to specific type Consider the following example declare @v varchar ( max ) set @v = replicate ( 'a' , 50000 ) select len ( @v ), datalength ( @v ) Note that the result is not 50000 but 8000 because by default the result is limited to the maximum size of 8000 for varchar/char datatype To...(&lt;a href="http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/15/4612.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4612" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/T-SQL/default.aspx">T-SQL</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/Replicate/default.aspx">Replicate</category></item><item><title>Get ready for SQL Server 2008 RTM release!</title><link>http://sqlserver-qa.net/blogs/sql2008/archive/2008/07/14/4582.aspx</link><pubDate>Mon, 14 Jul 2008 14:56:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4582</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>Are you desperate to get Relase To Manufacturing (RTM) release of SQL Server 2008? Well, long wait for SQL Server 2008 is nearly over. It is an official announcement that SQL Server 2008 will be on the August price list. This means that customers and partners will soon be able to place their orders for SQL Server 2008 as we get ready to RTM in Q3 of this year. As per Bob Kelly, Microsoft Corporate Vice President of Infrstructure Server Marketing announced during Worldwide Partner conference on July...(&lt;a href="http://sqlserver-qa.net/blogs/sql2008/archive/2008/07/14/4582.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4582" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/2008/default.aspx">2008</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/2005/default.aspx">2005</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/users/default.aspx">users</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/windows+server/default.aspx">windows server</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/visual+studio/default.aspx">visual studio</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/launch/default.aspx">launch</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/itpro/default.aspx">itpro</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/rc0/default.aspx">rc0</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/developer/default.aspx">developer</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/rtm/default.aspx">rtm</category></item><item><title>TSQL to get TOP 10 queries that are using I/O generation, SQL Server 2005</title><link>http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/14/4581.aspx</link><pubDate>Mon, 14 Jul 2008 10:26:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4581</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>DMVs are most helpful to find instant information on SQL instance without causing further delays, in any performance degradation time you can execute following TSQL to get top 10 queries that are generating lots of I/O on the server: SELECT TOP 10 total_logical_reads, total_logical_writes, execution_count, total_logical_reads+total_logical_writes AS [IO_total], st.text AS query_text, db_name(st.dbid) AS database_name, st.objectid AS object_id FROM sys.dm_exec_query_stats qs CROSS APPLY sys.dm_exec_sql_text(sql_handle)...(&lt;a href="http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/14/4581.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4581" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/tsql/default.aspx">tsql</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/dmv/default.aspx">dmv</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/query+plan/default.aspx">query plan</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/sysindexes/default.aspx">sysindexes</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/querystats/default.aspx">querystats</category></item><item><title>Reporting Services 2008 additional features, other than SQL Server Reporting Services 2005</title><link>http://sqlserver-qa.net/blogs/sql2008/archive/2008/07/11/4574.aspx</link><pubDate>Fri, 11 Jul 2008 09:38:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4574</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>SQL Server Reporting Services has been introduced in 2000 version but not catched within the user environment until the Reporting Services 2005 has been rolled out. In this regard administering a Reporting Services installation requires that you know how to perform routine maintenance tasks for server components, and how to manage the content and ongoing operations of the report server. Reporting Services components include Report Server Web service, for background processing applications, which...(&lt;a href="http://sqlserver-qa.net/blogs/sql2008/archive/2008/07/11/4574.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4574" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/2008/default.aspx">2008</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/2000/default.aspx">2000</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/2005/default.aspx">2005</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/reporting+services/default.aspx">reporting services</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/new+features/default.aspx">new features</category></item><item><title>Analysis Service error: Either the user, Domain\User, does not have access to the Database Name database, or the database does not exist.</title><link>http://sqlserver-qa.net/blogs/bi/archive/2008/07/10/analysis-service-error-either-the-user-domain-user-does-not-have-access-to-the-database-name-database-or-the-database-does-not-exist.aspx</link><pubDate>Thu, 10 Jul 2008 08:02:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:3593</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>As it seems the error text on the subject looks familiar when you have installed SQL Server or working with SQL Server databases. How about getting the error on Analysis Services databases (OLAP) within your BI Platform. So in the case of handling the Business Intelligence platform you must be aware of necessary data providers that are required in order to connect the end user application to backed database platform. If not various various exceptions can appear, including: "The specified module could...(&lt;a href="http://sqlserver-qa.net/blogs/bi/archive/2008/07/10/analysis-service-error-either-the-user-domain-user-does-not-have-access-to-the-database-name-database-or-the-database-does-not-exist.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=3593" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/Analysis+Services/default.aspx">Analysis Services</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/security/default.aspx">security</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/data+providers/default.aspx">data providers</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/impersonation/default.aspx">impersonation</category><category domain="http://sqlserver-qa.net/blogs/bi/archive/tags/services/default.aspx">services</category></item><item><title>Microsoft Security Bulletin Summary for July 2008 - what is it now?</title><link>http://sqlserver-qa.net/blogs/perftune/archive/2008/07/09/4566.aspx</link><pubDate>Wed, 09 Jul 2008 08:07:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4566</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>I believe it has been a while that we have seen the security hotfix from Microsoft Security team on SQL Server (alone). The latest security bulletin has announced important security patches that are related to SQL Server in addition to Windows operating system. They quote that "... With the release of the bulletins for July 2008, this bulletin summary replaces the bulletin advance notification originally issued July 3, 2008. For more information about the bulletin advance notification service, see...(&lt;a href="http://sqlserver-qa.net/blogs/perftune/archive/2008/07/09/4566.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4566" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/security/default.aspx">security</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/hotfix/default.aspx">hotfix</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/best+practice/default.aspx">best practice</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/service+pack/default.aspx">service pack</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/guidance/default.aspx">guidance</category><category domain="http://sqlserver-qa.net/blogs/perftune/archive/tags/vulnerability/default.aspx">vulnerability</category></item><item><title>SQLKnowHow - gear up for exclusive training from professionals</title><link>http://sqlserver-qa.net/blogs/etc/archive/2008/07/08/4559.aspx</link><pubDate>Tue, 08 Jul 2008 13:27:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4559</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>SQLKnowHow is the new organisation that is focused on training services based on SQL Server. In this regard they have lined up very interesting list of events in coming months, it will be a great time for the SQL Server Users in United Kingdom to grab the opportunity. For Know How event Know more from following list: Training Events Best Practices in Performance and Availability for SQL Server 2005/2008 Kimberly L. Tripp and Paul S. Randal 1st - 3rd September 2008 Hatfield, Hertfordshire Indexing...(&lt;a href="http://sqlserver-qa.net/blogs/etc/archive/2008/07/08/4559.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4559" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/sql+queen/default.aspx">sql queen</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/performance/default.aspx">performance</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/training/default.aspx">training</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/design/default.aspx">design</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/best+practices/default.aspx">best practices</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/indexing/default.aspx">indexing</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/concurrency/default.aspx">concurrency</category><category domain="http://sqlserver-qa.net/blogs/etc/archive/tags/locking/default.aspx">locking</category></item><item><title>Quick and simple way to know the stored procedures parameters using TSQL</title><link>http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/08/4556.aspx</link><pubDate>Tue, 08 Jul 2008 11:13:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4556</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>As you may be aware that you can pass parameters to the stored procedure when you have the selection of data requirement such as stored procedure with data type,length, parameter position and also the mode of parameter (Input or Output). Using INFORMATION_SCHEMA views you can get further information on what kind of parameters are used within a stored procedure without viewing the stored procedure or calling it to execute. select Specific_Name as 'Procedure_Name', Parameter_Name, Ordinal_Position...(&lt;a href="http://sqlserver-qa.net/blogs/t-sql/archive/2008/07/08/4556.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4556" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/tsql/default.aspx">tsql</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/stored+procedure/default.aspx">stored procedure</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/information+schema/default.aspx">information schema</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/views/default.aspx">views</category><category domain="http://sqlserver-qa.net/blogs/t-sql/archive/tags/parameter/default.aspx">parameter</category></item><item><title>SQL Server Technical Rollup July 2008 - Important &amp; Interested links for you</title><link>http://sqlserver-qa.net/blogs/el/archive/2008/07/07/4549.aspx</link><pubDate>Mon, 07 Jul 2008 07:51:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4549</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>As you may be aware all the Technical information roll-up on MSDN &amp;amp; Technet is sent out in email format, in this regard I wanted to share the important and interested links for you on SQL Server arena. Downloads Source Code Analyzer for SQL Injection Microsoft Source Code Analyzer for SQL Injection is a static code analysis tool for finding SQL Injection vulnerabilities in ASP code. Customers can run the tool on their ASP source code to help identify code paths that are vulnerable to SQL Injection...(&lt;a href="http://sqlserver-qa.net/blogs/el/archive/2008/07/07/4549.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4549" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/el/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/el/archive/tags/best+practices/default.aspx">best practices</category><category domain="http://sqlserver-qa.net/blogs/el/archive/tags/technet/default.aspx">technet</category><category domain="http://sqlserver-qa.net/blogs/el/archive/tags/msdn/default.aspx">msdn</category><category domain="http://sqlserver-qa.net/blogs/el/archive/tags/download/default.aspx">download</category><category domain="http://sqlserver-qa.net/blogs/el/archive/tags/beginners+in+sql+serever/default.aspx">beginners in sql serever</category><category domain="http://sqlserver-qa.net/blogs/el/archive/tags/information/default.aspx">information</category></item><item><title>SQL Server 2005 - How to compare content of tables without using third party tools?</title><link>http://sqlserver-qa.net/blogs/tools/archive/2008/07/04/sql-server-2005-how-to-compare-content-of-tables-without-using-third-party-tools.aspx</link><pubDate>Fri, 04 Jul 2008 08:36:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4543</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>You may be aware about using Third party tools to compare the data between 2 tables. Using SQL Server 2005 you need not entirely dependant on such requirement, TABLEDIFF utility is the new addition to the SQL Server. This utility enables you to compare the table contents by giving consistent information such as whether data is same, are they different and also give what data in the table different. From the command prompt where the SQL Server is installed you can run TABLEDIFF -? to get list of supported...(&lt;a href="http://sqlserver-qa.net/blogs/tools/archive/2008/07/04/sql-server-2005-how-to-compare-content-of-tables-without-using-third-party-tools.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4543" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/data/default.aspx">data</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/data+type/default.aspx">data type</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/tablediff/default.aspx">tablediff</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/utility/default.aspx">utility</category></item><item><title>FIX: Error message after you run the DBCC DBREINDEX Transact-SQL statement on a table that does not have a unique clustered index on a SQL Server 2005-based computer: "Msg 2511"</title><link>http://sqlserver-qa.net/blogs/kba/archive/2008/07/03/4544.aspx</link><pubDate>Thu, 03 Jul 2008 21:46:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4544</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>The following pages were recently modified. Source: Knowledge Base Product: Microsoft SQL Server 2005 Enterprise Edition, SQL Server 2005 Standard Edition &amp;amp; SQL Server 2005 Enterprise X64 Edition Notification Contents: New FIX: Error message after you run the DBCC DBREINDEX Transact-SQL statement on a table that does not have a unique clustered index on a SQL Server 2005-based computer: "Msg 2511" http://support.microsoft.com/kb/954734/en-US...(&lt;a href="http://sqlserver-qa.net/blogs/kba/archive/2008/07/03/4544.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4544" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/kba/default.aspx">kba</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/tsql/default.aspx">tsql</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/dbcc+dbreindex/default.aspx">dbcc dbreindex</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/unique/default.aspx">unique</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/2511/default.aspx">2511</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/clustered+index/default.aspx">clustered index</category></item><item><title>Internet Database based Services find a suitable service provider</title><link>http://sqlserver-qa.net/blogs/bc/archive/2008/07/02/4538.aspx</link><pubDate>Wed, 02 Jul 2008 08:31:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4538</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>When you have your business activities on the Internet then you have a major requirement to provide Business Continuity in finding the suitable/sustainable service provider. So I believe there are few key factors you need to consider such as the location of the provider, such as how easy it will be for you to reach the provider. Why? The reason I bring up distance is because it is really split in the industry. You have some saying I want it close to my office for convenience, then you have the other...(&lt;a href="http://sqlserver-qa.net/blogs/bc/archive/2008/07/02/4538.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4538" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/bc/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/bc/archive/tags/best+practice/default.aspx">best practice</category><category domain="http://sqlserver-qa.net/blogs/bc/archive/tags/asp/default.aspx">asp</category><category domain="http://sqlserver-qa.net/blogs/bc/archive/tags/isp/default.aspx">isp</category><category domain="http://sqlserver-qa.net/blogs/bc/archive/tags/service+provider/default.aspx">service provider</category></item><item><title>SQL Server Express - get sample kits in express way</title><link>http://sqlserver-qa.net/blogs/tools/archive/2008/06/30/sql-server-express-get-sample-kits-in-express-way.aspx</link><pubDate>Mon, 30 Jun 2008 08:30:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4531</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>For every new user in SQL Server world and experienced users to get used to newer version of SQL Server, having sample kit will definetly help out. In this scenario I often get emails asking about any samples or documentation (procedures) to get more about the latest release of SQL Server, in the same fashion thanks to Microsoft learning that such sample kits are available to download for free. The following links source is from Microsoft site: Teacher Starter Kit The Teacher Starter Kit is a rich...(&lt;a href="http://sqlserver-qa.net/blogs/tools/archive/2008/06/30/sql-server-express-get-sample-kits-in-express-way.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4531" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/sql+express/default.aspx">sql express</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/sample/default.aspx">sample</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/download/default.aspx">download</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/guidelines/default.aspx">guidelines</category><category domain="http://sqlserver-qa.net/blogs/tools/archive/tags/kit/default.aspx">kit</category></item><item><title>You receive a "Creating the partitioned snapshot" message when you create a pull subscription that is configured to receive the precomputed partition of a merge publication in SQL Server 2005</title><link>http://sqlserver-qa.net/blogs/kba/archive/2008/06/27/4525.aspx</link><pubDate>Fri, 27 Jun 2008 09:10:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4525</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>The following pages were recently modified. Source: Knowledge Base Product: Microsoft SQL Server 2005 Enterprise Edition &amp;amp; SQL Server 2005 Standard Edition Notification Contents: New You receive a "Creating the partitioned snapshot" message when you create a pull subscription that is configured to receive the precomputed partition of a merge publication in SQL Server 2005 http://support.microsoft.com/kb/953201/en-US...(&lt;a href="http://sqlserver-qa.net/blogs/kba/archive/2008/06/27/4525.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4525" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/kba/default.aspx">kba</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/publication/default.aspx">publication</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/merge+replication/default.aspx">merge replication</category><category domain="http://sqlserver-qa.net/blogs/kba/archive/tags/partition/default.aspx">partition</category></item><item><title>Unable to install SQL Server 2008 RC0 Books Online </title><link>http://sqlserver-qa.net/blogs/sql2008/archive/2008/06/26/4518.aspx</link><pubDate>Thu, 26 Jun 2008 09:54:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4518</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>In continuation with the BOL update topic on SQL2008-RC0_BOL post here I have had troubles in installing the RC0 Books Online on to my laptop. As per the error below I thought it may be problem with the Windows Installer service on my laptop (Vista Ultimate) and tried to install afresh on a central monitoring server (Windows 2003 server) &amp;amp; local machine (Windows XP), still no luck to install the documentation. On my laptop I have Windows Installer service 3.1 and that is not sufficient to carry...(&lt;a href="http://sqlserver-qa.net/blogs/sql2008/archive/2008/06/26/4518.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4518" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/documentation/default.aspx">documentation</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/books+online/default.aspx">books online</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/services/default.aspx">services</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/rc0/default.aspx">rc0</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/windows+installer/default.aspx">windows installer</category></item><item><title>SQL Server 2008 new features highlights - a short video samples</title><link>http://sqlserver-qa.net/blogs/sql2008/archive/2008/06/25/4519.aspx</link><pubDate>Wed, 25 Jun 2008 18:06:00 GMT</pubDate><guid isPermaLink="false">e5229e21-c1bf-42d8-be15-8e3c8579d3f0:4519</guid><dc:creator>SQL Master</dc:creator><slash:comments>2</slash:comments><description>I'm sure that by now you are aware about the list of new features within SQL Server 2008 and recently I have had couple of emails from newbie DBA/users in SQL Server asking about any reference they can get on these new features, with a video. In this regard Microsoft learning has provided right to the point of subject references as follows: SQL Server Enterprise Data Platform Vision Watch the video Support for relational data, XML, FILESTREAM, and spatial data Watch the short video . Extended Events...(&lt;a href="http://sqlserver-qa.net/blogs/sql2008/archive/2008/06/25/4519.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://sqlserver-qa.net/aggbug.aspx?PostID=4519" width="1" height="1"&gt;</description><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/sql+server/default.aspx">sql server</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/video/default.aspx">video</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/new+features/default.aspx">new features</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/dba/default.aspx">dba</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/xml/default.aspx">xml</category><category domain="http://sqlserver-qa.net/blogs/sql2008/archive/tags/samples/default.aspx">samples</category></item></channel></rss>