<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.claritycon.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>Andrew Karcher&amp;#39;s Bits o&amp;#39; Data</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>Utilizing Custom Fonts with SQL Reporting Services (SSRS) and Exporting to PDF</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2010/01/18/utilizing-custom-fonts-with-sql-reporting-services-ssrs-and-exporting-to-pdf.aspx</link><pubDate>Mon, 18 Jan 2010 08:41:08 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:103189</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=103189</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2010/01/18/utilizing-custom-fonts-with-sql-reporting-services-ssrs-and-exporting-to-pdf.aspx#comments</comments><description>&lt;p&gt;I recently had a unique challenge with SSRS which was the utilization of a Custom Font on an SSRS Report. Normally, I do not think about fonts other than what get installed as system fonts in Windows so this was a fairly new experience. I know a few people who REALLY enjoy fonts in the Design Practice at Clarity, but had never considered the impact and usefulness they can play in SSRS.&amp;#160; It was somewhat difficult to find information about this so I figured I would summarize to save some other people some trouble.&lt;/p&gt;  &lt;p&gt;The report that I had to develop was going to be a customer facing report so there were some fairly exact standards that it needed to comply with both from an aesthetic and regulatory perspective, much more so than most SSRS reports which are generally for internal consumption only. As an idea of some of the requirements take a look at a statement from your cell phone provider, local utility or television provider, and that is similar to what I had to build. If you have never looked very closely at something like that you probably have missed the sheer amount of different fonts, font sizes, font weights, font decorations, and so on that is used in building that statement. Some of the formatting is done based on aesthetics and some is also based on regulations, such as minimum font sizes for those disclaimers that you can barely read on the statement. &lt;/p&gt;  &lt;p&gt;So before I get into the nuts and bolts of this, I need to give a shout out to Andre Milbradt from the SSRS team who was very helpful in clearing up some of the confusion out there for me on font embedding and the PDF Renderer.&lt;/p&gt;  &lt;p&gt;Before we get into SSRS, let’s go into a bit about the different types of fonts out there (Reminder: I am not a Font guy). There are two major types of Fonts out there: True Type (wiki: &lt;a href="http://en.wikipedia.org/wiki/True_Type_Font"&gt;http://en.wikipedia.org/wiki/True_Type_Font&lt;/a&gt; ) and Open Type (wiki: &lt;a href="http://en.wikipedia.org/wiki/OpenType"&gt;http://en.wikipedia.org/wiki/OpenType&lt;/a&gt;). Of these two, SSRS fully supports True Type Fonts and has limited support for Open Type Fonts. Essentially, any Font that can be instantiated by the .Net System.Drawing.Font (http://msdn.microsoft.com/en-us/library/system.drawing.font.aspx) class is supported by SSRS. Because the custom font that we needed was available as both a True Type Font and an Open Type Font, we went with the True Type font since we knew that it would be fully supported.&lt;/p&gt;  &lt;p&gt;So we went ahead and installed the fonts on the developer machine and the SSRS server. On the development machine, you do have to restart Visual Studio after you install the fonts for Visual Studio to pick up on the font. On the server, we were having issues with SSRS picking up the newly installed Font until we restarted the Reporting Services Server. We probably could have just restarted SSRS, but we ended up just restarting the server. If you have never installed a font before (I hadn’t before this project) you can get to the installed fonts by going to Control Panel -&amp;gt; Fonts. For Windows XP and above you can just copy and paste the font files into this directory. For Vista and above, one of the right-click options on the .ttf font file is “Install”.&lt;/p&gt;  &lt;p&gt;I first started developing the report in SSRS 2005, using my custom font and it all looks good. Then I try to export to PDF for the first time and “Uh-Oh”. That doesn’t quite work. And after a bit of research and some verification from the PG team, SSRS 2005 does have limited support PDF Font Embedding, but it is limited to Unicode Data. You can check out the Books Online here (&lt;a href="http://technet.microsoft.com/en-us/library/ms159713(SQL.90).aspx" target="_blank"&gt;http://technet.microsoft.com/en-us/library/ms159713(SQL.90).aspx&lt;/a&gt;) about the behavior in SSRS 2005. You can also check out this post from Robert Bruckner (&lt;a href="http://blogs.msdn.com/robertbruckner/archive/2008/10/27/unicode-in-pdf-font-embedding.aspx" target="_blank"&gt;http://blogs.msdn.com/robertbruckner/archive/2008/10/27/unicode-in-pdf-font-embedding.aspx&lt;/a&gt; ) on the feature in SSRS 2008 CU1, which is the same feature that was also added SSRS 2005 in SP3. So since I was using ANSI text data, it was on to SSRS 2008.&lt;/p&gt;  &lt;p&gt;So I started looking at Books Online for SSRS 2008 and noticed the same restrictions on Font Embedding in PDF as there are in SSRS 2005. If you take a look at the same topic for SSRS 2008 (&lt;a href="http://technet.microsoft.com/en-us/library/ms159713(SQL.100).aspx" target="_blank"&gt;http://technet.microsoft.com/en-us/library/ms159713(SQL.100).aspx&lt;/a&gt;) in the Font Embedding section it still lists the following as a restriction, “The characters in the string that has the Font property set are Unicode, not ANSI. No font embedding occurs for ANSI characters.” After confirmation from the product group, this is incorrect and a User Education bug was submitted to have this documentation fixed. So with that out of the way and we had confirmation that SSRS 2008 will embed fonts within a generated PDF, we developed our report.&lt;/p&gt;  &lt;p&gt;At this point I want to remind you to restart the server after installing your font, because I forgot my own rule to restart the server after installing fonts and was pulling my hair out at one point.&lt;/p&gt;  &lt;p&gt;So after you have developed and deployed your report, you export to PDF and want to verify that your Font got embedded. There are a number of ways to do this. First, check the properties of the PDF. In Acrobat Reader, go to File-&amp;gt;Properties and then click on the Font tab. There should be a listing of Fonts there which should include your custom font. Second, send the PDF to someone who does not have the Font installed. They should see the new custom font as well in their PDF. Lastly, if your custom font is not obvious, having a nice trained designer eye is the best tool you can have to verify the font for you.&lt;/p&gt;  &lt;p&gt;So hopefully this post clears up some confusion on custom fonts and Font Embedding with the PDF Font Renderer.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=103189" width="1" height="1"&gt;</description><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Microsoft+SQL+Server/default.aspx">Microsoft SQL Server</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category></item><item><title>Someone call a Weatherman, the Clouds have shifted</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/03/11/someone-call-a-weatherman-the-clouds-have-shifted.aspx</link><pubDate>Wed, 11 Mar 2009 15:39:36 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:62152</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=62152</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/03/11/someone-call-a-weatherman-the-clouds-have-shifted.aspx#comments</comments><description>&lt;p&gt;In a move that I think is great from feature perspective, the SQL Server Data Services team has made important changes to the SQL Data Services feature.&amp;#160; Essentially, the team is moving away from the name\value pair implementation that was released with CTP 1 and is moving to a full relational database model.&amp;#160; You can read the announcement on the SDS blog &lt;a href="http://blogs.msdn.com/ssds/archive/2009/03/10/9469228.aspx" target="_blank"&gt;HERE&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;I am VERY excited at this announcement and I think this opens up SQL Data Services to being utilized for a whole host of applications without changing your applications.&amp;#160; That being said there is going to be a limited set of functionality that you will be able to do in the cloud, but your core SQL Server functionality is going to be there.&amp;#160; It will be very interesting to see how this evolves as more information comes out at MIX.&lt;/p&gt;  &lt;p&gt;Enjoy!&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=62152" width="1" height="1"&gt;</description></item><item><title>Roundup (2/15) – Things you might find interesting…</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/02/15/roundup-2-15-things-you-might-find-interesting.aspx</link><pubDate>Sun, 15 Feb 2009 20:17:49 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:55912</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=55912</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/02/15/roundup-2-15-things-you-might-find-interesting.aspx#comments</comments><description>&lt;p&gt;So I see all these great posts during the week and I think, “I wonder if everyone else is seeing this post, this is good stuff”.&amp;#160; Usually, I read it, file it away and think, “Yeah, I blog about it tomorrow”.&amp;#160; So here are some posts from the last week or so that I thought were really good that I think you, my readers wherever you are, might find interesting.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.sqlskills.com/BLOGS/PAUL/post/Public-speaking-about-SQL-Server-A-Primer.aspx" target="_blank"&gt;Public Speaking – A Primer by Paul Randall&lt;/a&gt;    &lt;br /&gt;I have heard so many great things about Paul’s talks.&amp;#160; Unfortunately,I could not get into any of sessions at last year’s PASS as evidently you have to camp out in the session before to get a seat.&amp;#160; This is a great post about public speaking with a lot of good tips in there.&amp;#160; One of the best is on eliminating the use of the word “um”.&amp;#160; I spent a whole semester in college trying to eliminate that.&amp;#160; One item not in the post that I would suggest is to enlist the services of a friend and have them videotape one of your sessions.&amp;#160; This can be a somewhat brutal experience sometimes, but trust me it works.&amp;#160; My first speech in college, I would have swore I only said “um” a couple times, but the video doesn’t lie.&amp;#160; It was something like 40,50 times in a five minute speech or something like that.&amp;#160; But, I would have never been able to fix that without seeing it for myself.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/socaldevgal/archive/2009/02/13/how-do-i-bi-screencasts-available.aspx" target="_blank"&gt;&amp;#39;How Do I...BI?&amp;#39; Screencasts by Lynn Langit&lt;/a&gt;    &lt;br /&gt;Lynn is a great resource when it comes to BI.&amp;#160; Her book is really good and she is great and being able to explain things in a way that people can understand.&amp;#160; Which is really hard when it comes to things like MDX and Data Mining Algorithms.&amp;#160; So go out and buy her &lt;a href="http://www.amazon.com/Business-Intelligence-Solutions-Microsoft%C2%AE-PRO-Developer/dp/0735625808/ref=pd_bbs_sr_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1234727532&amp;amp;sr=8-1" target="_blank"&gt;book&lt;/a&gt; and watch her Screencasts.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;SQLCAT Team Whitepapers&lt;/u&gt;&lt;/strong&gt;    &lt;br /&gt;The SQLCAT (Customer Advisory Team) team at Microsoft is a great resource for all things SQL Server.&amp;#160; They were doing a number of sessions at the SQL PASS Summit last year and these were by far some of my favorite sessions.&amp;#160; I learned so much about how SQL Server works and tips and tricks for getting excellent performance out of SQL Server.&amp;#160; Well, they must have been cleaning the vault, because they release a trio of excellent resources recently.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://sqlcat.com/whitepapers/archive/2009/02/15/the-analysis-services-2008-performance-guide.aspx" target="_blank"&gt;Analysis Services 2008 Performance Guide&lt;/a&gt; - This white paper describes how application developers can apply query and processing performance-tuning techniques to their SQL Server 2008 Analysis Services OLAP solutions&lt;/li&gt;    &lt;li&gt;&lt;a href="http://sqlcat.com/toolbox/archive/2009/02/05/a-solution-for-collecting-analysis-services-performance-data-from-many-sources-for-performance-analysis.aspx" target="_blank"&gt;A Solution for Collecting Analysis Services Performance Data for Performance Analysis&lt;/a&gt; - This codeplex solution automates the collection of SQL Server 2008 performance data from any or all of the following data sources and stores the collected data into a single SQL Server 2008 relational database (SQL Server Profiler Analysis Services trace data, Performance Monitor counters, Analysis Services Dynamic Memory Views (DMVs))&lt;/li&gt;    &lt;li&gt;&lt;a href="http://sqlcat.com/whitepapers/archive/2009/02/15/the-data-loading-performance-guide-2008.aspx" target="_blank"&gt;The Data Loading Performance Guide 2008&lt;/a&gt; - This document described techniques for bulk loading large data sets into SQL Server. It covers both the available techniques as well as methodologies to performance tune and optimize the bulk loading process.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/slange/archive/2009/02/05/visual-studio-team-system-for-database-professionals-workshop.aspx" target="_blank"&gt;Visual Studio Team System for Database Professionals Workshop&lt;/a&gt; (Irvine 3/4 &amp;amp; San Diego 3/5) - Visual Studio Team System 2008 Database Edition provides advanced tools for database change management and testing and offers functionality to enable database developers and administrators to be more productive and increase application quality in the database tier. Visual Studio Team System 2008 Database Edition delivers a market shifting database development product that provides a foundation for managed database evolution through the use of an offline, Visual Studio project-centered source code control system together with a suite of tools designed to help understand the impact of proposed changes. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/haroldwong/archive/2009/02/09/ms-press-book-understanding-microsoft-virtualization-solutions-available-for-free-download.aspx" target="_blank"&gt;MS Press Book – Understanding Microsoft Virtualization Solutions for FREE!&lt;/a&gt; - This guide will teach you about the benefits of the latest virtualization technologies and how to plan, implement, and manage virtual infrastructure solutions. The technologies covered include: Windows Server 2008 Hyper-V, System Center Virtual Machine Manager 2009, Microsoft Application Virtualization 4.5, Microsoft Enterprise Desktop Virtualization, and Microsoft Virtual Desktop Infrastructure.&amp;#160; The book also provides insight into the Core Infrastructure Optimization model, and how implementing virtualization technologies can help move a company further along toward the goal of building an efficient, reliable Dynamic IT infrastructure.&amp;#160; Simply register at &lt;a href="http://csna01.libredigital.com/?urmvs17u33"&gt;&lt;b&gt;http://csna01.libredigital.com/?urmvs17u33&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;That’s it for this one.&amp;#160; Happy Reading and Enjoy!&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=55912" width="1" height="1"&gt;</description></item><item><title>Upcoming SoCal Tech Events</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/02/15/upcoming-socal-tech-events.aspx</link><pubDate>Sun, 15 Feb 2009 19:22:59 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:55897</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=55897</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/02/15/upcoming-socal-tech-events.aspx#comments</comments><description>&lt;p&gt;In a follow up to &lt;a href="http://blogs.msdn.com/socaldevgal/archive/2009/02/14/socaldevgal-hearts-developer-events-in-feb.aspx" target="_blank"&gt;Lynn Langit’s post here&lt;/a&gt;, I figured I would I add the details on the SQL Server Users Group and also add a few other events.&amp;#160; I was sad that the Vista for ITPros event was sold out, but I am looking forward to hitting up a couple of the events.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;SQL Server Users Group with Lynn Langit&lt;/u&gt;&lt;/strong&gt;    &lt;br /&gt;For those interested in the SQL Server Users Group you can check out our website here (&lt;a title="http://www.sdsqlug.org/home/index.cfm" href="http://www.sdsqlug.org/home/index.cfm"&gt;http://www.sdsqlug.org/home/index.cfm&lt;/a&gt;) and get the details of Lynn’s session &lt;a href="http://www.sdsqlug.org/home/index.cfm?fuseaction=home.meetingDetails&amp;amp;presentationID=85" target="_blank"&gt;here&lt;/a&gt;.&amp;#160; If you want to sign up for their mailing list it is via a Yahoo group &lt;a href="http://tech.groups.yahoo.com/group/sandiegosqlserverusersgroup/" target="_blank"&gt;here&lt;/a&gt;.&amp;#160; The group is really growing and is a great resource for all you Database people.&amp;#160; I hope to see some of you there.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;TechNet Events: Software-plus-Services, System Center Configuration Manager and Virtual Machine Manager       &lt;br /&gt;&lt;/u&gt;&lt;/strong&gt;&lt;a href="http://msevents.microsoft.com/cui/EventDetail.aspx?culture=en-US&amp;amp;EventID=1032402431" target="_blank"&gt;Thursday, February 26, 2009 8:00 AM - Thursday, February 26, 2009 12:00 PM – Anaheim&lt;/a&gt; (Click link to Register)    &lt;br /&gt;&lt;a href="http://msevents.microsoft.com/cui/EventDetail.aspx?culture=en-US&amp;amp;EventID=1032402429" target="_blank"&gt;Tuesday, February 24, 2009 8:00 AM - Tuesday, February 24, 2009 12:00 PM – San Diego&lt;/a&gt; (Click link to Register)    &lt;br /&gt;These are going to led by &lt;a href="http://blogs.technet.com/chrisavis/archive/2009/02/04/upcoming-technet-events-in-california.aspx" target="_blank"&gt;Chris Avis&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;MSDN Events: Azure, Debugging and Mobility&lt;/u&gt;&lt;/strong&gt;    &lt;br /&gt;&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?culture=en-US&amp;amp;EventID=1032402401" target="_blank"&gt;Thursday, February 26, 2009 1:00 PM - Thursday, February 26, 2009 5:00 PM – Anaheim&lt;/a&gt; (Click link to Register)&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Architect Council | The Importance of the Client       &lt;br /&gt;&lt;/u&gt;&lt;/strong&gt;Over the last couple of years, there has been a lot of innovation around of technologies that make it easier for the end user of an application to interact with systems.&amp;#160; This innovation has been a boon for the end user because it has provided them a more natural interface with systems that span the web, computer, and phone.&amp;#160; However, this has caused the complexity of systems architecture and development to increase.&amp;#160; The focus of this session will be on how to prepare and manage this complexity within your organization. &lt;/p&gt;  &lt;p&gt;Facilitated by Microsoft, the premise of this event is to provide an open forum where architects can meet to discuss technologies with their peers.&amp;#160; This forum will provide first-hand experience and best practices that will enable its members to learn from each other and transfer knowledge.&amp;#160; Please join us for this great opportunity to learn, share and network with your peers and other company leaders.&lt;/p&gt;  &lt;p&gt;Facilitated in SoCal by &lt;a href="http://blog.pewitt.org/" target="_blank"&gt;Woody Pewitt&lt;/a&gt; and &lt;a href="http://www.joeshirey.com/" target="_blank"&gt;Joe Shirey&lt;/a&gt;.&amp;#160; For more details and links to register see the posts by &lt;a href="http://www.joeshirey.com/2009/02/12/NextUpcomingSeriesOfArchitectCouncils.aspx" target="_blank"&gt;Joe Shirey&lt;/a&gt; and &lt;a href="http://blogs.msdn.com/dachou/default.aspx" target="_blank"&gt;David Chou&lt;/a&gt;.&amp;#160; I am looking forward to attending the San Diego version on 3/31.&lt;/p&gt;  &lt;p&gt;Look forward to seeing some of you at the events and enjoy!&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=55897" width="1" height="1"&gt;</description></item><item><title>Performance Point 2007 Roadmap Changes</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/01/23/performance-point-2007-roadmap-changes.aspx</link><pubDate>Sat, 24 Jan 2009 03:05:56 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:48181</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=48181</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/01/23/performance-point-2007-roadmap-changes.aspx#comments</comments><description>&lt;p&gt;If you have worked with Performance Point Server before &lt;a href="http://blogs.msdn.com/bi/archive/2009/01/23/microsoft-bi-strategy-update.aspx" target="_blank"&gt;this change in strategy&lt;/a&gt; is not all that surprising.&amp;nbsp; The product is ( at least the Monitoring and Analytics) is very focused on delivering items via SharePoint.&amp;nbsp; In moving Performance Point Monitoring and Analytics into the SharePoint stack, this functionality is now available to all SharePoint Enterprise customers.&amp;nbsp; And for free assuming you are licensed for SharePoint Enterprise.&amp;nbsp; &lt;/p&gt; &lt;p&gt;Going forward the functionality will be further integrated into the Office stack increasing the inroads of these BI technologies into a large number of users within the enterprise.&amp;nbsp; Here is another post from &lt;a href="http://performancepointblog.com/2009/01/my-thoughts-on-performancepoint-planning%E2%80%99s-sunset/" target="_blank"&gt;Russell Christopher&lt;/a&gt; on some of the benefits of this announcement.&lt;/p&gt; &lt;p&gt;In my opinion this is a great strategic move by Microsoft to promote these BI technologies in the Enterprise.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=48181" width="1" height="1"&gt;</description><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Microsoft+SQL+Server/default.aspx">Microsoft SQL Server</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Office+Development/default.aspx">Office Development</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category></item><item><title>Microsoft All-Up BI VPC is available</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/01/14/microsoft-all-up-bi-vpc-is-available.aspx</link><pubDate>Thu, 15 Jan 2009 06:47:44 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:45907</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=45907</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/01/14/microsoft-all-up-bi-vpc-is-available.aspx#comments</comments><description>&lt;p&gt;Have you ever thought, &amp;quot;Gee, I would really like to play with some of the cool BI technologies, but I really would rather not go out and install everything&amp;quot;.&amp;nbsp; &amp;quot;Plus, I would really not have to try and come up with a bunch of sample data so that I can play with some of the new functionality?&amp;quot;&lt;/p&gt; &lt;p&gt;If you have ever found yourself saying those things then the Microsoft All-Up BI VPC is what you are looking for.&amp;nbsp; You can access the links to download all the parts of the VPC here: (&lt;a title="http://performancepointblog.com/2008/12/all-up-bi-vpc-71-available-for-public-download/" href="http://performancepointblog.com/2008/12/all-up-bi-vpc-71-available-for-public-download/"&gt;http://performancepointblog.com/2008/12/all-up-bi-vpc-71-available-for-public-download/&lt;/a&gt;),&amp;nbsp; I have setup up the VPC and played around a little bit and things seem to be working really well.&amp;nbsp; I will definitely be looking at potentially using this for demos and presentations.&lt;/p&gt; &lt;p&gt;Enjoy!&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=45907" width="1" height="1"&gt;</description><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Microsoft+SQL+Server/default.aspx">Microsoft SQL Server</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Office+Development/default.aspx">Office Development</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Business+Intelligence/default.aspx">Business Intelligence</category></item><item><title>SoCal Rock 'n' Roll Code Camp is next weekend!</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/01/14/socal-rock-n-roll-code-camp-is-next-weekend.aspx</link><pubDate>Thu, 15 Jan 2009 06:34:54 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:45906</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=45906</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2009/01/14/socal-rock-n-roll-code-camp-is-next-weekend.aspx#comments</comments><description>&lt;p&gt;Just a reminder to all my SoCal readers out there that the SoCal Code Camp (&lt;a href="http://www.socalcodecamp.com"&gt;http://www.socalcodecamp.com&lt;/a&gt;) is just around the corner.&amp;nbsp; Next weekend hundreds of your fellow geek enthusiasts will be joining you at one of the best Code Camps out there.&amp;nbsp; There are going to be over 90 sessions over two days to allow you to &amp;quot;geek out&amp;quot; until your heart is content. And not only that, we have an awesome Geek Dinner on Saturday night with live Music.&lt;/p&gt; &lt;p&gt;Remember, that this is all FREE, paid for by the generosity of our &lt;a href="http://www.socalcodecamp.com/sponsors.aspx" target="_blank"&gt;sponsors&lt;/a&gt;. Be sure to check them out and say thanks for being a supporter of the local Tech Community.&lt;/p&gt; &lt;p&gt;I look forward to seeing you all there.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=45906" width="1" height="1"&gt;</description><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/San+Diego+Community/default.aspx">San Diego Community</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Community+Events/default.aspx">Community Events</category></item><item><title>SoCal Rock 'n' Roll Code Camp - Call For Speakers</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/12/01/socal-rock-n-roll-code-camp-call-for-speakers.aspx</link><pubDate>Tue, 02 Dec 2008 05:00:48 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:29863</guid><dc:creator>akarcher</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=29863</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/12/01/socal-rock-n-roll-code-camp-call-for-speakers.aspx#comments</comments><description>&lt;p&gt;Have you attended one of the previous 9 Code Camps and said to yourself that you would like to try and give speaking a try?&amp;nbsp; Are you interested in giving back to the SoCal Technical Community?&amp;nbsp; Now is your prefect opportunity!&amp;nbsp; The Code Camp Website for the 4th Code Camp at Fullerton on January 24th &amp;amp; 25th is up and we are looking for speakers and that means you.&amp;nbsp; &lt;/p&gt; &lt;p&gt;Who is speaking at Code Camp? YOU are, YOUR PEERS are, and YOUR LOCAL EXPERTS are…all are welcome! This is a community event and one of the main purposes of the event is to have local community members step up and offer some cool presentations! Don’t worry if you have never given a presentation before, we’ll give you some tips if you need help, and this a great opportunity to spread your wings.&lt;/p&gt; &lt;p&gt;Anyone from an experienced speaker to first time speaker are welcome and encouraged to come out to speak.&amp;nbsp; Code Camps rely completely on YOU the community to come out and help support the Code Camp.&amp;nbsp; Go out to the Code Camp Website &lt;a href="http://www.socalcodecamp.com"&gt;http://www.socalcodecamp.com&lt;/a&gt; and submit your sessions.&amp;nbsp; &lt;/p&gt; &lt;p&gt;I am really looking forward to seeing everyone at the Code Camp and being a speaker alongside all of you.&amp;nbsp; Feel free to ping me via the contact form if you are interested in speaking and have any questions.&lt;/p&gt; &lt;p&gt;Cheers!&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=29863" width="1" height="1"&gt;</description></item><item><title>Free Windows FireStarter Event - Friday, Dec 12th!</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/11/30/free-windows-firestarter-event-friday-dec-12th.aspx</link><pubDate>Mon, 01 Dec 2008 06:37:31 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:29553</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=29553</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/11/30/free-windows-firestarter-event-friday-dec-12th.aspx#comments</comments><description>&lt;p&gt;Are you curious about all the latest and greatest information about developing on Windows?&amp;nbsp; If so, &lt;a href="http://blogs.msdn.com/mithund/" target="_blank"&gt;Mithun Dhar&lt;/a&gt; is hosting another FireStarter Event up in Redmond on Friday, December 12th.&amp;nbsp; And the best part about this event is that everything is going to be streamed for FREE through Live Meeting.&amp;nbsp; So you do not have to leave the 75 degree weather (at least for me in San Diego) to head up to Redmond for the event.&amp;nbsp; &lt;/p&gt; &lt;p&gt;He has lined up a great speaker list along with some great sessions.&amp;nbsp; Even a little Windows 7/ Server 2008 R2 teaser session.&amp;nbsp; For all the details check out Mithun&amp;#39;s post:&lt;/p&gt; &lt;p&gt;&lt;a title="http://blogs.msdn.com/mithund/archive/2008/11/18/windows-firestarter-dec-12th-friday.aspx" href="http://blogs.msdn.com/mithund/archive/2008/11/18/windows-firestarter-dec-12th-friday.aspx"&gt;http://blogs.msdn.com/mithund/archive/2008/11/18/windows-firestarter-dec-12th-friday.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Hope to see you there, virtually anyway.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=29553" width="1" height="1"&gt;</description></item><item><title>Free SQL Server 2008 E-Book</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/09/17/free-sql-server-2008-e-book.aspx</link><pubDate>Wed, 17 Sep 2008 15:46:44 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:14691</guid><dc:creator>akarcher</dc:creator><slash:comments>7</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=14691</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/09/17/free-sql-server-2008-e-book.aspx#comments</comments><description>&lt;p&gt;SQL Server gurus &lt;a href="http://sqlblog.com/blogs/peter_debetta/archive/2008/09/16/introducing-sql-server-2008-the-book.aspx" target="_blank"&gt;Peter DeBetta&lt;/a&gt;, &lt;a href="http://sqlblog.com/blogs/greg_low/archive/2008/09/17/sql-server-2008-ebook-from-mspress-and-free.aspx" target="_blank"&gt;Greg Low&lt;/a&gt; and Mark Whitehorn just released a new E-Book on SQL Server 2008 through MSPress and it is now available online.&amp;nbsp; And the best part about it is that it is FREE.&amp;nbsp; You can download the E-Book by going here: &lt;a href="http://csna01.libredigital.com/?urss1q2we6"&gt;http://csna01.libredigital.com/?urss1q2we6&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=14691" width="1" height="1"&gt;</description></item><item><title>Fall Tech Day by the San Diego .Net User Group</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/09/14/fall-tech-day-by-the-san-diego-net-user-group.aspx</link><pubDate>Sun, 14 Sep 2008 22:57:55 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:14477</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=14477</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/09/14/fall-tech-day-by-the-san-diego-net-user-group.aspx#comments</comments><description>&lt;p&gt;Are you a developer in the SoCal region that is interested in learning about some of the new technologies, the San Diego .Net User Group is hosting a Fall Tech Day featuring &lt;a href="http://jeffreypalermo.com/" target="_blank"&gt;Jeffrey Palermo&lt;/a&gt; and &lt;a href="http://www.dotnetdoc.com/" target="_blank"&gt;Daniel Egan&lt;/a&gt;.&amp;nbsp; Jeffrey Palermo will giving a 1/2 day session on the ASP.Net MVC Framework to start the day. Jeffrey is a Microsoft MVP, INETA speaker and certified Agile Development expert.&amp;nbsp; He is also the author of the upcoming ASP.Net MVC in Action book.&lt;/p&gt; &lt;p&gt;In the afternoon, Daniel Egan, . INETA speaker, MVP and Microsoft Regional Director, will be giving everyone an overview of LINQ.&amp;nbsp; This is one technology that as a developer you will need to be up to speed on as all future data access technologies are integrating LINQ. The second speaker in the afternoon will be myself giving an overview of the new developer features in SQL Server 2008.&lt;/p&gt; &lt;p&gt;This is going to be an content filled day for any developer.&amp;nbsp; If you are interested in attending you can access the registration site here: &lt;a href="https://www.123signup.com/event?id=tryjn" target="_blank"&gt;https://www.123signup.com/event?id=tryjn&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Look forward to seeing some of you there.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=14477" width="1" height="1"&gt;</description><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/San+Diego+Community/default.aspx">San Diego Community</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Community+Events/default.aspx">Community Events</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category></item><item><title>Setting up Reporting Services on Windows Vista</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/09/14/setting-up-reporting-services-on-windows-vista.aspx</link><pubDate>Sun, 14 Sep 2008 22:17:57 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:14472</guid><dc:creator>akarcher</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=14472</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/09/14/setting-up-reporting-services-on-windows-vista.aspx#comments</comments><description>&lt;p&gt;In the past I have tried setting up Reporting Services on Windows Vista with no success and always reverted to Windows XP.&amp;nbsp; Well I finally had to get this working and, of course, found some help on the web.&amp;nbsp; So I had to install both 2005 and 2008 so I got to have fun with both.&lt;/p&gt; &lt;p&gt;After installing SQL 2005, everything seemed to be fine.&amp;nbsp; However, opening up Report Manager left me with a page with only the Header and no ability to add folders or manage anything.&amp;nbsp; Luckily I found this article on TechNet that helps you get around this very problem.&amp;nbsp; &lt;a title="http://technet.microsoft.com/en-us/library/ms159704.aspx#VistaAdmin" href="http://technet.microsoft.com/en-us/library/ms159704.aspx#VistaAdmin"&gt;http://technet.microsoft.com/en-us/library/ms159704.aspx#VistaAdmin&lt;/a&gt;.&amp;nbsp; Once I got that setup Reporting Services 2005 is all happy and I can open IE without having to Run As Administrator&lt;/p&gt; &lt;p&gt;So on to SQL 2008.&amp;nbsp; Since I was running side-by-side, I setup SQL 2008 to run as Named Instance &amp;quot;SQL2008&amp;quot;.&amp;nbsp; So I install with the default configuration and after the install I fire up the Reporting Services Configuration Manager.&amp;nbsp; And I get this very helpful error &amp;quot;No Report Server Found - Invalid Namespace&amp;quot;.&amp;nbsp; Hmm. Well let&amp;#39;s see what we can find about this one.&amp;nbsp; Luckily I found this &lt;a href="http://www.kingjustin.com/post/2008/08/Reporting-Services-2008-Invalid-Namespace.aspx" target="_blank"&gt;blog entry&lt;/a&gt; by Justin King.&amp;nbsp; Once I went through all the steps the Configuration Manager correctly saw my Report Server so I was pass that roadblock.&amp;nbsp;&amp;nbsp; The last step was to apply the &lt;a href="http://technet.microsoft.com/en-us/library/ms159704.aspx#VistaAdmin" target="_blank"&gt;TechNet&lt;/a&gt; instructions above as well for SQL 2008&lt;/p&gt; &lt;p&gt;So I am now the proud new owner of Reporting Services Instances on Vista for SQL 2005 and SQL 2008.&amp;nbsp; Hope this helps someone else struggling through the same problem.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=14472" width="1" height="1"&gt;</description><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Microsoft+SQL+Server/default.aspx">Microsoft SQL Server</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category></item><item><title>New SQL Server User Group in Orange County - First Meeting on 8/14/2008</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/08/12/new-sql-server-user-group-in-orange-county-first-meeting-on-6-14-2008.aspx</link><pubDate>Wed, 13 Aug 2008 06:08:48 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:10199</guid><dc:creator>akarcher</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=10199</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/08/12/new-sql-server-user-group-in-orange-county-first-meeting-on-6-14-2008.aspx#comments</comments><description>&lt;p&gt;&lt;/p&gt; &lt;p&gt;For all my Orange County readers you might be excited to know that you now have another great option for getting your SQL content.&amp;nbsp; Reza Madani is starting a new Orange County SQL Server Users Group and their first meeting is this Thursday, August 14th.&amp;nbsp; Plus, they are bringing in a heavy hitter for their first meeting in the form of &lt;a href="http://blogs.msdn.com/socaldevgal/"&gt;Lynn Langit&lt;/a&gt; giving a presentation on Business Intelligence in SQL Server 2008.&amp;nbsp; Here are all the details for the meeting:&lt;/p&gt; &lt;p&gt;&lt;strong&gt;SQL Server User Group SIG:&lt;/strong&gt; &lt;p&gt;Date/Time:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;p&gt;August 14th, 6:00PM &lt;p&gt;Presenter: &lt;p&gt;&lt;strong&gt;Lynn Langit&lt;/strong&gt;, Author, Business Intelligence Expert, Microsoft Certified and Evangelist &lt;p&gt;Topic: &lt;p&gt;&lt;strong&gt;Business Intelligence&lt;/strong&gt; with SQL Server 2008 &lt;p&gt;Location: &lt;p&gt;Microsoft Offices, 3 Irvine Plz, Irvine, CA 92614 &lt;p&gt;&lt;strong&gt;Meeting Agenda:&lt;/strong&gt; &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * 6:00p Mixer/Networking/Pizza&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * 6:30p Presentation Starts&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * 7:15p Break&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * 7:30p Presentation Resumes&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * 8:45p Raffle  &lt;p&gt;&lt;strong&gt;Session Abstract:&lt;/strong&gt;&lt;br /&gt;In this demo-filled session, Lynn will explain architectural considerations around implementation of OLAP cubes and Data Mining models using the SQL Server 2008 product stack. Here she will demonstrate SSAS, SSIS and SSRS. Her talk will include research for her new book, along with lessons learned from the real world (from her previous practice as BI architect). &lt;p&gt;&lt;strong&gt;Presenter Bio:&lt;/strong&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;Lynn Langit is a developer evangelist for Microsoft. In addition to presenting information about new .NET developer technologies, such as WCF, LINQ and Silverlight, Lynn speaks about SQL Server Data Warehousing and Data Mining. She also speaks about SharePoint. She has been a Microsoft Certified Trainer for 9 years and holds these certifications: MCP, MCT, MCSD, MCSE, MCDBA, MCITP (SQL Admin/Dev/BI) and MSF. In April 2007 Lynn published “Foundations of SQL Server 2005 Business Intelligence (APress)” and plans to publish “Smart Business Intelligence Solutions with SQL Server 2008” in November 2008. &lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=10199" width="1" height="1"&gt;</description><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/San+Diego+Community/default.aspx">San Diego Community</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Microsoft+SQL+Server/default.aspx">Microsoft SQL Server</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/Community+Events/default.aspx">Community Events</category><category domain="http://blogs.claritycon.com/blogs/andrew_karcher/archive/tags/SQL+Server+2008/default.aspx">SQL Server 2008</category></item><item><title>San Diego Code Camp Resources</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/06/30/san-diego-code-camp-resources.aspx</link><pubDate>Tue, 01 Jul 2008 03:58:12 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:6333</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=6333</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/06/30/san-diego-code-camp-resources.aspx#comments</comments><description>&lt;p&gt;Wow!&amp;nbsp; San Diego Code Camp was awesome!&amp;nbsp; Over 300 people over two days, 90 Sessions, Free Geek Dinner, Awesome Music, what a weekend.&amp;nbsp; Big plug to my co-organizers &lt;a href="http://blog.pewitt.org/"&gt;Woody Pewitt&lt;/a&gt;, &lt;a href="http://www.dotnetdoc.com/"&gt;Daniel Egan&lt;/a&gt; and Mark Rosenberg.&lt;/p&gt; &lt;p&gt;I wanted to get my slides and sample code for all my talks.&amp;nbsp; Luckily, my voice lasted through all three sessions.&amp;nbsp; It died shortly there after and was pretty rough all weekend.&lt;/p&gt; &lt;p&gt;You can find all my sample code and slides below.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;u&gt;Into to the ADO.Net Entity Framework&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;We had a good crowd for this one.&amp;nbsp; People were dragging in chairs from other rooms to make up for the lack of seats.&amp;nbsp; It is obvious that everyone is interested about the topic and we had a lot of good discussion.&amp;nbsp; I hope everyone came out of the session with a beginning understanding of the Entity Framework and encouraged to learn more.&lt;/p&gt; &lt;p&gt;Slides: &lt;a title="http://shrinkster.com/zz0" href="http://shrinkster.com/zz0"&gt;http://shrinkster.com/zz0&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;u&gt;SQL 2008 New Data Types&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Another capacity crowd.&lt;/p&gt; &lt;p&gt;Slides and Sample Code: &lt;a href="http://shrinkster.com/zyz"&gt;http://shrinkster.com/zyz&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;u&gt;SQL 2008 Policy Based Management&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;A little bit smaller crowd, but was definitely the most interactive session of the day.&amp;nbsp; Lots of good discussion about implementing PBM and lots of interest among the attendees.&amp;nbsp; It seems like a feature that has kind of flown underneath the radar, but I think will be really useful of SQL Server Environments.&lt;/p&gt; &lt;p&gt;Slides: &lt;a title="http://shrinkster.com/zyy" href="http://shrinkster.com/zyy"&gt;http://shrinkster.com/zyy&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;All in all, a great weekend and I am looking forward to up coming Code Camps in L.A. and San Luis Obispo.&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=6333" width="1" height="1"&gt;</description></item><item><title>SharePoint Developer Resources</title><link>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/06/08/sharepoint-developer-resources.aspx</link><pubDate>Mon, 09 Jun 2008 05:43:25 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:5938</guid><dc:creator>akarcher</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.claritycon.com/blogs/andrew_karcher/rsscomments.aspx?PostID=5938</wfw:commentRss><comments>http://blogs.claritycon.com/blogs/andrew_karcher/archive/2008/06/08/sharepoint-developer-resources.aspx#comments</comments><description>&lt;p&gt;If you are interested in SharePoint Development there are a couple interesting items care of Lynn Langit&amp;#39;s &lt;a href="http://blogs.msdn.com/socaldevgal/default.aspx"&gt;blog&lt;/a&gt;.&amp;nbsp; We recently had a SQL Server &lt;a href="http://www.firestarterevents.com/"&gt;FireStarter event&lt;/a&gt; here in SoCal a few weeks ago.&amp;nbsp; Keeping the Fire going &lt;a href="http://blogs.msdn.com/mithund/"&gt;Mithun Dhar&lt;/a&gt; is hosting a SharePoint FireStarter event on Wednesday, June 11th up in Redmond.&amp;nbsp; Can&amp;#39;t attend the event in person?&amp;nbsp; You are in luck all the events will be broadcast via Live Meeting.&lt;/p&gt; &lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032379380&amp;amp;Culture=en-US"&gt;Register for the In Person Event&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032380419&amp;amp;EventCategory=2&amp;amp;culture=en-US&amp;amp;CountryCode=US"&gt;Register for the Live Meeting&lt;/a&gt;&lt;/p&gt; &lt;p&gt;In addition, there is a new &lt;a href="http://www.microsoft.com/click/SharePointDeveloper/"&gt;website&lt;/a&gt; dedicated to building applications on SharePoint.&lt;/p&gt; &lt;p&gt;Enjoy!&lt;/p&gt;&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=5938" width="1" height="1"&gt;</description></item></channel></rss>