<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title> Mat Stephen's SQL Server WebLog : Webcasts</title><link>http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx</link><description>Tags: Webcasts</description><dc:language>en-GB</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Getting to know SQL 2005 Service Broker</title><link>http://blogs.technet.com/mat_stephen/archive/2005/09/12/ServiceBroker.aspx</link><pubDate>Tue, 13 Sep 2005 00:27:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:410667</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/410667.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=410667</wfw:commentRss><description>&lt;P&gt;Looks likes I've got to do&amp;nbsp;a presentation on Service Broker for the SQL 2005 launch - so I've been doing some home work on the subject.&lt;/P&gt;
&lt;P&gt;The best primer I've found is &lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql90/html/sqlsvcbroker.asp?frame=true"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql90/html/sqlsvcbroker.asp?frame=true&lt;/A&gt;&amp;nbsp;this is refernenced in the webcast &lt;A href="http://msevents.microsoft.com/cui/WebCastEventDetails.aspx?EventID=1032263311&amp;amp;EventCategory=5&amp;amp;culture=en-us&amp;amp;CountryCode=US"&gt;http://msevents.microsoft.com/cui/WebCastEventDetails.aspx?EventID=1032263311&amp;amp;EventCategory=5&amp;amp;culture=en-us&amp;amp;CountryCode=US&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you've got your head round the basics you'll want to create your ow broker service and queues.&amp;nbsp; Best I've found is "Setting Up a Service Broker Service and Queue" from SQL Server 2005 Books on line at ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/smo9/html/f6f1c8b5-393b-48f2-a2b0-184fef683b5c.htm.&amp;nbsp; Problem with this is there's a bug in the code.&amp;nbsp; I can't remember the delta between what's printed and what I have working, but my suggestion is to use the code below to create the TargetStoredProcedure and then comment out the sp.Create(); line in the sample code with //.&lt;/P&gt;
&lt;P&gt;Hope you enjoy this new technology - if I discover some new usefulties (a new word I've just invented) in this area, I'll post them in my new 'Service Broker' category&lt;/P&gt;
&lt;P&gt;USE [AdventureWorks]&lt;BR&gt;GO&lt;BR&gt;/****** Object:&amp;nbsp; StoredProcedure [dbo].[TargetStoredProcedure]&amp;nbsp;&amp;nbsp;&amp;nbsp; Script Date: 09/12/2005 23:17:28 ******/&lt;BR&gt;SET ANSI_NULLS ON&lt;BR&gt;GO&lt;BR&gt;SET QUOTED_IDENTIFIER ON&lt;BR&gt;GO&lt;BR&gt;create procedure dbo.TargetStoredProcedure as&lt;BR&gt;DECLARE @message_body varbinary(MAX); &lt;BR&gt;DECLARE @message_type_name nvarchar(128); &lt;BR&gt;DECLARE @conversation_handle uniqueidentifier; &lt;BR&gt;DECLARE @message_iduniqueidentifier uniqueidentifier; &lt;BR&gt;DECLARE @message nvarchar(max); &lt;BR&gt;DECLARE @MessageType nvarchar(max); &lt;BR&gt;Declare @message_id nvarchar(max); &lt;/P&gt;
&lt;P&gt;WHILE (1 = 1) &lt;BR&gt;BEGIN &lt;BR&gt;BEGIN TRY &lt;BR&gt;BEGIN TRANSACTION; &lt;BR&gt;WAITFOR ( &lt;/P&gt;
&lt;P&gt;RECEIVE top(1) &lt;BR&gt;@message_type_name = message_type_name, &lt;BR&gt;@message = message_body, &lt;BR&gt;@conversation_handle = conversation_handle, &lt;BR&gt;@message_id = message_id &lt;/P&gt;
&lt;P&gt;FROM TargetQueue &lt;BR&gt;), TIMEOUT 500 &lt;/P&gt;
&lt;P&gt;IF (@@ROWCOUNT = 0) &lt;BR&gt;BEGIN &lt;BR&gt;ROLLBACK TRANSACTION &lt;BR&gt;BREAK &lt;BR&gt;END; &lt;BR&gt;select @message = N'&amp;lt;Hello&amp;gt;Pong&amp;lt;/Hello&amp;gt;'; &lt;BR&gt;set @MessageType = '//microsoft.com/ssbdemo/PongMessageType'; &lt;BR&gt;SEND ON CONVERSATION @conversation_handle &lt;BR&gt;MESSAGE TYPE @MessageType &lt;BR&gt;(@message); &lt;BR&gt;END CONVERSATION @conversation_handle &lt;BR&gt;COMMIT TRANSACTION &lt;BR&gt;END TRY &lt;BR&gt;BEGIN CATCH &lt;BR&gt;print @@error; &lt;BR&gt;ROLLBACK &lt;BR&gt;CONTINUE &lt;BR&gt;END CATCH &lt;BR&gt;END; &lt;BR&gt;GO&lt;BR&gt;SET ANSI_NULLS OFF&lt;BR&gt;GO&lt;BR&gt;SET QUOTED_IDENTIFIER OFF&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=410667" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Performance/default.aspx">Performance</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/T-SQL/default.aspx">T-SQL</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Architects+Corner/default.aspx">Architects Corner</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Service+Broker/default.aspx">Service Broker</category></item><item><title>Project REAL—Business Intelligence in Practice - great website!</title><link>http://blogs.technet.com/mat_stephen/archive/2005/08/30/ProjectReal.aspx</link><pubDate>Tue, 30 Aug 2005 18:27:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:409989</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/409989.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=409989</wfw:commentRss><description>&lt;P&gt;For sometime a group of Program Managers from the SQL BI team have been working with a customer, Barnes and Noble, to produce a SQL BI solution for their data warehouse and analysis needs using SQL 2005.&amp;nbsp; The leasons learnt from all their work is being continually published to this website &lt;A href="http://www.microsoft.com/sql/bi/projectreal/default.mspx"&gt;http://www.microsoft.com/sql/bi/projectreal/default.mspx&lt;/A&gt;&amp;nbsp;in the form of webcasts and whitepapers.&amp;nbsp; With so many new tools and functionality to play with in SQL 2005, I have found their work (what I've seen of it so far), to be invaluable.&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=409989" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Reporting+Services/default.aspx">Reporting Services</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Performance/default.aspx">Performance</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/SQL+Server+Integration+Services/default.aspx">SQL Server Integration Services</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Analysis+Services+2005/default.aspx">Analysis Services 2005</category></item><item><title>SQL Server 2005 webcasts starting today and coming throughout June</title><link>http://blogs.technet.com/mat_stephen/archive/2005/05/31/405495.aspx</link><pubDate>Tue, 31 May 2005 14:12:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:405495</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/405495.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=405495</wfw:commentRss><description>&lt;P&gt;You can register for all these webcasts from here&amp;nbsp;&lt;A href="http://www.microsoft.com/uk/technet/training/webcasts.mspx#EIA"&gt;http://www.microsoft.com/uk/technet/training/webcasts.mspx#EIA&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;31 May, 17.30: Real-Time BI with SQL Server 2005 Analysis Services&lt;BR&gt;There is an increasing demand to make business intelligence (BI) 'real-time'. This webcast discusses the challenges of making BI more real-time, and how some of these challenges can be overcome using new features in Analysis Services, and other components of Microsoft SQL Server 2005. While the barriers to completely real-time BI remain, SQL Server 2005 makes information real-time enough to support better and faster business decisions.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;2 June, 17.30: Data Warehousing Enhancements in SQL Server 2005&lt;BR&gt;According to industry experts, Microsoft SQL Server 2000 is one of the most installed database systems for data warehousing. Microsoft SQL Server 2005 incorporates new features to make managing and running data warehouses a little easier. From partitioning support to on-line operations, many improvements in the new release will benefit the lives of those responsible for running and maintaining data warehouses on SQL Server. This webcast walks through the new features and enhancements in SQL Server 2005 that are most relevant to data warehouse practitioners.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;20 June, 16.00: SQL Server 2005 for CRM&lt;BR&gt;Does your business depend on the interoperability of Microsoft SQL Server and CRM applications? Now that more CRM applications integrate with Microsoft .NET-enabled technologies, you can deliver business solutions at reduced total cost of ownership. Microsoft SQL Server 2005 offers specific benefits to CRM applications such as Siebel. This webcast explores the new capabilities of SQL Server 2005 that are of specific interest and benefit to users running their CRM applications in conjunction with SQL Server.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;20 June, 17.30: Upgrading to Microsoft SQL Server 2005&lt;BR&gt;Increase the scale, performance, security, and continuous availability of your existing systems by upgrading to Microsoft SQL Server 2005. This comprehensive webcast walks you through the necessary steps for planning and upgrading to SQL Server 2005. Learn tips and techniques on how to minimize your down time during the upgrade and how to make the most of the upgrade tools.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;21 June, 17.30: Scripting in Microsoft SQL Server 2005&lt;BR&gt;Learn about the capabilities of the new SQL Server 2005 command-line query tool, SQLCMD that will replace the osql and isql utilities. This webcast shows how you can use the new Windows Management Instrumentation providers to configure services and network protocols and set up event notifications to keep you aware of changes to your servers.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;21 June, 19.30: Get More from Your Oracle Data with SQL Server 2005&lt;BR&gt;Explore Microsoft SQL Server 2005 solutions for integrating with Oracle data sources using distributed query, replication, and SQL Server 2005 Integration Services. This webcast will show you how these solutions enable you to take full advantage of the power of SQL Server 2005, including the full business intelligence suite, even when one or more of your data sources is an Oracle database.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;22 June, 19.30: Troubleshooting SQL Server 2005 Integration Services&lt;BR&gt;When something unexpected happens while running your extraction, transformation, and loading processes, how can you figure out what went wrong? Microsoft SQL Server 2005 Integration Services provides better support for troubleshooting than ever before. This webcast outlines the management functionality built into Integration Services to help troubleshoot operational issues.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;27 June, 16.00: SQL Server 2005 for Financial Services&lt;BR&gt;How does Microsoft SQL Server 2005 impact your financial service business? How can you take advantage of the robust capabilities of SQL Server 2005 to reduce total cost of ownership and create business opportunities? See Microsoft SQL Server 2005 from a financial services perspective. This 90-minute webcast is geared toward the financial services industry and highlights the specific opportunities and benefits that are of interest to those in financial services.&lt;BR&gt;&amp;nbsp;&lt;BR&gt;30 June, 17.30: The Hidden Benefits of Upgrading to SQL Server 2005&lt;BR&gt;Learn about the benefits you get just by upgrading to Microsoft SQL Server 2005. Even if you don't use all the new features in SQL Server 2005, such as database mirroring and partitioning, or writing stored procedures in .NET languages, you can still reap great benefits. This webcast introduces the many new features in SQL Server 2005 that can benefit you, even without rewriting your applications or undertaking new development. You will see many examples where your performance, concurrency and availability are improved simply by upgrading.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=405495" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>Webcast with Proclarity</title><link>http://blogs.technet.com/mat_stephen/archive/2005/05/11/404845.aspx</link><pubDate>Wed, 11 May 2005 23:45:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:404845</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/404845.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=404845</wfw:commentRss><description>&lt;P class=MsoNormal&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN style="FONT-SIZE: 12pt"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN style="FONT-SIZE: 12pt"&gt;If you were unable to connct to our webcast with Proclarity last month then please have another go, here is the corresponding missive from marketing:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN style="FONT-SIZE: 12pt"&gt;Last month you registered to attend the TechNet Webcast ‘Analysing and Presenting SQL Server Data with Proclarity – a Technical Overview’. &amp;nbsp;Unfortunately, a number of delegates experienced technical difficulties in entering the webcast.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN style="FONT-SIZE: 12pt"&gt;We have now overcome these difficulties and subsequently run other webcasts without problem.&amp;nbsp; Therefore, we have re-scheduled this webcast to take place on 19 May at 2pm.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN style="FONT-SIZE: 12pt"&gt;You will not be registered automatically on the re-scheduled event, therefore please register online using the link below.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN style="FONT-SIZE: 12pt"&gt;&lt;A title=https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118759842 href="https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118759842"&gt;https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118759842&lt;/A&gt; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face="Times New Roman" size=3&gt;&lt;SPAN style="FONT-SIZE: 12pt"&gt;Thank you once again for your interest in this event, we look forward to welcoming you to what will be a highly informative and interactive presentation on the 19&lt;SUP&gt;th&lt;/SUP&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;FONT face="Comic Sans MS" color=blue size=2&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: 'Comic Sans MS'"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=404845" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Reporting+Services/default.aspx">Reporting Services</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/SQL+Server+2000/default.aspx">SQL Server 2000</category></item><item><title>Webcasts - Business Intelligence using SQL Server 2005</title><link>http://blogs.technet.com/mat_stephen/archive/2005/05/03/404428.aspx</link><pubDate>Tue, 03 May 2005 14:56:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:404428</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/404428.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=404428</wfw:commentRss><description>&lt;P&gt;The marketing people here at Microsoft, have asked me to advertise a new series of BI webcasts using SQL Server 2005.&amp;nbsp; So, to oblige, here is their spiel:&lt;/P&gt;
&lt;P class=overview&gt;&lt;FONT face=Arial size=2&gt;&lt;SPAN&gt;“&lt;/SPAN&gt;&lt;/FONT&gt;Your business intelligence (BI) applications need to integrate seamlessly into your overall application infrastructure to deliver real competitive advantage. Are you thinking about how to leverage your existing investment in BI and without sacrificing the ability to extend and add cutting-edge functionality? Is developing BI applications and managing them across multiple data platforms and tools becoming a complex and costly venture? Microsoft SQL Server 2005 is around the corner, delivering its enterprise-class BI platform with rich and powerful integration, analysis, and reporting functionality.&lt;/P&gt;
&lt;P class=overview&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Tune in to this series as we show you how to:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI class=MsoNormal&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Take advantage of high-availability features in SQL Server 2005 BI &lt;/SPAN&gt;&lt;/FONT&gt;
&lt;LI class=MsoNormal&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Increase SQL Server 2005 BI application performance using the new scalability features &lt;/SPAN&gt;&lt;/FONT&gt;
&lt;LI class=MsoNormal&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Use the single management shell and new features to easily manage and deploy BI applications &lt;/SPAN&gt;&lt;/FONT&gt;
&lt;LI class=MsoNormal&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Extend the functionality of SQL Server 2005 BI applications using the .NET Framework &lt;/SPAN&gt;&lt;/FONT&gt;
&lt;LI class=MsoNormal&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Develop rich applications on top of SQL Server 2005 BI platform using ADOMD.net, XML and the new management object model &lt;/SPAN&gt;&lt;/FONT&gt;
&lt;LI class=MsoNormal&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Add reporting functionality to any application by easily embedding Report Controls in your applications &lt;/SPAN&gt;&lt;/FONT&gt;
&lt;LI class=MsoNormal&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Use the SQL Server data mining to plug in your own data mining algorithms&lt;/SPAN&gt;&lt;/FONT&gt; &lt;/LI&gt;&lt;/UL&gt;
&lt;P class=overview&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Through interactive presentations and end-to-end scenario demonstrations, this series provides you with the knowledge you need to develop and implement easy-to-manage, adaptive BI application architecture. The powerful SQL Server 2005 BI platform will help you keep pace with the evolving needs of your organization.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=overview&gt;&lt;B&gt;&lt;FONT face=Verdana size=1&gt;&lt;SPAN&gt;Bonus&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/B&gt;: Attend any live webcast in this series to qualify to win a Portable Media Center (&lt;A title=http://www.microsoft.com/seminar/events/officialrules_pmc.mspx href="http://www.microsoft.com/seminar/events/officialrules_pmc.mspx"&gt;&lt;FONT color=#0033cc&gt;&lt;SPAN&gt;official rules&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/A&gt;) pre-loaded with our best webcasts.”&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;U&gt;&lt;FONT face="Times New Roman" size=2&gt;&lt;SPAN&gt;&lt;A title=http://www.microsoft.com/events/series/sqlserverbi.mspx href="http://www.microsoft.com/events/series/sqlserverbi.mspx"&gt;Register for the SQL Server 2005 BI Webcast Series&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Times New Roman" color=gray size=2&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face=Arial color=navy size=2&gt;&lt;SPAN&gt;&lt;A title=http://www.microsoft.com/events/series/sqlserverbi.mspx href="http://www.microsoft.com/events/series/sqlserverbi.mspx"&gt;&lt;FONT color=navy&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=404428" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>Microsoft SQL Server 2005 Educational Webcast Series on TechNet</title><link>http://blogs.technet.com/mat_stephen/archive/2005/04/15/403755.aspx</link><pubDate>Fri, 15 Apr 2005 10:47:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:403755</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/403755.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=403755</wfw:commentRss><description>&lt;P class=MsoNormal&gt;
&lt;P class=MsoNormal&gt;Sorry I'm a&amp;nbsp;little late in alerting you to this&amp;nbsp;SQL Server 2005 Educational Webcast Series on TechNet, which runs from March 21-May 18. This 10 part series will provide IT Professionals with a broad overview of the benefits of SQL Server 2005 to whet their appetite for the upcoming public beta release, TechEd and a more detailed technical webcast series to follow TechEd in June. To learn more see &lt;A href="http://www.microsoft.com/seminar/events/series/technetsqlserver2005.mspx"&gt;http://www.microsoft.com/seminar/events/series/technetsqlserver2005.mspx&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Also Don't forget these webcasts I'll be hosting out of the UK - they'll be mostly demo based!&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;A href="https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118757111%20"&gt;&lt;FONT color=#0033cc&gt;&lt;STRONG&gt;19 April, 2pm: TechNet Webcast: Extending the Microsoft BI Platform: Panorama Software&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;This session will show you how you can integrate Panorama technology seamlessly with SQL Analysis Service and SQL Reporting Services to address the challenges you may face in a Microsoft BI environment. These include scalability, integrating with Microsoft Excel, exception reporting, business level performance management and alerting. The session will provide a technical overview of Panorama’s software, it will be fully interactive with plenty of time for questions.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;A href="https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118757290"&gt;&lt;STRONG&gt;&lt;FONT color=#0033cc&gt;26 April- Analysing and Presenting SQL Server data with ProClarity - a Technical Overview&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;This webcast is intended to explain how the combination of an analytics application like ProClarity and Analysis Services and Reporting Services in SQL Server, can help organisations analyse large volumes of data quickly and then share the results. An on-line demonstration of ProClarity will show how SQL Server data can be graphically analysed, and the results then shared via Reporting Services.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=403755" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/SQL+Server+2005/default.aspx">SQL Server 2005</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>Questions arising from TechNet Webcast: Business Intelligence on the Microsoft Platform 23rd March.</title><link>http://blogs.technet.com/mat_stephen/archive/2005/03/30/403090.aspx</link><pubDate>Wed, 30 Mar 2005 04:21:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:403090</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/403090.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=403090</wfw:commentRss><description>&lt;P class=MsoNormal&gt;Thanks to all of you who tuned in to this webcast last week.&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;Sorry this post is a little late, no sooner had I finished the webcast than the sore throat I had turned into a full blown cold and layed me out for the next couple of days.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;The archive for the webcasst can be found here: &lt;A title=http://www.placeware.com/cc/emea/view?id=118756214&amp;amp;pw=K2GX9N href="http://www.placeware.com/cc/emea/view?id=118756214&amp;amp;pw=K2GX9N"&gt;http://www.placeware.com/cc/emea/view?id=118756214&amp;amp;pw=K2GX9N&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Here are some of the questions and answers arising that may be of wider interest:&lt;/P&gt;
&lt;P&gt;What is the URL for the Analysis Services Excel download?&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=DAE82128-9F21-475D-88A4-4B6E6C069FF0&amp;amp;displaylang=en&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;DIV class=MsoNormal align=center&gt;
&lt;HR align=center&gt;
&lt;/DIV&gt;
&lt;P&gt;What are the new SQL Server 2005 DM algorithms?&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;Time Series, Sequence Clustering, Association, Naive Bayes and Neural Net.&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;DIV class=MsoNormal align=center&gt;
&lt;HR align=center&gt;
&lt;/DIV&gt;
&lt;P&gt;Where can I get the SQL Server BI Accelerator from?&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;The BI Accelerator can be downloaded from http://www.microsoft.com/sql/ssabi/ As Mat says there are 2 models available in the download but others are available. Manufacturing and Financial templates can be downloaded from http://www.microsoft.com/sql/ssabi/techinfo/datamodels.asp&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;DIV class=MsoNormal align=center&gt;
&lt;HR align=center&gt;
&lt;/DIV&gt;
&lt;P&gt;Asked: will writeback in SQL 2005 be better that current? And if so, how much better and where can I find out more?&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;I believe it will perform better. &lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;To find out more detail have a look at the sql 2005 webcasts at www.microsoft.com/sql&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;DIV class=MsoNormal align=center&gt;
&lt;HR align=center&gt;
&lt;/DIV&gt;
&lt;P&gt;Is there an additional add-in to view olap cubes via Excel97?&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;There are 3rd party tools but nothing available for 97 directly from MSFT&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;DIV class=MsoNormal align=center&gt;
&lt;HR align=center&gt;
&lt;/DIV&gt;
&lt;P class=MsoNormal&gt;I hope you can join us for the next two BI webcasts mentioned in my last post&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=403090" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>Forthcoming UK Microsoft SQL Server Business Intelligence Webcasts.</title><link>http://blogs.technet.com/mat_stephen/archive/2005/03/22/400311.aspx</link><pubDate>Tue, 22 Mar 2005 17:54:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:400311</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/400311.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=400311</wfw:commentRss><description>&lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;I shall be presenting this first webcast myself and hosting the other two – hope you can join in.&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 140%"&gt;&lt;b&gt;&lt;a href="https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118756214"&gt;23 March, 10am: TechNet Webcast: Business Intelligence on the Microsoft Platform&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;This webcast is will provide IT Professionals with a complete technical introduction to Business Intelligence on the Microsoft Platform. We will cover the key concepts and discuss the challenges customers face when building BI Solutions. We will demonstrate Microsoft&lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:PersonName w:st="on"&gt;'&lt;/st1:PersonName&gt;s Business Intelligence (BI) Platform and look at the components it provides throughout the lifecycle of a Business Intelligence project.&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;a href="https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118757111%20"&gt;&lt;font color="#0033cc"&gt;&lt;strong&gt;19 April, 2pm: TechNet Webcast: Extending the Microsoft BI Platform: Panorama Software&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;This session will show you how you can integrate Panorama technology seamlessly with SQL Analysis Service and SQL Reporting Services to address the challenges you may face in a Microsoft BI environment. These include scalability, integrating with Microsoft Excel, exception reporting, business level performance management and alerting. The session will provide a technical overview of Panorama’s software, it will be fully interactive with plenty of time for questions.&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;a href="https://msevents-eu.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-GB&amp;amp;eventid=118757290"&gt;&lt;strong&gt;&lt;font color="#0033cc"&gt;26 April- Analysing and Presenting SQL Server data with ProClarity - a Technical Overview&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;This webcast is intended to explain how the combination of an analytics application like ProClarity and Analysis Services and Reporting Services in SQL Server, can help organisations analyse large volumes of data quickly and then share the results. An on-line demonstration of ProClarity will show how SQL Server data can be graphically analysed, and the results then shared via Reporting Services.&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=400311" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>SQL Server SP4 Beta is still Open</title><link>http://blogs.technet.com/mat_stephen/archive/2005/02/02/365318.aspx</link><pubDate>Wed, 02 Feb 2005 19:13:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:365318</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/365318.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=365318</wfw:commentRss><description>&lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;SQL Server SP4 Beta is still Open.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face="Times New Roman" size="3"&gt;&lt;span style="FONT-SIZE: 12pt"&gt;Customers can sign up here for the SP4 Beta Program &lt;a title="http" href="http://www.microsoft.com/sql/evaluation/betanominations.asp"&gt;http://www.microsoft.com/sql/evaluation/betanominations.asp&lt;/a&gt;.&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Times New Roman" size="3"&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Upcoming Wechat on SQL Server SP4 on February 15, 2:00 – 3:00pm PST. Sign up here:&lt;/span&gt;&lt;/font&gt; &lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Times New Roman" size="3"&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&lt;a title="http" href="http://www.microsoft.com/technet/community/chats/default.mspx"&gt;&lt;font title="http" face="Verdana" size="2"&gt;&lt;span title="http" style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana"&gt;http://www.microsoft.com/technet/community/chats/default.mspx&lt;/span&gt;&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;b&gt;&lt;i&gt;&lt;font face="Arial" color="#993366" size="2"&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; COLOR: #993366; FONT-STYLE: italic; FONT-FAMILY: Arial"&gt; &lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;/b&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;and scroll down to SQL Server SP4 chat, sponsored by SSWUG.ORG.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;The first 75 customers who complete a new SP4 Survey will receive a free gift.&lt;/span&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Q&amp;amp;A for the SP4 Beta&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;What is in SP4?&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;SP4 includes all of the latest security fixes and quick fix updates for SQL Server 2000 to make your SQL Server 2000 system as secure and functional as possible.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;This is the first service pack to service our 64bit release of SQL Server and customers who are on 64bit hardware or considering 64bit investments should take advantage of SP4.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;When is SP4 scheduled for release?&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;SP4 is scheduled to be released in the 1HCY05, but the exact date will be dependent upon getting sufficient customer feedback.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-WEIGHT: bold; FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Why should I test SP4?&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;Testing SP4 gets you ahead of the curve for adopting a new service pack and helps you to get your systems as up-to-date as possible. If you participate in the SP4 beta program,, you will be able to interact with the SQL Development team and make sure your issues are reviewed and addressed before the public release of the product.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=365318" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Free+SQL+Server+Tools_2C00_+Utilities+and+Addins/default.aspx">Free SQL Server Tools, Utilities and Addins</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>TechNet Webcast: Troubleshooting Microsoft SQL Server 2000 (Level 200) Friday, February 04, 2005 - 9:30 AM - 11:00 AM Pacific Time</title><link>http://blogs.technet.com/mat_stephen/archive/2005/02/01/364557.aspx</link><pubDate>Tue, 01 Feb 2005 22:50:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:364557</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/364557.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=364557</wfw:commentRss><description>&lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Friday, February 04, 2005&lt;/span&gt;&lt;/font&gt;&lt;font face="Verdana" size="1"&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt; - 9:30 AM - 11:00 AM Pacific Time&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="FR" style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt;Bryan Von Axelson&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="FR" style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt;, TechNet Presenter, Microsoft&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt; Corporation&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;In this session we show how to review SQL Server logs, SQL Server events in Event Viewer, and create a Database Maintenance plan that backs up and optimizes your SQL Server databases. We will also discuss how to use SQL Server troubleshooting tools such as SQLDiag.exe, the Database Consistency Checker, and use troubleshooting stored procedures. Finally we will create and then troubleshoot a block in SQL Server using troubleshooting tools and the SQL Server Profiler.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;&lt;a title="http" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032267957&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032267957&amp;amp;Culture=en-US&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=364557" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>MSDN Webcast: Identifying Application Performance Problems with SQL Server and Shadowfax (Level 400)</title><link>http://blogs.technet.com/mat_stephen/archive/2004/12/20/327324.aspx</link><pubDate>Mon, 20 Dec 2004 21:22:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:327324</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/327324.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=327324</wfw:commentRss><description>&lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Thursday, January 13, 2005 - 11:00 AM - 12:00 PM Pacific Time&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt;Chuck Delouis, Enterprise Architect, VERITAS&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Over the last three years, Microsoft and VERITAS have collected and analyzed the most frequent performance related problems with Microsoft SQL Server from hundreds of customers. This webcast session will articulate these performance problems, describe their impact, and demonstrate how they can be solved. During this webcast we will use The Reference Implementation of Shadowfax as a case study.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" color="black" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana"&gt;&lt;a title="http" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266557&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266557&amp;amp;Culture=en-US&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=327324" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Performance/default.aspx">Performance</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>MSDN Webcast: New Features in Reporting Services Service Pack 2 (Level 400)</title><link>http://blogs.technet.com/mat_stephen/archive/2004/12/20/327323.aspx</link><pubDate>Mon, 20 Dec 2004 21:21:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:327323</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/327323.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=327323</wfw:commentRss><description>&lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Monday, January 10, 2005 - 9:00 AM - 10:00 AM Pacific Time&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt;Geoff Snowman, MSDN DEVELOPER COMM CHAMPION, Microsoft Corp.&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Service Pack 2 for Microsoft SQL Server Reporting Services contains two improved features: client-side printing and Microsoft SharePoint integration, in addition to the usual rollup of any outstanding hot fixes. In this webcast, we'll investigate these two features, demonstrating both the print dialog box and the new Report Viewer and Report Explorer Web parts.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" color="black" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana"&gt;&lt;a title="http" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266509&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266509&amp;amp;Culture=en-US&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=327323" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Reporting+Services/default.aspx">Reporting Services</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>MSDN Webcast: Application Performance Tuning Using SQL Server Profiler 2005 (Level 200)</title><link>http://blogs.technet.com/mat_stephen/archive/2004/12/20/327322.aspx</link><pubDate>Mon, 20 Dec 2004 21:19:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:327322</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/327322.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=327322</wfw:commentRss><description>&lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Friday, January 07, 2005 - 9:00 AM - 10:00 AM Pacific Time&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt;Geoff Snowman, MSDN DEVELOPER COMM CHAMPION, Microsoft Corp.&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;If your system has a performance problem, how do you know whether the problem lies in the application or the database? You need a tool that will let you view interactions between the application and the database, and that's where Microsoft SQL Server Profiler comes in. In this webcast, we'll take a look at SQL Server Profiler and teach you how to analyze those tricky performance problems that lie somewhere between the application and the database.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" color="black" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: Verdana"&gt;&lt;a title="http" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266507&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266507&amp;amp;Culture=en-US&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=327322" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Performance/default.aspx">Performance</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item><item><title>TechNet Webcast: Migrating Oracle and UNIX Systems to SQL and Windows - Level: 200</title><link>http://blogs.technet.com/mat_stephen/archive/2004/12/20/327321.aspx</link><pubDate>Mon, 20 Dec 2004 21:18:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:327321</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/327321.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=327321</wfw:commentRss><description>&lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Thursday, January 20, 2005 - 11:30 - 1:00 PM Pacific Time&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt;Peter Larsen, Software Development Engineer, Microsoft Corporation&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Does your organization have plans for a process-driven migration of an Oracle database on UNIX to Microsoft SQL Server on Windows? In this session, we will outline different migration strategies, highlight key technical considerations and demonstrate what is involved in performing the migration. The discussion will cover both application and database migration issues including a number of Web application server scenarios.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;u&gt;&lt;font face="Verdana" color="blue" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; COLOR: blue; FONT-FAMILY: Verdana"&gt;&lt;a title="http" href="http://go.microsoft.com/fwlink/?LinkId=39963"&gt;http://go.microsoft.com/fwlink/?LinkId=39963&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/u&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=327321" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Oracle/default.aspx">Oracle</category></item><item><title>TechNet Webcast: A Technical Overview of SQL 2005 High Availability Features (Part 2 of 2) - Level: 200</title><link>http://blogs.technet.com/mat_stephen/archive/2004/12/20/327319.aspx</link><pubDate>Mon, 20 Dec 2004 21:15:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:327319</guid><dc:creator>Mat_Stephen</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/mat_stephen/comments/327319.aspx</comments><wfw:commentRss>http://blogs.technet.com/mat_stephen/commentrss.aspx?PostID=327319</wfw:commentRss><description>&lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;Friday, January 14, 2005 - 9:30 - 10:30 AM Pacific Time&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;i&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-STYLE: italic; FONT-FAMILY: Verdana"&gt;Matthew Hester, TechNet Presenter, Microsoft Corporation&lt;/span&gt;&lt;/font&gt;&lt;/i&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;font face="Verdana" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"&gt;There are a number of barriers to availability, and only some of these are addressable by DBMS technology. This session looks at some of the features of SQL Server 2005, the next release of the SQL Server product that can help address some of these barriers. This second part of the series addresses two specific areas: user or application error, and data access concurrency limitations. User or application error and concurrency limitations can cause problems for availability. Join this webcast to learn about the SQL Server 2005 features that can help minimize this type of situation.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;u&gt;&lt;font face="Verdana" color="blue" size="1"&gt;&lt;span lang="EN" style="FONT-SIZE: 9pt; COLOR: blue; FONT-FAMILY: Verdana"&gt;&lt;a title="http" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266465&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032266465&amp;amp;Culture=en-US&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/u&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=327319" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/mat_stephen/archive/tags/High+Availability+and+Disaster+Recovery/default.aspx">High Availability and Disaster Recovery</category><category domain="http://blogs.technet.com/mat_stephen/archive/tags/Webcasts/default.aspx">Webcasts</category></item></channel></rss>