<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Allen Kinsel - SQL DBA</title>
	
	<link>http://www.allenkinsel.com</link>
	<description>SQL Server, PASS, and other data mishaps</description>
	<lastBuildDate>Mon, 07 Jan 2013 15:27:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<image>
  <link>http://www.allenkinsel.com</link>
  <url>http://www.allenkinsel.com/favicon.ico</url>
  <title>Allen Kinsel - SQL DBA</title>
</image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AllenKinsel-SqlDba" /><feedburner:info uri="allenkinsel-sqldba" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Adventures in SSRS</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/vDeNC6LcB_A/</link>
		<comments>http://www.allenkinsel.com/archive/2013/01/adventures-in-ssrs/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 15:27:00 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1217</guid>
		<description><![CDATA[Came across a strange permission issue today that I thought I&#8217;d blog about since it is apparently somewhat common judging by the number of unanswered forum posts about it.
Adding/editing or Testing SSRS Datasources in Report Manager generates a permission error
A developer was trying to add a datasource and use &#8220;test connection&#8221; in the report manager web interface instead of BIDS which, incidentally]]></description>
			<content:encoded><![CDATA[<p>Came across a strange permission issue today that I thought I&#8217;d blog about since it is apparently somewhat common judging by the number of unanswered forum posts about it.</p>
<h3>Adding/editing or Testing SSRS Datasources in Report Manager generates a permission error</h3>
<p>A developer was trying to add a datasource and use &#8220;test connection&#8221; in the report manager web interface instead of BIDS which, incidentally worked.  When they tried to save or test the data source, an error occurred <span class="error">&#8220;The permissions granted to user &#8220;Domain\User&#8221; are insufficient for performing this operation. (rsAccessDenied)&#8221;  </span>After much websearching and digging through verbose SSRS logs, SQL Traces, Windows Event logs, Process Monitor traces, etc.  I had just about given up hope and turned to twitter to vent about the error.  Luckily, <a href="http://www.twitter.com/ctesta_oneill" target="_blank">Chris Testa-O&#8217;Neill </a>, <a href="http://www.twitter.com/thedouglane" target="_blank">Doug Lane</a>, and <a href="http://www.twitter.com/tameraclark" target="_blank">Tamera Clark</a> came to my rescue and headed me down the right path of this being an SSRS catalog permission issue (Thanks again!)</p>
<h4>Environment Details</h4>
<p>SSRS 2008r2</p>
<p>Folder inheritance is broken and the developer account has Browser permissions on the root folder as well as Browser, Publisher and Report Builder permissions on the sub-folder.  There are no system level permissions for the account.</p>
<h4><a href="http://www.allenkinsel.com/wp-content/uploads/2013/01/Access-denied.jpg"><img class="aligncenter size-full wp-image-1218" title="Access denied" src="http://www.allenkinsel.com/wp-content/uploads/2013/01/Access-denied.jpg" alt="" width="669" height="139" /></a></h4>
<h4>The Problem</h4>
<p>In the SSRS error log I found the following messages which are only slightly more helpful (Highlighted for influence)</p>
<p style="text-align: left; padding-left: 30px;">System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: The permissions granted to user &#8216;Domain\User&#8217; are insufficient for performing this operation. &#8212;&gt; Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user &#8217;Domain\User&#8217; are insufficient for performing this operation.<br />
at Microsoft.ReportingServices.WebServer.ReportingService2010Impl.<span style="color: #ff0000;">TestConnectForDataSourceDefinition</span>(DataSourceDefinition DataSourceDefinition, String UserName, String Password, String&amp; ConnectError)&#8230;</p>
<p style="text-align: left;">The command is failing on the &#8220;TestConnectForDataSourceDefinition&#8221; method.  The permissions needed are those required by this method.</p>
<h4 style="text-align: left;">The Fix</h4>
<p style="text-align: left;">Near the bottom of the documentation for the <a href="http://technet.microsoft.com/en-us/library/reportservice2010.reportingservice2010.testconnectfordatasourcedefinition.aspx" target="_blank">TestConnectForDataSourceDefinition </a>the permissions required are listed as &#8220;Execute report definition&#8221;</p>
<p style="text-align: left;">Granting this permission is accomplished by connecting to the SSRS server with SSMS and creating a new system role with just this permission</p>
<p style="text-align: left;"><a href="http://www.allenkinsel.com/wp-content/uploads/2013/01/new-role.jpg"><img class="size-full wp-image-1223 alignnone" title="new role" src="http://www.allenkinsel.com/wp-content/uploads/2013/01/new-role.jpg" alt="" width="270" height="273" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Then grant the new role &#8220;Execute Report Definitions&#8221; permission</p>
<p style="text-align: left;">
<p style="text-align: left;"><a href="http://www.allenkinsel.com/wp-content/uploads/2013/01/role-creation.jpg"><img class="size-full wp-image-1224 alignnone" title="role creation" src="http://www.allenkinsel.com/wp-content/uploads/2013/01/role-creation.jpg" alt="" width="475" height="511" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Finally add the user account to the new system role, this is done in report manager under Site Settings -&gt;Security -&gt; New Role Assignment</p>
<p style="text-align: left;">
<p style="text-align: left;"><a href="http://www.allenkinsel.com/wp-content/uploads/2013/01/add-role.jpg"><img class="alignleft size-full wp-image-1225" title="add role" src="http://www.allenkinsel.com/wp-content/uploads/2013/01/add-role.jpg" alt="" width="590" height="319" /></a></p>
<p style="text-align: left;">
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/vDeNC6LcB_A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2013/01/adventures-in-ssrs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2013/01/adventures-in-ssrs/</feedburner:origLink></item>
		<item>
		<title>PASS Chapters Update Q4 2012</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/tBZN2bDy5f4/</link>
		<comments>http://www.allenkinsel.com/archive/2012/12/pass-chapters-update-q4-2012/#comments</comments>
		<pubDate>Thu, 20 Dec 2012 15:46:16 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Chapters]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Volunteer]]></category>
		<category><![CDATA[chapters]]></category>
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1202</guid>
		<description><![CDATA[Welcome New Chapters
This past quarter several new Chapters have joined the PASS community:
Astrakhan .NET &#38; SQL User Group, Russia, led by Yana Kuranova
SQL Professionals of Northwest Nevada, US, led by Christopher Sherrill
Taiwan SQL Server User Group, China, led by Byron Hu and Pohan Chen
Codificando .NET, Sao Paulo, Brazil, led by Erickson Ricci
PASS Beijing, China, led]]></description>
			<content:encoded><![CDATA[<h2><strong>Welcome New Chapters</strong></h2>
<p>This past quarter several new Chapters have joined the PASS community:</p>
<p><a href="http://astrakhan.sqlpass.org/" target="_blank">Astrakhan .NET &amp; SQL User Group</a>, Russia, led by Yana Kuranova</p>
<p><a href="http://sqlprosnv.sqlpass.org/" target="_blank">SQL Professionals of Northwest Nevada</a>, US, led by Christopher Sherrill</p>
<p><a href="http://taiwan.sqlpass.org/" target="_blank">Taiwan SQL Server User Group</a>, China, led by Byron Hu and Pohan Chen</p>
<p><a href="http://comunidade.codificando.net/" target="_blank">Codificando .NET</a>, Sao Paulo, Brazil, led by Erickson Ricci</p>
<p><a href="http://beijing.sqlpass.org/" target="_blank">PASS Beijing</a>, China, led by Quan Zhang</p>
<p><a href="http://bidnjhb.sqlpass.org/" target="_blank">BIDN</a><a href="http://bidnjhb.sqlpass.org/" target="_blank">, Johannesburg</a>, South Africa, led by Mark Stacey</p>
<p><a href="http://www.bituga.pt/" target="_blank">BITUGA</a>, Portugal led by Paulo Matos</p>
<p><a href="http://www.nz-bi.com/" target="_blank">New Zealand BI User Group</a>, led by Reza Rad</p>
<p>We also have had a lot of new Chapter Leaders join us in existing Chapters as well as rebooting some inactive Chapters and we look forward to helping them keep their Chapters thriving.  Be sure to reach out to your Regional Mentors and the PASS Community Evangelists for any questions you have, they are here to help you.</p>
<h2><strong>Regional Mentor Updates</strong></h2>
<p>It has been great to see more and more Chapter Leaders utilizing the great resources we have in Regional Mentors. We have some Regional Mentor changes to announce for January 2013.</p>
<p>Leaving the role of RM for the UK is<a href="https://twitter.com/ctesta_oneill" target="_blank"> Chris Testa O’Neill</a>. Chris has done a tremendous job in helping with the awareness and growth of PASS in the UK the past couple of years and we are thankful for his efforts. Taking the reins in the UK and working along with <a href="https://twitter.com/fatherjack" target="_blank">Jonathan Allen </a>in 2013 will be <a href="https://twitter.com/retracement" target="_blank">Mark Broadbent</a>. Mark has been a great supporter of PASS as well as a strong Chapter leader and presenter, and most recently hosted his first SQLSaturday in Cambridge. His experiences in these areas will be a great benefit to helping others in his region.</p>
<p><a href="https://twitter.com/alexandroprado" target="_blank">Alexandro Prado</a> is leaving his role as RM for Brazil after much success in spreading PASS communities in that region.  Due to the tremendous size and growth potential Brazil, we decided to appoint two RMs to cover that region.<a href="https://twitter.com/luticm" target="_blank"> Luciano Moreira</a>, of the Chapter in Brasilia, will work along-side with <a href="https://twitter.com/LaerteSQLDBA" target="_blank">Laerte Junior</a> out of Sao Paulo. Laerte was co-leader of SQLSaturday #100, the first PASS SQL Saturday event in Brazil. We are confident that Luciano and Laerte will make a dynamo team for that country, and we look forward to seeing what will come in 2013.</p>
<p>I’d like to once again thank Alexandro and Chris for their volunteer time commitment as well as their service to PASS in this key role for Chapters. Their efforts in their local regions will be recognized as the foundation that we will build on for years to come.</p>
<h2><strong>Updated Chapters Toolset</strong></h2>
<p>Chapter leaders have hopefully already heard about improvements we are making in the tools PASS has for Chapters.  We are continually rolling out new improvements so be sure to check in often for updates.  To see what we’ve been up to, if you are a PASS Chapter leader and have a PASS hosted DNN site, log into your admin page.  If you don’t have a PASS Hosted DNN site, head to the dashboard at <a href="http://www.sqlpass.org/PASSChapters/ChapterDashboard.aspx" target="_blank"><strong>http://www.sqlpass.org/PASSChapters/ChapterDashboard.aspx</strong></a><strong>. </strong>There you can see:</p>
<p>&nbsp;</p>
<h5 style="padding-left: 30px;"><strong>Profile/Addresses</strong></h5>
<p style="padding-left: 30px;">We are displaying most of the information we have about your chapter within the dashboard.  I would like to request that every chapter leader log in to the dashboard and make sure the information is up-to-date.  Some fields are intentionally not user updateable so if a field cannot be updated, and needs to be corrected please send an email to <a href="mailto:ce@sqlpass.org" target="_blank"><script type="text/javascript">var username = "ce"; var hostname = "sqlpass.org";document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + username + "@" + hostname + "<\/a>")</script></a> with the update you’d like to make.  Please pay particular attention to the “Chapter Leaders” tab when making sure the information is correct.  In the future we will be relying on this information being up-to-date when making key decisions about Chapters.</p>
<h5 style="padding-left: 30px;"><strong>Events/Meetings</strong></h5>
<p style="padding-left: 30px;">For Chapters using a PASS hosted website, you can now benefit from the Events module integration.  With this new tool you can enter your event/meeting details in one place and it will auto update those details to the <a href="http://www.sqlpass.org/events.aspx" target="_blank">Events page</a> of the SQLPASS website, as well as to your home page of your own Chapter website and your event will also show up on myPASS for members associated with your Chapter.  Other events module features include local timezone/ical support, prescheduling future meetings, uploading of meeting presentations/resources, auto archiving old events and more.  For instructions on how to setup &amp; publish an event, check out our handy guide listed on the <a href="http://www.sqlpass.org/PASSChapters/ChapterLeadersResources.aspx" target="_blank">Chapter Resources</a> page.  We will continue to update this module with more features in the coming months.  Future plans include linking to many other sites/marketing avenues as well as better support for RSVP’s and more.</p>
<h5 style="padding-left: 30px;"><strong>Chapter Emailer</strong></h5>
<p style="padding-left: 30px;">In addition to contacting those members who&#8217;ve registered with PASS and are associated with your Chapter, you can now upload your own mailing lists and email those specific lists about your Chapter.  Thank you for the great feedback about the Emailer during the Chapter Leader Meeting at Summit. We’re working to ensure many of your concerns will be addressed in future versions of the tool.  As myPASS use increases we are seeing more and more PASS members associate themselves with local Chapters so don’t miss out on this opportunity to reach a great pool of potential new members.</p>
<h5 style="padding-left: 30px;"><strong>myPASS</strong></h5>
<p style="padding-left: 30px;"><a href="http://www.sqlpass.org/MYPASS.aspx" target="_blank">MyPASS</a> is the new default homepage for all PASS members who are logged in to the main SQLPASS.org site.  We designed this page to bring all of the Chapter and Virtual Chapter meeting information into one easy to use interface for your members.  While looking at myPASS please check your profile and make sure it is up to date as well.  Early in the new year, the Chapter dashboard will be getting the myPASS look and feel. It will show up on the left side as a tab that is visible only to Chapter Leaders</p>
<h2><strong>Summit Downloads for Chapter Leaders</strong></h2>
<p>Finally some news I know Chapter leaders have been patiently waiting for!  Chapter Leaders should now have access to download the Summit 2012 sessions.  The following should enable you to begin downloading/streaming the sessions immediately:</p>
<ul>
<li>Go to the Summit 2012 Session listings (you will need to login, or be currently logged in with your PASS Chapter leader Account)</li>
</ul>
<p><strong><a href="http://www.sqlpass.org/summit/2012/Sessions/BuildSchedule.aspx" target="_blank">http://www.sqlpass.org/summit/2012/Sessions/BuildSchedule.aspx</a></strong></p>
<ul>
<li>Click on the “session recording” link next to the session name</li>
<li>From there you should see a DOWNLOAD button below the streaming player</li>
<li>Note that in order to play this file you may need to update codecs in your media player</li>
</ul>
<p>If you are unable to download the sessions, please contact the helpdesk <a href="mailto:helpdesk@sqlpass.org" target="_blank"><script type="text/javascript">var username = "helpdesk"; var hostname = "sqlpass.org";document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + username + "@" + hostname + "<\/a>")</script></a></p>
<h2><strong>Introducing Wendy Pastrick</strong></h2>
<p>As you may know by now, <a href="https://twitter.com/wendy_dance" target="_blank">Wendy Pastrick</a> was elected to the PASS Board of Directors during the last election, and will begin her term on the Board January 1, 2013 by leading the <a href="http://www.sqlpass.org/PASSChapters/LocalChapters.aspx" target="_blank">Global Chapters</a> portfolio. PASS’s support of local Chapters through Regional Mentors, Community Evangelists, tools, best practices, and more has grown tremendously over the last few years, but there’s still much to do. I hope you will all welcome Wendy and continue to provide her the same great feedback you always have with me.  Wendy can be reached on <a href="mailto:wendy.pastrick@sqlpass.org" target="_blank"><script type="text/javascript">var username = "wendy.pastrick"; var hostname = "sqlpass.org";document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + username + "@" + hostname + "<\/a>")</script></a>.</p>
<h2><strong>Goodbye for now or until we meet again</strong></h2>
<p>As my year as Director of Global Chapters is coming to a close, I wanted to take this opportunity thank each of you for helping Chapters as well as recognize the progress we made together this year in helping PASS communities grow stronger.  We were able to make some very visible progress during the last year to better support PASS Chapters and their members and with the team we have in place I expect we will maintain that momentum going forward.</p>
<p>I’ll be staying involved with the PASS Community going forward and for now I’ll be focusing on wrapping up some of the Chapter tools changes and working towards a successful handoff of that project.  It has been my privilege to work with y’all and I look forward to seeing each of you in the future.</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/tBZN2bDy5f4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/12/pass-chapters-update-q4-2012/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/12/pass-chapters-update-q4-2012/</feedburner:origLink></item>
		<item>
		<title>It was 2 good years</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/qNxmZdJTfOk/</link>
		<comments>http://www.allenkinsel.com/archive/2012/10/it-was-2-good-years/#comments</comments>
		<pubDate>Wed, 17 Oct 2012 14:40:10 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[election]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1185</guid>
		<description><![CDATA[The voters have spoken and I will not be returning to the PASS board as an elected director in 2013.  A week ago I wrote a post about campaigning being hard and in it I wrote something that I believe and keep coming back to.
I’ve spent many thousands of hours of my life serving the PASS organization and]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sqlpass.org/Elections.aspx" target="_blank">The voters have spoken</a> and I will not be returning to the <a href="http://www.sqlpass.org/AboutPASS/BoardofDirectors.aspx" target="_blank">PASS board </a>as an elected director in 2013.  A week ago I wrote a post about <a href="http://www.allenkinsel.com/archive/2012/10/pass-campaigning-is-tough/" target="_blank">campaigning being hard </a>and in it I wrote something that I believe and keep coming back to.</p>
<blockquote><p>I’ve spent many thousands of hours of my life serving the PASS organization and want the opportunity to spend a few hundred <del>thousand</del> more in the same role over the next two years.<strong> However, if by chance the community wants to see someone else in my seat on the board I can live with that, there aren’t any bad choices.</strong></p></blockquote>
<p>As much time and energy as I&#8217;ve put into PASS over the years this outcome stung a bit personally but I&#8217;ve come to accept the reality of it.  Thanks to everyone who supported me in this election cycle, I was truly humbled to receive your support.</p>
<p>Congrats to JRJ, Sri and Wendy.  I&#8217;m sure yall will do a great job keeping the organization moving forward on the right track.</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/qNxmZdJTfOk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/10/it-was-2-good-years/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/10/it-was-2-good-years/</feedburner:origLink></item>
		<item>
		<title>Have your voice heard</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/qvLiyWQwXB0/</link>
		<comments>http://www.allenkinsel.com/archive/2012/10/have-your-voice-heard/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 13:00:59 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Volunteer]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[election]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1176</guid>
		<description><![CDATA[Its nearing the end of the road for this years PASS elections cycle and according to the elections timeline, in just a few short hours this years election will be over.  Voting will officially end at 12PST tomorrow.  To help the inner procrastinator in all of us, heres a link that should tell you when the very last]]></description>
			<content:encoded><![CDATA[<p>Its nearing the end of the road for this years PASS elections cycle and according to the <a href="http://www.sqlpass.org/Elections/Timeline.aspx">elections timeline</a>, in just a few short hours this years election will be over.  Voting will officially end at 12PST tomorrow.  To help the inner procrastinator in all of us, heres a<a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=End+of+PASS+Board+voting&amp;iso=20121012T12&amp;p1=234" target="_blank"> link </a>that should tell you when the very last moment is for your vote to count!</p>
<p>Hopefully if you’re taking the time to read this blog you are in the final stages of deciding which of the 5 candidates for the PASS Board of Directors you’d like to vote for.  I want to thank you for being an educated PASS member and taking your valuable time to vet the candidates.  In order to help make that process a bit easier, following is an aggregate of all my pass views about the election.</p>
<p><strong>Detailed info about my candidacy</strong></p>
<ul>
<li><a href="http://www.allenkinsel.com/archive/2012/09/im-running-for-the-pass-board-of-directors-again/" target="_blank">Outlining my decision to run and a few important opportunities for change</a></li>
<li><a href="http://www.allenkinsel.com/archive/2012/10/evolving-pass/" target="_blank">A recap of some issues I plan on tackling </a></li>
<li><a href="http://www.allenkinsel.com/archive/2012/10/evolving-pass/" target="_blank">Why Campaigning amongst friends is tough </a></li>
<li><a href="http://www.allenkinsel.com/archive/2012/10/what-have-i-done-in-2-years-on-the-pass-board-of-directors/" target="_blank">Listing many of the things Ive accomplished on the board in 2 years</a></li>
<li><a href="http://www.allenkinsel.com/archive/2012/10/getting-things-done-on-the-pass-board/" target="_blank">Outlining a strategic advantage I have to getting things done</a></li>
<li><a href="http://www.sqlpass.org/Elections/Discussion/afv/search/k/0/c/0/ts/0/uid/0/author/93.aspx?q=allen&amp;f=52:53:" target="_blank">My answers to questions on the PASS elections forums</a></li>
<li><a href="http://www.sqlpass.org/Elections/Candidates/AllenKinsel.aspx" target="_blank">Official election platform</a></li>
</ul>
<p><strong>Additional places around the web where I&#8217;ve been mentioned</strong></p>
<ul>
<li><a href="http://www.scarydba.com/2012/09/21/pass-elections-2012/" target="_blank">Grant Fritchey appreciates my PASSion</a></li>
<li><a href="http://www.made2mentor.com/2012/10/rock-the-vote-or-something/" target="_blank">David Stein has witnesed my ability to listen and care about community  issues</a></li>
<li><a href="http://peopletalkingtech.com/episode-003-sql-pass-board-candidates" target="_blank">An audio interview with Denny Cherry</a></li>
<li><a href="http://www.ryanjadams.com/2012/10/my-pass-board-vote/" target="_blank">Ryan Adams believes in the changes &amp; effort Ive put forward</a></li>
<li><a href="http://shellyourexperience.com/2012/09/27/why-i-care-about-voting-for-the-board-of-pass/" target="_blank">Laerte Junior likes the direction we&#8217;re headed</a></li>
<li><a href="http://www.sqlpass.org/LinkClick.aspx?fileticket=81fF0Y4URAk%3d&amp;tabid=6746&amp;mid=13061" target="_blank">Letter of recomendation from Andy Warren</a></li>
<li><a href="http://www.sqlpass.org/LinkClick.aspx?fileticket=81fF0Y4URAk%3d&amp;tabid=6746&amp;mid=13061" target="_blank">Letter of recomendation from Jeremiah Peschka</a></li>
<li><a href="http://www.sqlpass.org/LinkClick.aspx?fileticket=81fF0Y4URAk%3d&amp;tabid=6746&amp;mid=13061" target="_blank">Letter of recomendation from TJay Belt</a></li>
</ul>
<p>Hopefully this makes finding as much info as you need about what I stand for with PASS easier to find.  I would be honored If you would cast one of your votes for me.  I’m running for the PASS Board of Directors, and I need your help to make a difference.</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/qvLiyWQwXB0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/10/have-your-voice-heard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/10/have-your-voice-heard/</feedburner:origLink></item>
		<item>
		<title>Getting things done on the PASS Board</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/tMfsO788Nk8/</link>
		<comments>http://www.allenkinsel.com/archive/2012/10/getting-things-done-on-the-pass-board/#comments</comments>
		<pubDate>Wed, 10 Oct 2012 19:31:04 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[election]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1137</guid>
		<description><![CDATA[Previously I’ve written about many things I&#8217;ve done while on the PASS Board.  It’s often easy to take credit as a member of the board for doing things with PASS.  The reality though is that there’s always more to it than just deciding to do something, digging in and personally accomplishing some goal.  PASS is]]></description>
			<content:encoded><![CDATA[<p>Previously I’ve written about many <a href="http://www.allenkinsel.com/archive/2012/10/what-have-i-done-in-2-years-on-the-pass-board-of-directors/" target="_blank">things I&#8217;ve done </a>while on the PASS Board.  It’s often easy to take credit as a member of the board for doing things with PASS.  The reality though is that there’s always more to it than just deciding to do something, digging in and personally accomplishing some goal.  PASS is lucky to have a paid staff that executes on many of our objectives. This staff collectively is often referred to simply as &#8220;HQ&#8221; and they are the primary source of continuity within the organization.</p>
<h3>PASS HQ</h3>
<p><a href="http://www.sqlpass.org/AboutPASS/ContactUs.aspx" target="_blank">PASS HQ</a> consists of about 16 people who are permanent salaried staff and at times (summit) upwards of a dozen additional contractors.  The Community Evangelists (Karla Landrum and Niko Neugebauer) will be the most likely contact points for most community members however they are just the front lines. The other people within the HQ team are where much of the additional work happens that allows us to put on great events like the Summit.  These largely unsung heroes of the SQL community do the majority of the heavy lifting from day to day and in many ways should be recognized as critical members of our SQL Community even if most of them wouldn’t know a tempdb from a checkdb.</p>
<h3>Relationships matter</h3>
<p>Learning to work within the HQ structure is very important for Board members as HQ has such a huge impact on all things PASS that they can greatly contribute to helping make a board member’s priorities a reality or conversely they can contribute to that same board member’s priorities languishing.  I’m happy to say that in the years I&#8217;ve been volunteering with PASS, I have taken the time to build strong relationships across the organization that allow me to get things done effectively.  Building these relationships has not always been a cakewalk, in fact far from it, but adversity seems to have had a way of making the working relationship I have within PASS HQ better.  Knowing where to turn within HQ to get answers or to unstick a hung process has proven to be invaluable in my tenure as a volunteer with PASS and now even more so as a Board member.</p>
<p><strong>Please consider voting for me.</strong> I’m running for the PASS Board of Directors, and I need your help to make a difference. Click <a href="http://www.sqlpass.org/Elections/Candidates/AllenKinsel.aspx" target="_blank">here</a> to read about why I’m running.</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/tMfsO788Nk8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/10/getting-things-done-on-the-pass-board/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/10/getting-things-done-on-the-pass-board/</feedburner:origLink></item>
		<item>
		<title>What have I done in 2 years on the PASS Board of Directors</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/jWZI9wMrBy8/</link>
		<comments>http://www.allenkinsel.com/archive/2012/10/what-have-i-done-in-2-years-on-the-pass-board-of-directors/#comments</comments>
		<pubDate>Tue, 09 Oct 2012 18:05:20 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Chapters]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Volunteer]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[election]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1097</guid>
		<description><![CDATA[tl;dr &#8212; Disclaimer
I almost didn’t publish this post once I saw what it became as it was too verbose. I couldn’t find a way to shorten it substantially and I didn’t want to break it up.  However, I wanted it out there for no other reason than to serve as a crutch to my aging memory.
Cliffsnotes]]></description>
			<content:encoded><![CDATA[<p><strong>tl;dr &#8212; Disclaimer</strong></p>
<p>I almost didn’t publish this post once I saw what it became as it was too verbose. I couldn’t find a way to shorten it substantially and I didn’t want to break it up.  However, I wanted it out there for no other reason than to serve as a crutch to my aging memory.</p>
<h3><a href="http://en.wikipedia.org/wiki/CliffsNotes" target="_blank">Cliffsnotes</a> Version Available</h3>
<p>For most of you, the outline below should be plenty of info to help shape your opinion of my first term on the PASS BOD. However, for those that want more details (or are just bored for 5 minutes) the details are included afterwards.</p>
<p>Serving on the Board for the last 2 years has been a great experience and many of my successes and failures have been documented right on this blog but, I thought it would be good to bring some of that data into a single post</p>
<ul>
<li><a href="#_Communication">Improved Board Communications</a></li>
<li><a href="#_Website_-_Chapter">Improvements to the Website &#8211; Chapter Tools Support</a></li>
<li><a href="#_SQLRally">SQL Rally US Decision for FY13</a></li>
<li><a href="#_Global_Growth">Supported Global Growth</a></li>
<li><a href="#_Elections">Elections process Improvements</a></li>
<li><a href="#_Reserves">Classifying &amp; Moving Profit into Reserves</a></li>
<li><a href="#_Volunteer_recognition">Created a broader volunteer recognition program</a></li>
<li><a href="#_Community_Evangelist_(1&amp;2)">Supported creating and enhancing the community evangelist role</a></li>
<li><a href="#_Moving_the_PASS">Voted to move the Summit out of Seattle in 2013</a></li>
<li><a href="#_PASS_Built_tools">Supported in house building of core event applications</a></li>
<li><a href="#_Guidebook">Built a partnership for mobile event platform &#8211; Guidebook</a></li>
<li><a href="#_1/2_Day_Sessions">Added 1/2 day session to the Summit</a></li>
<li><a href="#_Expanded_Role_of">Expanded the role of volunteers in the Program Committee</a></li>
<li><a href="#_Community_participation_in">Created a process to allow community voting of sessions at the Summit</a></li>
</ul>
<h3><a name="_Communication"></a>Communication</h3>
<p>In the not too distant past, PASS directors weren&#8217;t the best at communicating things with the membership outside of official channels (minutes and connector articles). I believe in open and transparent communication whenever possible. I have worked to update this blog with information about PASS happenings at least semi-regularly since joining the board (31 Blog <a href="http://www.allenkinsel.com/Topics/sqlpass/" target="_blank">posts</a> about PASS since 1/1/2011)</p>
<h3><a name="_Website_-_Chapter"></a>Website &#8211; Chapter support</h3>
<p>Over the last 4 months I’ve been spearheading a rather large project within PASS to redesign much of the PASS member interfaces on the website. Being able to increase the exposure our chapter events have should help this grassroots section of PASS grow even stronger. This redesign should be live before this years<a href="http://www.sqlpass.org/summit/2012/" target="_blank"> summit </a>if current projections aren&#8217;t off.</p>
<p>In addition to this, over the last 7 months I’ve been leading a separate project to completely revamp the infrastructure PASS uses to manage chapters. It’s an unfortunate reality that when I started in the chapter portfolio, nearly all of our information about chapters, including leaders, meetings, Regional mentors, etc was handled nearly exclusively in excel. We had a great deal of technical debt to deal with in order to begin properly supporting chapters. After a bit of counseling with the experts, we decided to throw nearly everything we had away and start anew. In the time since that decision, we&#8217;ve produced a set of tools that our Community Evangelists, Regional Mentors &amp; Chapter Leaders are beginning to use.</p>
<p>I&#8217;ve also been redefining the Regional Mentor role within PASS to better outline in clear terms what a chapter leader can expect of an RM and what an RM can expect of chapter leaders and PASS itself! This is still very much ongoing but, we&#8217;ve already made some good progress and this group is on a better path into the future.</p>
<h3><a name="_SQLRally"></a>SQLRally</h3>
<p>One of the more difficult decisions I’ve been involved with in the last year was the decision to cancel the North American Rally for FY2013. I believe the Rally model provides a fantastic opportunity for PASS to have a greater impact for more members. The North American rally process worked but definitely had some issues. I don&#8217;t think anyone who was associated would disagree however, I&#8217;m still of the opinion we could have fixed those issues by tweaking the event model in FY13. There were some great discussions about possible options however, I was not persuasive enough and in the end the board had to choose among priorities and <a href="http://www.sqlpass.org/LinkClick.aspx?fileticket=j4Za2Ycg7wI%3d&amp;tabid=118&amp;mid=792">voted</a> not to have a North American Rally in FY13. I’m still optimistic that this will be picked back up in the spring for a FY14 US event.</p>
<h3><a name="_Global_Growth"></a>Global Growth</h3>
<p>Everyone on the board has been involved in the move to make PASS a truly international organization and I am have been no exception to this.  <a href="http://www.sqlpass.org/Elections/Candidates/JamesRowlandJones.aspx" target="_blank">JRJ</a> spearheading this group has allowed the board to make great progress on this objective. Much of this process has been collaborative and I believe we are currently on track to create a great global organization. If you haven&#8217;t read the info on the global growth site, I would encourage you to <a href="http://www.sqlpass.org/Community/GlobalGrowth.aspx" target="_blank">do</a> so!</p>
<h3><a name="_Elections"></a>Elections</h3>
<p>I’ve been quite vocal within the board (as well in the minutes) about my belief that for the health of the organization we should form a small group (3ish) yearly after the elections to function in an <a href="http://erc.sqlpass.org/" target="_blank">ERC</a> capacity. I think having them meet a time or two yearly to go over the election process and any concerns from anyone involved makes a lot of sense, and allows the organizations processes to naturally evolve instead of the abrupt changes we&#8217;ve had in the past.  I don’t believe this group has to have a bunch of overhead but, I’d like to see it engrained in our culture.</p>
<h3><a name="_Reserves"></a>Reserves</h3>
<p>PASS occasionally makes a small profit in a given year based on how well the summit does financially. Since joining the board, I’ve been concerned with our process for handling this profit. We currently have a small amount of money in reserves and I believe for the long term health of the organization we need to be putting more of this profit into these reserve accounts. During our last board meeting I was finally successfull in getting an action item created to create a reserve policy and transfer FY11&amp;FY12 monies into these accounts. To the average PASS member, this probably isn’t seen as a big deal and seems like a bit of minutiae however, increasing reserves for the organization in good times will allow us to have better options when things get tough again. Once money gets moved into the reserve account it becomes a bit more difficult for the organization to spend on a regular expense as it takes a board vote.</p>
<h3><a name="_Volunteer_recognition"></a>Volunteer recognition</h3>
<p>PASS has awarded the <a href="http://www.sqlpass.org/Community/Volunteers/PASSionAward.aspx" target="_blank">PASSion award </a>to one outstanding volunteer annually. Given the large amount of <a href="http://www.sqlpass.org/Community/Volunteers/OutstandingVolunteers.aspx" target="_blank">volunteers </a>we have in the organization, I’ve always felt that we should be doing more to recognize them. Earlier this year I helped drive the creation of a true <a href="http://www.allenkinsel.com/archive/2012/02/pass-volunteer-appreciation/" target="_blank">volunteer appreciation</a> award program. The outstanding volunteer award is only a small token but, receiving recognition including a badge and paper certificate that is signed by the president of PASS is in my mind the least we can do for those who do so much for the PASS community.</p>
<h3><a name="_Community_Evangelist_(1&amp;2)"></a>Community Evangelist (1&amp;2)</h3>
<p>Prior to 2011 PASS HQ had experience in working with volunteers to do things like start chapters, administer SQLsaturdays, etc. However, HQ truly had no one on the team that had been there and done that in the community so to speak. Finding someone who had lived and breathed community for as long as Karla Landrum (<a href="http://karlalandrum.wordpress.com/" target="_blank">Blog</a>|<a href="http://twitter.com/karlakay22" target="_blank">twitter</a>) had and was willing to leave their Job was truly a stroke of luck. However, convincing the board that this new type of community support person was indeed the best way to spend our funds was a different matter altogether. The face of PASS has been forever changed by this additional role and because of the great success of Karla, as of Oct 22 we will be adding a second Community Evangelist, Niko Neugebauer (<a href="http://www.nikoport.com/" target="_blank">Blog</a>|<a href="http://twitter.com/NikoNeugebauer" target="_blank">Twitter</a>) to help do even more things directly with the community.</p>
<h3><a name="_Moving_the_PASS"></a>Moving the PASS Summit out of Seattle</h3>
<p>Back in 2010-2011 this was quite the <a href="http://www.allenkinsel.com/archive/2011/02/why-i-will-vote-to-move-the-pass-summit-in-2013/" target="_blank">hot topic</a> within our community. Ultimately I voted to move the Summit to Charlotte in 2013. Only time will tell whether that was a good decision but, at this point I listened to the community and believe it was the right choice.  I wrote a lengthy <a href="http://www.sqlpass.org/Elections/Discussion/aft/42.aspx#155" target="_blank">reply</a> in the election forum about this topic as well so I won’t rehash it here.</p>
<h3><a name="_PASS_Built_tools"></a>PASS Built tools for events</h3>
<p>Early on when I was involved with managing the program committee I lobbied heavily for PASS to invest in the tools needed to do the job of managing our speaker selection process and scheduling for the larger PASS events. In the time since then we have invested heavily in custom built tools and I’m happy to say that even though there are occasionally bugs, the decision to build these tools has allowed PASS to scale events without paying large fees to 3rd party software per event. One interesting thing I worked into the tools requirement was an <a href="http://feeds.sqlpass.org/public/events/OratorDataService.svc" target="_blank">odata feed </a>. Getting this baked in from the beginning has allowed many <a href="http://blogs.msdn.com/b/writingdata_services/archive/2011/10/09/going-to-the-pass-summit-get-the-wp-event-browser-app.aspx" target="_blank">others</a> to build <a href="http://pivot.lobsterpot.com.au/PASSSummit2012" target="_blank">applications</a> that make use of the data in interesting ways.</p>
<h3><a name="_Guidebook"></a>Guidebook</h3>
<p>In early 2011 We were looking for a vendor to deliver a mobile experience for the Summit. Because of the existing odata infrastructure for our larger events and new XML feed enhancements planned for the SQLSaturday site, I was able to work with HQ and guidebook to sign a 2 year agreement covering them hosting mobile applications for all of our single day and longer events (sqlsat+).</p>
<h3><a name="_1/2_Day_Sessions"></a>1/2 Day Sessions</h3>
<p>In <a href="http://www.allenkinsel.com/archive/2011/03/how-deep-can-you-dive/" target="_blank">2011 I created </a>a new summit session type that has thus far proven to be a great addition to the event</p>
<h3><a name="_Expanded_Role_of"></a>Expanded Role of volunteers in Program Committee</h3>
<p>When I began with the Program committee way back when, I believe there were a grand total of 8 volunteers on the committee. When I left as leader of that group we had approximately 25 people actively working on teams and an additional 10 people who were part time dealing with things as needed. By growing these opportunities we are allowing the community to play a greater role at higher levels of the organization. Hopefully some of those same volunteers will move on to higher roles in the org because of their initial involvement in the program committee.</p>
<h3><a name="_Community_participation_in"></a>Community participation in Summit session selections</h3>
<p>While leading the Program Committee I attempted to involve the community at large as much as possible. Under my watch, for the first time the community was allowed to <a href="http://www.allenkinsel.com/archive/2010/07/announcing-community-choice-sessions-at-the-pass-summit-2010/" target="_blank">vote</a> on several sessions to be presented at the summit.</p>
<h4><strong>If you like what I’ve accomplished in 2 years and want to see more done, please consider voting for me.</strong></h4>
<p>I’m running for the PASS Board of Directors, and I need your help to make a difference. Click <a href="http://www.sqlpass.org/Elections/Candidates/AllenKinsel.aspx" target="_blank">here</a> to read about why I’m running.</p>
<p><span style="font-size: small;"><span style="color: #000000;"><span style="font-family: Calibri;"> </span></span></span></p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/jWZI9wMrBy8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/10/what-have-i-done-in-2-years-on-the-pass-board-of-directors/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/10/what-have-i-done-in-2-years-on-the-pass-board-of-directors/</feedburner:origLink></item>
		<item>
		<title>PASS – Campaigning is tough</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/TLduGBvtsNI/</link>
		<comments>http://www.allenkinsel.com/archive/2012/10/pass-campaigning-is-tough/#comments</comments>
		<pubDate>Mon, 08 Oct 2012 18:45:29 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[election]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1114</guid>
		<description><![CDATA[In order to get elected to the PASS Board, Ive twice now been asked to do something that is easily one of the more challenging things I&#8217;ve needed to do professionally.
Self-Promotion
Im a typical DBA type who has never been a fan of self-promotion, Ill happily sit in a corner and give 100% to an effort without looking for any acknowledgement in]]></description>
			<content:encoded><![CDATA[<p>In order to get elected to the PASS Board, Ive twice now been asked to do something that is easily one of the more challenging things I&#8217;ve needed to do professionally.</p>
<h3>Self-Promotion</h3>
<p>Im a typical DBA type who has never been a fan of self-promotion, Ill happily sit in a corner and give 100% to an effort without looking for any acknowledgement in return.  I believe in doing a good Job and letting the results speak for themselves.  This doesn&#8217;t necessarily mean I&#8217;m quiet or a reserved introvert, I&#8217;m actually the opposite.  I&#8217;d go so far as to say that my fellow Board members might agree that it wouldn&#8217;t be an understatement to say I can be quite outspoken and opinionated especially when its related to things I&#8217;m passionate about, unfortunately for campaigning purposes those are things only the 13 other Board members have seen regularly.</p>
<h3>Campaigning to win on my terms</h3>
<p>Since deciding to run for another term on the PASS Board I&#8217;ve had many conversations with pillars of our community about how I could win another term while not letting my disdain for self-promotion control my ability to get elected.  I want to maintain my position on the board so that I can continue serving the entire community.  To do that I&#8217;ve chosen to highlight my<a href="http://www.allenkinsel.com/archive/2012/09/im-running-for-the-pass-board-of-directors-again/"> prior record </a>and <a href="http://www.allenkinsel.com/archive/2012/10/evolving-pass/">future plans </a>for the organization without leveraging some of the other more self-promotional/direct contact aspects of typical election campaigns.  This was an incredibly difficult decision to make because I really want to win&#8230; but not at the expense of my own personality.  As a wise person once told me: &#8220;it&#8217;s better to be yourself and loose than pretend and loose hope&#8221;</p>
<p>My plan has been simple, keep doing what I&#8217;ve been doing.  (The question is: is it working?  I suppose I&#8217;ll find out Oct 15th)</p>
<ul>
<li>Blogging &#8211; I&#8217;ve blogged about PASS since nearly the beginning of my blogging (post #2) So I&#8217;ve continued</li>
<li>Forums &#8211; I&#8217;ve been active in the <a href="http://www.sqlpass.org/Elections/Discussion/aff/52.aspx">Election forums </a>(have a question, please post it!)</li>
<li>Twitter &#8211; I&#8217;m always open to chat about <a href="https://twitter.com/i/#!/search/?q=%23sqlpass">#sqlpass </a>on twitter regardless of whether its elections season or not</li>
<li>Phone/Instant message &#8211; I&#8217;ve had a few phone/IM conversations about my platform.  Want to chat? Just ask.  I&#8217;m always available</li>
<li>References &#8211; I asked a few people who know of my work with PASS for letters of reference</li>
</ul>
<p style="padding-left: 60px;">* <a href="http://www.sqlpass.org/LinkClick.aspx?fileticket=81fF0Y4URAk%3d&amp;tabid=6746&amp;mid=13061">Andy Warren, Jeremiah Peschka and Tjay Belt </a> (pdf pg 5-7)</p>
<h3>Continuing to Serve</h3>
<p>I&#8217;ve spent many thousands of hours of my life serving the PASS organization and want the opportunity to spend a few hundred <del>thousand</del> more in the same role over the next two years.  However, if by chance the community wants to see someone else in my seat on the board I can live with that, there aren&#8217;t any bad choices.  I will still continue to focus on the SQL community; it will just be in a different way than I am able to currently.</p>
<p><strong>If you appreciate and expect this level of candor from the PASS Board, Please consider voting for me.</strong>  I’m running for the PASS Board of Directors, and I need your help to make a difference.  Click <a href="http://www.sqlpass.org/Elections/Candidates/AllenKinsel.aspx" target="_blank">here</a> to read about why I’m running.</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/TLduGBvtsNI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/10/pass-campaigning-is-tough/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/10/pass-campaigning-is-tough/</feedburner:origLink></item>
		<item>
		<title>Evolving PASS</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/X09lVxJZ2JM/</link>
		<comments>http://www.allenkinsel.com/archive/2012/10/evolving-pass/#comments</comments>
		<pubDate>Wed, 03 Oct 2012 13:45:07 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Volunteer]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[election]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1103</guid>
		<description><![CDATA[I&#8217;m running for the PASS board of directors again this year
While everyone running for the open Board positions is certainly qualified, I believe I am the best candidate for two primary reasons.  First, I have a plan for how I want to evolve the organization.  Second, I have a long, well documented history of executing on]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m running for the PASS board of directors again this year</p>
<p>While <a href="http://www.sqlpass.org/Elections/Candidates.aspx" target="_blank">everyone </a>running for the open Board positions is certainly qualified, I believe I am the best candidate for two primary reasons.  First, I have a plan for how I want to evolve the organization.  Second, I have a long, <a href="http://www.allenkinsel.com/Topics/sqlpass/" target="_blank">well documented </a>history of executing on those plans and delivering results for PASS.</p>
<h3>Evolutionary Plans</h3>
<p>&nbsp;</p>
<ul>
<li><strong>Chapters</strong> &#8211; I&#8217;ve already <a href="http://www.allenkinsel.com/Topics/sqlpass/chapters-sqlpass/" target="_blank">documented</a> many of the specific things Id like to see us change with how PASS supports local chapters including</li>
</ul>
<p style="padding-left: 60px;">Community evangelists are providing a great resource, I will continue to refine this roles responsibilities</p>
<p style="padding-left: 60px;">Continue to refine tools &amp; document PASS&#8217;s processes to provide a higher level of support</p>
<p style="padding-left: 60px;">Plan to drive more value from Regional Mentors by honing their responsibilities into an interesting role for our community leaders</p>
<p style="padding-left: 60px;">Finish a detailed plan for how PASS can facilitate sponsoring our chapters financially through different avenues</p>
<p style="padding-left: 60px;">
<ul>
<li><strong>Maintain Transparency &amp; Increase Communications</strong></li>
</ul>
<p style="padding-left: 60px;">I will champion all board members communicating about their work for PASS to the membership regularly.</p>
<p style="padding-left: 60px;">I plan to continue working for more transparency in all matters related to the board</p>
<p style="padding-left: 60px;">
<ul>
<li><strong>Evolving the next generation of Leaders -</strong> Increasing Community Involvement</li>
</ul>
<p style="padding-left: 60px;">Enable board level involvement from volunteers who aren&#8217;t on the board through forming board level committees that include volunteers</p>
<p style="padding-left: 60px;">Develop a board mentorship program where prospective board members are identified and paired up with existing and ex board members to expand their understanding of how the board functions</p>
<p style="padding-left: 60px;">Further formalize and promote the process we use to recognize volunteer achievements at all levels in the PASS organization</p>
<p style="padding-left: 60px;">
<ul>
<li><strong>Professionalism</strong></li>
</ul>
<p style="padding-left: 60px;">I want to see PASS become more professional.  PASS should stop unnecessarily limiting our membership benefits to education and networking opportunities alone.</p>
<p style="padding-left: 60px;">The board should be setting goals for defining how we can expand our member benefits beyond the current strategy of education/networking</p>
<p>&nbsp;</p>
<p>The plans outlined above can impact every SQL Server Professionals career in a positive manner and take PASS to new heights.  I want the opportunity to deliver on these plans in the same way I have delivered on my past plans for PASS</p>
<p>&nbsp;</p>
<p align="LEFT"><strong>If you believe in these changes and you like how I communicate them, consider voting for me.</strong> I’m running for the PASS Board of Directors, and I need your help to make a difference.  Click <a href="http://www.sqlpass.org/Elections/Candidates/AllenKinsel.aspx" target="_blank">here</a> to read about why I’m running.</p>
<p align="LEFT">
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/X09lVxJZ2JM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/10/evolving-pass/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/10/evolving-pass/</feedburner:origLink></item>
		<item>
		<title>Im Running for the PASS Board of Directors – Again</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/SnQtEFUEb8g/</link>
		<comments>http://www.allenkinsel.com/archive/2012/09/im-running-for-the-pass-board-of-directors-again/#comments</comments>
		<pubDate>Wed, 26 Sep 2012 18:59:15 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Chapters]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[Volunteer]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1079</guid>
		<description><![CDATA[My PASS History
Serving on the PASS Board for the last 2 years has been a great experience, in those two years I&#8217;ve accomplished more with PASS than I expected yet  there is still more I&#8217;d like to see happen.  This is the primary reason I&#8217;ve decided to run for re-election to another 2 year term on the]]></description>
			<content:encoded><![CDATA[<h3>My PASS History</h3>
<p>Serving on the PASS Board for the last 2 years has been a great experience, in those two years I&#8217;ve accomplished more with PASS than I expected yet  there is still more I&#8217;d like to see happen.  This is the primary reason I&#8217;ve decided to run for re-election to another 2 year term on the board.</p>
<p>During my initial year on the board there was definitely a learning curve.  Even after spending a long period of time as a volunteer, coming up to speed was quite a bit tougher than I had expected.  During the first year I asked for and was assigned the portfolio of the Summit Program committee which I had previously been volunteering on.  Having a familiar tactical duty during that first year while figuring out the learning curve of strategic leadership on the board was very helpful.  After my first year on the board, which was my 5th working on the program committee I realized I wanted a <a href="http://www.allenkinsel.com/archive/2011/10/pass-pass-and-more-pass/" target="_blank">new challenge</a>.  I knew I wanted to work on one of the biggest problems I thought PASS had so, I did a bit of lobbying and starting in January of this year I was given the <a href="http://www.allenkinsel.com/archive/2012/02/new-pass-chapters-leader-on-the-pass-bod/" target="_blank">Global Chapters Portfolio.</a>  After spending some extended time with Karla Landrum (<a href="http://karlalandrum.wordpress.com" target="_blank">Blog</a>|<a href="http://twitter.com/karlakay22" target="_blank">twitter</a>) and several regional mentors it became obvious that I had underestimated the amount of work that chapters were going to need from me.  During this time it also fully sunk in to me the level of impact PASS could have by making it easier to be a chapter leader.  In the 9 months since them, I have seen a whirlwind of activity around what we&#8217;re doing for chapters and I&#8217;m proud to say that I feel like the community is starting to see some real changes in PASS&#8217;s support of chapters.</p>
<h3>The decision</h3>
<p>In some ways making the decision to run for the board again this year was a tough one for me.  In my estimation in order to be truly successful on the board and make a difference the community can see/feel it takes an average of at least 5 hours a week.  Likewise, if a board member wants to tackle some of the tougher issues that number can easily double, triple or more.  By no means am I saying this is an absolutely required amount of time, rather that this is what I considered the commitment to be by re-running for the board.  As much as I might have liked to convince myself that I could spend less time on next terms PASS duties, I recognize that I have an unfortunate personality trait where I cant seem to figure out how to do things at any other setting than &#8220;all-in&#8221; so while scaling back sounds good in theory, it never seems to work out for me personally.  In the end though my desire to finish what I&#8217;ve started and hopefully solve a few other issues drove me to decide to re-run for the board.</p>
<h3>There&#8217;s more to do</h3>
<p>In the last 9 months we&#8217;ve made a lot of improvements but, there is still a large amount of work to do for our chapters.  I plan on spending the coming board term putting in place the tools, processes and documentation that I believe will help our worldwide chapter leaders spend less time worying about the logistics of their groups and more time building and growing these great local groups.  In order to do this effectively I&#8217;ve been focusing on two specific facets of our chapter support.  Regional Mentors and their roles, as well as Chapter leader tools.  I expect that during the middle of next year the chapter tools will be significantly complete and additional things will be added to the list of things Im focusing on improving.  In order to tactically bring about real change, I believe it&#8217;s very important to focus on a couple of chapter needs at a time. The difficulty is that PASS chapters have many needs so juggling this and drawing clear lines is often quite a challenge especially as these priorities have to fit into the overall strategic PASS organization priorities.</p>
<h3>Other Opportunities</h3>
<p>In addition to everything I want to see accomplished for Chapters, I am also committed to working on a couple of other things within the PASS Board I should mention.</p>
<ul>
<li><strong>Transparency</strong> &#8211; I believe we have made great strides in this area recently and I&#8217;d like to see us continue the upward trend and I plan on continuing to lead the board towards a greater level of transparency.  One thing in particular that I will champion is for every board member to communicate with the membership regularly.  For an organization like ours, I believe this is critical in maintaining trust and transparency while giving candid thoughts about the direction of our organization.  Since taking my seat on the board I&#8217;ve made 31 blog posts in the category <a href="http://www.allenkinsel.com/Topics/sqlpass/" target="_blank">SQLPASS</a>. As I&#8217;ve been seated on the board for roughly 21 months that makes for an average of nearly 1.5 blog posts about PASS per month.  I&#8217;m not completely happy with that post count as I had intentions on doing better but, I believe our community is better off for having this sort of information freely (and candidly) available.</li>
<li><strong>Community involvement</strong> &#8211; I believe PASS&#8217;s greatest asset is our volunteers and we&#8217;re currently missing opportunities to involve them at all levels of our organization.  In my past role as leader of the Program committee I did a pretty good job of involving as many volunteers as reasonably possible to run that portfolio.  As the Chapter Portfolio leader I haven&#8217;t expanded involvement greatly because we already had a large group of very dedicated volunteers but, as opportunities arise I plan to involve more volunteers.  Looking for other areas within the organization to involve more volunteers should be a priority for every board member and our organization as a whole.  Increasing volunteer participation leads me directly into my my next point</li>
<li><strong>Leadership growth</strong> &#8211; PASS needs to do more to promote our next generation of leaders, in order to do that we must involve volunteers more at all levels of the organization.  We need to create opportunities for volunteers to participate in the decision making process, especially near the top of the organization.  I hope to do this by convincing the board to transition from the current portfolio system to a system where board members serve as chairs on small committees with volunteers from our membership.  Changing this process is going to become even more critically important in the near future as we pursue our international growth goals and dedicate some board seats to our international members.</li>
</ul>
<h4></h4>
<p><strong>If you believe in these changes and you like how I communicate them, consider voting for me.</strong> I’m running for the PASS Board of Directors, and I need your help to make a difference.  Click <a href="http://www.sqlpass.org/Elections/Candidates/AllenKinsel.aspx" target="_blank">here</a> to read about why I’m running.</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/SnQtEFUEb8g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/09/im-running-for-the-pass-board-of-directors-again/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/09/im-running-for-the-pass-board-of-directors-again/</feedburner:origLink></item>
		<item>
		<title>Quick PASS Chapters update</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/klT503MZSos/</link>
		<comments>http://www.allenkinsel.com/archive/2012/09/quick-pass-chapters-update/#comments</comments>
		<pubDate>Mon, 17 Sep 2012 15:45:13 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Chapters]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Syndicated]]></category>
		<category><![CDATA[chapters]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[Volunteer]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=1050</guid>
		<description><![CDATA[PASS Chapters Update
As PASS Director of Chapters, I had my first set of meetings a few weeks ago where every Chapter Leader worldwide was invited and thought I&#8217;d write a quick post about it.
Getting up to speed in a new PASS portfolio and having something good to talk about takes time so this meeting took a lot]]></description>
			<content:encoded><![CDATA[<h2>PASS Chapters Update</h2>
<p>As PASS Director of Chapters, I had my first set of meetings a few weeks ago where every Chapter Leader worldwide was invited and thought I&#8217;d write a quick post about it.</p>
<p>Getting up to speed in a new PASS portfolio and having something good to talk about takes time so this meeting took a lot longer to materialize than I&#8217;d originally hoped.  The primary delay was it took quite a while to get enough good content that I felt comfortable inviting 300+ chapter leaders to give an extra an hour of their lives to PASS.  Now that the initial break in time is handled and I know we&#8217;re making solid progress towards improving PASS&#8217;s support of Chapters (I&#8217;ll have stuff to talk about that matters) We&#8217;ve agreed to schedule these update meetings quarterly.  This is in addition to the update meetings we&#8217;ve already been having bi-monthly with Regional mentors and the Bi-Monthly(ish) Chapter update emails/blog posts Ive already been doing.</p>
<h4>Global Organizations = Follow the sun = Hard</h4>
<p>Trying to find a time (or 2) that accomidates 300 different people is extremely challenging, In the past we&#8217;ve held Regional Mentor meetings at <a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=PASS&amp;iso=20120917T09&amp;p1=104">9AM </a>CST and <a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=PASS&amp;iso=20120917T21&amp;p1=104">9PM</a> CST in an effort to allow as many RM&#8217;s as possible to participate.  We&#8217;ve had varrying degrees of success and quite a few requests to have a time that better fits those in the EMEA region.  So we decided to move the initial time of the Chapter leader meeting to <a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=PASS&amp;iso=20120917T06&amp;p1=104">6AM</a> CST leaving the <a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=PASS&amp;iso=20120917T21&amp;p1=104">9PM</a> CST meeting in place.  This seemed to work out OK but, being ready to present at 6AM local time was tougher than I expected, combine that with a PASS site that wasnt working properly and the first meeting went less than spectacularly.  In the future we&#8217;ll probably move the morning meeting back to 9AM CST and offer a third meeting option in the middle of the day that better supports those in EMEA.  The meetings are recorded and posted online for all to chapter leaders so theres always that option as well.  Im open to other ideas about timings of these meetings so If your a RM or a Chapter leader and have an opinion feel free to contact me to share it.</p>
<h4>Chapter Leader Resources</h4>
<p>Karla (<a href="http://karlalandrum.wordpress.com/">Blog</a>|<a href="http://twitter.com/KarlaKay22">Twitter</a>) has been working incredibly hard to update the Chapter Leaders resources page.  She has made many updates and changes to this Chapter leader only page, one of the largest changes mentioned is related to the new process that book publishers are asking PASS Chapters to use.  Im optimistic that the new process will help Chapters get a better selection of books in a shorter amount of time.  Karla also added a new <a href="http://www.sqlpass.org/LinkClick.aspx?fileticket=7WVUM_oCcCs%3d&amp;tabid=813&amp;mid=1463" target="_blank">Chapter logo </a> as a resource on this page.</p>
<h4>Chapter Tools Project</h4>
<p>A good portion of time was spent going over the changes in tools that have been rolled out for chapters.</p>
<p>The aim of this project is for PASS to provide effective tools to minimize the marketing work Chapter Leaders have to perform and increase reliability of records all while creating a one-stop shop of resources to efficiently promote and run a PASS Chapter.</p>
<p>To date, weve completed updates to the chapter newsletter emailer, created a chapter dashboard and created an events framework for chapters to use in displaying their meetings.  The events framework is the latest update, it is currently used on the chapters portal, and although its currently a v1 release it handles many things chapter leaders let us know they wanted like Auto archiving of meeting details, Auto populating Speaker info, timezone display differences, uploads and more.  There are several other hooks planned in the future for this events framework but this should provide a good starting infrastructure as we build more on to it.</p>
<h4>Community Meetings at the Summit</h4>
<p>Also covered were the community meetings at the summit.  If you&#8217;re a PASS community leader one or more of these is likely for you!</p>
<p><strong>VIRTUAL CHAPTER LEADERS </strong></p>
<p>Tuesday, November 6</p>
<p>8:00 am – 9:00 am</p>
<p>Led by Denise McInerney</p>
<p><strong>SQLSATURDAY LEADERS</strong></p>
<p>Tuesday, November 6</p>
<p>9:30 am – 12: 30 pm</p>
<p>Led by Kendal Van Dyke</p>
<p><strong>REGIONAL MENTORS</strong></p>
<p>Tuesday, November 6</p>
<p>1:00 pm – 2:00 pm</p>
<p>Led by Allen Kinsel</p>
<p><strong>CHAPTER LEADERS</strong></p>
<p>Tuesday, November 6</p>
<p>2:00 pm – 5:00 pm</p>
<p>Led by Allen Kinsel and Regional Mentors</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/klT503MZSos" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2012/09/quick-pass-chapters-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2012/09/quick-pass-chapters-update/</feedburner:origLink></item>
	</channel>
</rss>
