Following is a list of Omaha local events in May and June for us .NET and SQL Server folks.
Here’s the list of national events that I will be speaking at or attending. Love to see you there!
|
Event
|
Date and Time |
What’s up? |
For More Information
|
|
SQL Server Magazine “Get ready for SQL Server 2005” Roadshow: Chicago
|
2005-05-12 07:30-0600 to 2005-05-12 18:00-0600
|
Come here me talk about SQLCLR, Service Broker and SQLXML, as well as other experts from Scalability Experts and Hitachi Consulting talking about SQL Server 2005 Administration and Business Intelligence solutions |
http://www.windowsitpro.com/roadshows/sqlserverusa/
|
|
SQL Server Magazine “Get ready for SQL Server 2005” Roadshow: Houston
|
2005-05-17 07:30-0600 to 2005-05-17 18:00-0600
|
Come here me talk about SQLCLR, Service Broker and SQLXML, as well as other experts from Scalability Experts and Hitachi Consulting talking about SQL Server 2005 Administration and Business Intelligence solutions |
http://www.windowsitpro.com/roadshows/sqlserverusa/
|
|
SQL Server Magazine “Get ready for SQL Server 2005” Roadshow: Dallas
|
2005-05-19 07:30-0600 to 2005-05-19 18:00-0600
|
Come here me talk about SQLCLR, Service Broker and SQLXML, as well as other experts from Scalability Experts and Hitachi Consulting talking about SQL Server 2005 Administration and Business Intelligence solutions |
http://www.windowsitpro.com/roadshows/sqlserverusa/
|
|
Microsoft Southern California Visual Studio 2005 & SQL Server 2005 Overview: Irvine
|
2005-05-24 and 2005-05-25 all day events
|
Microsoft Southern California Developer & Platform Evangelism team would like to invite you to a 2-day overview on Visual Studio 2005 and SQL Server 2005. This overview enables attendees to learn the new features in Visual Studio 2005, .NET framework 2.0 & SQL Server 2005. |
http://msevents.microsoft.com/cui/eventdetail.aspx?culture=en-US&eventid=1032272951&x=9&y=12
|
|
Microsoft Southern California Visual Studio 2005 & SQL Server 2005 Overview: San Diego
|
2005-05-26 and 2005-05-27 all day events
|
Microsoft Southern California Developer & Platform Evangelism team would like to invite you to a 2-day overview on Visual Studio 2005 and SQL Server 2005. This overview enables attendees to learn the new features in Visual Studio 2005, .NET framework 2.0 & SQL Server 2005. |
http://msevents.microsoft.com/cui/eventdetail.aspx?culture=en-US&eventid=1032272952
|
|
Microsoft TechEd: Orlando |
2005-06-05 to 2005-06-10 |
That, and there's always plenty of technical sessions and cabanas to go to. I'll be spending my time in the Database Developer and Administration sessions, going to Birds of a Feather Sessions and working in those Cabanas. If you're going to be a TechEd and would like to meet, just drop me a note at ktegels@develop.com.
And yes, I'm going to try to live blog as much of it as I can again this year. :) |
http://www.microsoft.com/events/teched2005/default.mspx |
|
DevelopMentor – Torrance: Developing SQL Server Applications
|
2005-06-13 all to 2005-06-17 all day
|
Cool, I’m back in the class room teaching again. This time, the materials cover application development using Microsoft data access methods and SQL Server 2000. Transact SQL is covered, as well as transactional object-based development. |
http://www.develop.com/training/course.aspx?id=93
|
It looks like I’ll be in Redmond the week of June 26th to teach a private class, but if you’re in the area, I should have some free to time visit the Tap Room in Bellevue.
Also note that on June 2, I’ll be doing a webcast for the SQL Server Worldwide Users’ Group on the XML features of SQL Server 2005. Details soon.
The latest installment of “Alter View, Create Function” is up for reading enjoyment at:
http://www.sswug.org/see/23158
This is a longer article talking about how to use the new FOR XML PATH option in SQL Server 2005.
Wow, has it really been that long since I last blogged? I guess I’ve been busier than I thought. Week before last, I was on the road doing the SQL Server Magazine Get Ready for SQL Server 2005 roadshow events in Anaheim and San Francisco. It has been nice to be home this last week, but more on that later.
The group in Anaheim was great fun and really got me charged up about the talk. There must be something about being that close to Disney land, I guess. Got to chat with Tom Rizzo for a while about “the good old days” of ActiveMessaging – after all, who could forget Tom’s book on Exchange and Outlook? (http://www.bookpool.com/ss?qs=0735614644.)
One of the questions I got asked after the XML talk in Anahiem particularly stands out: how you write a FOR XML query that emits a default namespace for instance? Turns out that in SQL Server 2000, there isn’t functionality to do that, but in SQL Server 2005 – starting with the April 2005 CTP – Microsoft has added a new way to do that. Here’s a little example:
use adventureworks
go
declare @x xml;
with xmlnamespaces (default 'http://staff.develop.com/ktegels/examples/stores')
select @x = (select s.CustomerID as '@customerID'
, s.name as 'name'
from sales.store s
order by s.name
for xml path('store'),root('stores'))
select @x.value(
'declare default element namespace "http://staff.develop.com/ktegels/examples/stores";
count(/stores/store)','int')
Okay, so, yes, that just a fancy way of doing:
select count(*) from sales.stores
But I think you get the idea. Thanks to Michael Rys (http://sqljunkies.com/WebLog/mrys/archive/2005/04/18/12108.aspx) for pointing this out.
San Francisco was also fun because we had lively group that wasn’t afraid to ask questions. It was great to share the stage with Euan Garden too. The night before the event, Dave DuVarney from Hitachi Consulting, Wes Brown from Imceda and I hopped on the cable car for a trip down to the Warf. We had dinner the Franciscan which has a better view than food IMHO. I also got to chat with Partner Account Manager from Cizer about their Report Services toolkit (http://www.cizer.com/PortalCSVS/DesktopDefault.aspx?tabindex=1&tabid=11). Folks – seriously – if you’ve not seen this yet and do a lot of reporting work, I think you are missing out. It is a bit like Report Builder that we see with SQL Server 2005 Reporting Services, but done today and it works with the standard SKU of SQL Server.
Last week I got back to Omaha and got to visit a client building a pretty good scale website. They decided to use SQL Server 2000 as the state store. Normally, this makes a lot of sense when need to have highly durable session states. However, there are a couple of KB articles I’d point you if you looking at doing millions of hits per day with such a configuration:
Last Wednesday was really the best working day of the week as I made a road trip over to give a talk about SQL Server 2005’s new CLR integration features to the Iowa.NET (http://www.iowadnug.org/DesktopDefault.aspx) folks. The session was good with many questions and I was happy to see that folks were already aware of these features. After the meeting, some of us went to the Hessen Haus (http://www.pubcrawler.com/Template/ReviewWC.cfm/flat/BrewerID=104376). It’s the first time I’ve seen two brands of Altbier on tap! Too bad Jeff Brand got lost, but I can certainly understand why Mike Benkovich enjoys presenting there so much. I’m very much looking forward to getting to hang with Robert Boedigheimer, Javier Lozano, Rocky Lhotka, Tim Gifford, Nick Parker, Scott Colestock and Mike when the com to Omaha for DevDays (http://www.chrysalisevents.com/vs2005devcon/select_track.asp?e=165)