<?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, SQLPASS, and other random things</description>
	<lastBuildDate>Thu, 04 Mar 2010 16:08:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>Whose got my DAC?</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/nvOBxYln-8o/</link>
		<comments>http://www.allenkinsel.com/archive/2010/03/whose-got-my-dac/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:08:00 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Connections]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[DAC]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/archive/2010/03/whose-got-my-dac/</guid>
		<description><![CDATA[What is the DAC?
The Dedicated Admin Connection, Commonly called the DAC is used to manage SQL Server when a regular connection wont succeed.  Here's what SQL Books Online (BOL) has to say about the DAC &#171;This diagnostic connection allows an administrator to access SQL Server to execute diagnostic queries and troubleshoot problems even when SQL [...]]]></description>
			<content:encoded><![CDATA[<h4>What is the DAC?</h4>
<p>The Dedicated Admin Connection, Commonly called the DAC is used to manage SQL Server when a regular connection wont succeed.  Here's what SQL Books Online (BOL) has to say about the DAC &laquo;This diagnostic connection allows an administrator to access SQL Server to execute diagnostic queries and troubleshoot problems even when SQL Server is not responding to standard connection requests.&raquo;</p>
<h4>DAC Errors</h4>
<p>Occasionally, while troubleshooting SQL servers in a large environment, especially one thats managed from many different geographic locations you could come up with this error, if more than 1 person is using the DAC.  It should also be noted this only happens if you have remote DAC enabled in your environment</p>
<p><span style="font-size: x-small; color: #ff0000;">Error 17810</span></p>
<p><span style="font-size: x-small; color: #ff0000;">Could not connect because the maximum number of '1' dedicated administrator connections already exists. Before a new connection can be made, the existing dedicated administrator connection must be dropped, either by logging off or ending the process. [CLIENT: 127.0.0.1]</span></p>
<p>Since I could still connect with a regular connection currently, I set out looking for a query to determine who was using the DAC connection.  I whipped this up, and since I couldnt find anything in search, I thought id blog it</p>
<p>select conn.session_id, sess.login_name, sess.nt_domain, sess.nt_user_name, conn.connect_time, conn.last_read, conn.last_write, sess.host_name, conn.client_net_address<br />
    from sys.dm_exec_connections conn<br />
    join sys.endpoints edp<br />
        on conn.endpoint_id = edp.endpoint_id<br />
    join sys.dm_exec_sessions sess<br />
        on sess.session_id = conn.session_id   <br />
    where edp.is_admin_endpoint = 1</p>
<p>This should return everything you need to know about who is using your DAC connection so you can ask them to disconnect, or KILL their connection.</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/02/sql-active-directory-user-id-sid-mismapings/" title="Permanent link to this post">SQL Active Directory User ID SID Mismapings</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/using-aliases-in-sql-server/" title="Permanent link to this post">Using Aliases with SQL Server</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/03/convincing-your-boss-to-pay-for-your-training/" title="Permanent link to this post">Convincing your boss to pay for your training</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/accessing-top-quality-training/" title="Permanent link to this post">Accessing Top Quality Training</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/sql-windows-clustering-stupidity/" title="Permanent link to this post">SQL/Windows Clustering Stupidity</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/nvOBxYln-8o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/03/whose-got-my-dac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/03/whose-got-my-dac/</feedburner:origLink></item>
		<item>
		<title>Convincing your boss to pay for your training</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/ZV1WljO_M2w/</link>
		<comments>http://www.allenkinsel.com/archive/2010/03/convincing-your-boss-to-pay-for-your-training/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 15:11:00 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[Volunteer]]></category>
		<category><![CDATA[SQL Saturday]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/archive/2010/03/convincing-your-boss-to-pay-for-your-training/</guid>
		<description><![CDATA[&#160;

Things are tight

It seems like budgets are being cut everywhere, and IT training seems to be one of the first places cut.&#160; In an earlier post I outlined where you could get a lot of valuable training for relatively little cost.&#160; In this post I will explore a few methods that have worked for me [...]]]></description>
			<content:encoded><![CDATA[<p align="center">&#160;</p>
<h2>
<p>Things are tight</p>
</h2>
<p>It seems like budgets are being cut everywhere, and IT training seems to be one of the first places cut.&#160; In an earlier <a href="http://www.allenkinsel.com/archive/2010/02/accessing-top-quality-training/">post</a> I outlined where you could get a lot of valuable training for relatively little cost.&#160; In this post I will explore a few methods that have worked for me over the years to get your boss to say YES to paying for you to refresh your fountain of knowledge.</p>
<h4>The direct approach</h4>
<p>It may seem obvious but, if you don't ask your employer, they cant agree to send you to a SQLSaturday, or to the annual SQLPASS Summit.&#160; So sometimes its just as simple as broaching the subject with your boss.&#160; But before you try that continue reading!</p>
<h4>Explain the ROI</h4>
<p>Many times the people who make the final decisions about training forget what a struggle it can be to not only stay current on technology but to actually excel with it.&#160; Last year PASS put together a very good list of <a href="http://summit2009.sqlpass.org/AboutSummit/ROI.aspx">ROI points</a>&#160; This could be used for any SQL event, make it work for you.</p>
<h4>Volunteer</h4>
<p>If you volunteer for <a href="http://sqlpass.org">SQLPASS</a> (at the local or national level) you may be eligible for a discount admission to the annual summit.&#160; This discount can range anywhere from 100$ all the way up to a full comp (free) admission.&#160; Armed with the discount, and your ROI documentation it can be quite a bit easier to convince your boss to send you to a weeks worth of invaluable training that they perceive to be discounted.</p>
<h4>
<p>Offer to partner</p>
</h4>
<p>A few years back this might have been unheard of but, I've recently decided to start trying this method to get approval for some training.&#160; Try to combine the ROI documentation with an offer to pick up 1/2 the tab for the training.&#160; For instance, split the cost, ask them to pay the airfare to a SQL Saturday, while you pick up the hotel, food and ground transportation.&#160; Another idea, offer to pay the airfare/conference registration(Free if you volunteer enough) and let them pick up the rest to send you to the SQLPASS Summit.&#160; Either way its a win-win for both parties, you get to make a small investment in your career, and it shows your employer your serious about that career. </p>
<h4>Mix and Match</h4>
<p>Hopefully you can take a few of these ideas and mix-n-match them to reach the ultimate goal of getting your desired education.</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/02/accessing-top-quality-training/" title="Permanent link to this post">Accessing Top Quality Training</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/pass-tps-1/" title="Permanent link to this post">PASS TPS #1</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/call-for-program-committee-volunteers/" title="Permanent link to this post">Call for Program Committee Volunteers</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/your-relationship-with-your-professional-organization/" title="Permanent link to this post">Your relationship with your professional organization</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/" title="Permanent link to this post">Program committee task--Speaker terms revisited</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/ZV1WljO_M2w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/03/convincing-your-boss-to-pay-for-your-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/03/convincing-your-boss-to-pay-for-your-training/</feedburner:origLink></item>
		<item>
		<title>Accessing Top Quality Training</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/ePCGkrZ7Uk4/</link>
		<comments>http://www.allenkinsel.com/archive/2010/02/accessing-top-quality-training/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 16:00:00 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[SQL Saturday]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/archive/2010/02/accessing-top-quality-training/</guid>
		<description><![CDATA[Where did the Training go?
With the economy being what it is, many companies are cutting back on training budgets yet our need for knowledge as database professionals never stops.&#160; Luckily the SQL Server community is one of the liveliest around and there are solutions.
Online
I'd estimate that&#160; almost everyday of the week you can find live [...]]]></description>
			<content:encoded><![CDATA[<h2>Where did the Training go?</h2>
<p>With the economy being what it is, many companies are cutting back on training budgets yet our need for knowledge as database professionals never stops.&#160; Luckily the SQL Server community is one of the liveliest around and there are solutions.</p>
<h4>Online</h4>
<p>I'd estimate that&#160; almost everyday of the week you can find live webcasts about various subjects in the SQL Server arena, the problem here is that many of these top quality training events aren't well publicized.&#160; I never knew about them until joining <a href="http://twitter.com/sqlinsaneo">Twitter</a> a few years back.&#160; As it turns out, many SQL user groups around the world <a href="http://houston.sqlpass.org/">stream their meetings</a> online via live meeting, there are <a href="http://www.sqlpass.org/Community/VirtualChapters.aspx">PASS VC's</a> webcasts, <a href="http://www.vconferenceonline.com/shows/spring10/quest/register/multireg.asp?newmem=1">Vendor sponsored</a> webcasts, and the list goes on and on.</p>
<h4>
<p>Local Events</p>
</h4>
<p>Local events usually put on by your <a href="http://www.sqlpass.org/PASSChapters.aspx">Local PASS Chapter</a>, these are usually monthly events put on by your local PASS Chapter.&#160; The added bonus is that these events provide networking opportunities.&#160; </p>
<h4>
<p>Regional Events</p>
</h4>
<p>For the time being these usually are <a href="http://sqlsaturday.com/">SQL Saturdays</a>.&#160; Held at various metropolitan areas across the US these are currently one of the best bets going for very cheap, very good, education.&#160; I would highly recommend that you consider traveling to one of these if they are within a reasonable drive, or better still, a cheap flight&#160; </p>
<h4>National Events</h4>
<p>Generally speaking these are <a href="http://www.sqlpass.org/summit/na2010/">SQLPASS</a> and <a href="http://www.devconnections.com/">SQL Connections</a>.&#160; I'll just say that these are topflight, all in wonderful opportunities, and if you have the chance Id highly recommend that you attend, everything I said about the other training events, is 10 fold when dealing with a week long immersive opportunity.</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2009/11/a-new-blog-is-born/" title="Permanent link to this post">A new blog is born</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/pass-tps-1/" title="Permanent link to this post">PASS TPS #1</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/sql-windows-clustering-stupidity/" title="Permanent link to this post">SQL/Windows Clustering Stupidity</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/sql-active-directory-user-id-sid-mismapings/" title="Permanent link to this post">SQL Active Directory User ID SID Mismapings</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/call-for-program-committee-volunteers/" title="Permanent link to this post">Call for Program Committee Volunteers</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/ePCGkrZ7Uk4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/02/accessing-top-quality-training/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/02/accessing-top-quality-training/</feedburner:origLink></item>
		<item>
		<title>PASS TPS #1</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/fdeC3SpUo5Q/</link>
		<comments>http://www.allenkinsel.com/archive/2010/02/pass-tps-1/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 20:00:54 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Volunteer]]></category>
		<category><![CDATA[TPS]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=234</guid>
		<description><![CDATA[TPS reports, love them or loathe them, they are a necessary thing for most of us working in corporate America.  I firmly reside in the loathe camp, Just ask my boss.
In this case though, I've decided to start putting out regular updates about what Ive been up to for PASS.  I hope the benefit is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/TPS_report">TPS reports</a>, love them or loathe them, they are a necessary thing for most of us working in corporate America.  I firmly reside in the loathe camp, Just ask my boss.</p>
<p>In this case though, I've decided to start putting out regular updates about what Ive been up to for PASS.  I hope the benefit is 2 fold, 1 to allow a greater transparency into what happens behind the scenes and more importantly for me to have a place to reference what we did and when!</p>
<h3>Summit 2009 wrapup</h3>
<p>We sent out quite a few different surveys during/after the 2009 summit, some of them are listed:</p>
<p>The members of the program committee</p>
<p>The speakers</p>
<p>The &laquo;suggestion box&raquo;at the PASS booth</p>
<p>The Session Evaluations</p>
<p>The purpose of each of these sets of questions were unique and helpful (some more than others but I digress)</p>
<p>I wrote about the 2009 session<a href="http://www.allenkinsel.com/archive/2010/01/pass-processes-and-results-posted/"> evaluations </a>previously</p>
<p>The other surveys were tallied and the results reviewed to see what we could do better, and to see what we're doing well as an organization.  I hope to write about some of these results later.</p>
<h3>Summit Session Evals</h3>
<p>I've written about this one<a href="http://www.allenkinsel.com/archive/2010/01/pass-processes-and-results-posted/"> before</a>.  We had some technical difficulties with this one this year and I hope to iron it out.  One of the bigger mistakes we made this year was tossing the session attendance counts, its a long story exactly how it exactly happened but its already been remedied for 2010.  If this affected you, I am sincerely sorry.  PASS also uses this info to gauge many things so its a multisided loss.  We've got some great ideas cooking on more effective ways to give feedback to speakers from attendees, and as soon as we have something a bit more concrete I'll write about that too.</p>
<h3>Software selection/creation</h3>
<p>We are currently trying to decide on a direction to go with our Summit software, Its no secret that there have been issues in our current vendors software/DVD's, and we're exploring a few options (build vs buy etc) at the moment.  Once we have a decision Ill give an update.  Suffice it to say that a decision as important as this one is not easily made and we've had at least 20 hours of phone conferences (demo's included) and emails likely numbering past the hundreds about this.  We might be working through it a bit too much but, we have to get this right as the summit software is one of the largeer interfaces we have at PASS, between HQ-Speakers-attendees-volunteers-etc-etc.</p>
<h3>Establishing the 2010 Program committee</h3>
<p>We began working on updating the applications and handbooks that are required for the program committee, the application was tweaked a bit this year, and the handbook was freshened up a bit as well.  <a href="http://www.zoomerang.com/Survey/WEB22A79RB8ZSZ">Volunteer</a> applications are being accepted through Feb 22nd.  Im happy to say that so far we've had 35+ applications, while we wont need 35 people to review abstracts (the most popular job) Im 100% certain we can make use of all the volunteers, if we get a few people that are willing to make the next step and offer some help with leadership, Ive written a bit about this<a href="http://www.allenkinsel.com/archive/2010/02/call-for-program-committee-volunteers/"> before</a></p>
<h3>Speaker Bureau/Speaker terms</h3>
<p>I set out a small group of volunteers with the task of redoing the speaker terms to allow for more &laquo;sharing of information&raquo; (opt out) between the Summit Speakers and the PASS Chapters.  Ive written about this<a href="http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/"> before</a> and <a href="http://www.sqlandy.com/archive/pass-update-22-speaker-bureau-call-for-comments/">Andy Warren</a> has the lead on the actual implementation of this project, we were trying to enable him a bit and hopefully have succeeded.</p>
<h3>Establish 2010 Summit Critical Dates</h3>
<p>We have a pretty firm grasp of the steps it takes to put on a <a href="http://summit2010.sqlpass.org">Summit</a> but, every year we have to go over the steps and make adjustments.  We also need to adjust the dates for the current year in order to make the process work.  Now that the dates are mostly set, We have essentially kicked the rock down the hill.  Once that happens, the deadlines seem to pile up.</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/02/call-for-program-committee-volunteers/" title="Permanent link to this post">Call for Program Committee Volunteers</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/your-relationship-with-your-professional-organization/" title="Permanent link to this post">Your relationship with your professional organization</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/" title="Permanent link to this post">Program committee task--Speaker terms revisited</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-program-committee-defined/" title="Permanent link to this post">PASS Program Committee--Defined</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-processes-and-results-posted/" title="Permanent link to this post">PASS Processes and Results posted</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/fdeC3SpUo5Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/02/pass-tps-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/02/pass-tps-1/</feedburner:origLink></item>
		<item>
		<title>SQL/Windows Clustering Stupidity</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/DHGMZ9PN9Ms/</link>
		<comments>http://www.allenkinsel.com/archive/2010/02/sql-windows-clustering-stupidity/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 16:04:16 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Things that make you crazy]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=316</guid>
		<description><![CDATA[When is high availibility not? 
When its any version of SQL running on a clustered Windows 2003 Server or sql 2005 running on clustered Windows 2008 Server.  Seems that while you can dynamically add a disk and use it in SQL when your running a standalone server, if your running in a &#171;highly availiable&#187; cluster configuration you [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://www.flickr.com/photos/callumalden/22897663/"><img src="http://www.allenkinsel.com/wp-content/uploads/2010/02/win98-300x225.jpg" alt="Win98 300x225" class="alignright size-medium wp-image-325" title="win98" alt="" width="300" height="225" /></a>When is high availibility not? </h3>
<p>When its any version of SQL running on a clustered Windows 2003 Server or sql 2005 running on clustered Windows 2008 Server.  Seems that while you can dynamically add a disk and use it in SQL when your running a standalone server, if your running in a &laquo;highly availiable&raquo; cluster configuration you have to take SQL offline to add the disk as a dependency in order to be able to use it within SQL.  Here's the <a href="http://msdn.microsoft.com/en-us/library/ms177447(SQL.90).aspx">proof</a> right from SQL books online.</p>
<p>Im sure there was a good reason to require this at the time but clearly this wasnt thought out in the grand scheme of taking 0 downtime.  Anytime a single server has a more highly availiable architecture than your system that is designed for high availibility --&gt;youre doing it wrong, Sorry someone had to say it</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/02/sql-active-directory-user-id-sid-mismapings/" title="Permanent link to this post">SQL Active Directory User ID SID Mismapings</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/how-did-i-get-here/" title="Permanent link to this post">How did I get here?</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/how-do-you-do-disaster-recovery/" title="Permanent link to this post">How do you do Disaster Recovery</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/using-aliases-in-sql-server/" title="Permanent link to this post">Using Aliases with SQL Server</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/11/a-new-blog-is-born/" title="Permanent link to this post">A new blog is born</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/DHGMZ9PN9Ms" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/02/sql-windows-clustering-stupidity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/02/sql-windows-clustering-stupidity/</feedburner:origLink></item>
		<item>
		<title>SQL Active Directory User ID SID Mismapings</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/V6OEK3meXDk/</link>
		<comments>http://www.allenkinsel.com/archive/2010/02/sql-active-directory-user-id-sid-mismapings/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 14:10:52 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Logins]]></category>
		<category><![CDATA[SID]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=262</guid>
		<description><![CDATA[Sometimes login mapping issues exist where you least expect them
This is not the traditional SQL login SID mismap issue that is frequently encountered and discussed here. This mismap was a new one on me so I thought id document it.  
When trying to add a new Windows login for SQL Server 2005 or 2008 [...]]]></description>
			<content:encoded><![CDATA[<h2>Sometimes login mapping issues exist where you least expect them</h2>
<p>This is not the traditional SQL login SID mismap issue that is frequently encountered and discussed <a href="http://sqlblog.com/blogs/greg_low/archive/2009/02/02/much-ado-about-logins-and-sids.aspx">here</a>. This mismap was a new one on me so I thought id document it.  </p>
<p>When trying to add a new Windows login for SQL Server 2005 or 2008 (probably earlier versions but not tested) you may wind up with this error message</p>
<p><span style="color: #ff0000;">Msg 15025, Level 16, State 2, Line 1</span></p>
<pre><span style="color: #ff0000;">The server principal 'DXXXX\UXXX' already exists.</span></pre>
<p>Contrary to the error message, If we need to proove the account doesnt exist, the following code should suffice</p>
<p><span style=" color: #0000ff;"><span style=" color: #0000ff;"><span style="color: #0000ff;"><span style="color: #0000ff;">select</span></span></span><span style="color: #0000ff;"> </span></span>name <span style="color: #0000ff;"><span style="color: #0000ff;">from</span></span><span style="font-size: x-small;"> </span><span style="color: #008000;"><span style="color: #008000;">sys</span></span><span style="color: #808080;"><span style="color: #808080;">.</span></span><span style="color: #008000;"><span style="color: #008000;">server_principals</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff;"><span style="color: #0000ff;">where</span></span> name <span style="color: #808080;"><span style="color: #808080;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000;"><span style="color: #ff0000;">'DXXXX\UXXX'</span></span></p>
<p>
SQL wont let you create an account because it thinks it already exists, but clearly the account doesnt exist.</p>
<p><h2>How did this happen?</h2>
<p>If a login was created previously for a windows account that has since been renamed in the active directory you cannot grant the new userid access to the SQL server because the SID already exists in SQL and you cannot duplicate it.  This occurs when renaming an account in Active directory, because the SID is reused instead of recreated.</p>
<h2>Find the pre-existing SID</h2>
<p>The SID from Active directory can be obtained many ways, the one I use is PsGetsid which can be obtained <a href="http://technet.microsoft.com/en-us/sysinternals/bb897417.aspx">here</a> the syntax you'd use for this is</p>
<pre>PsGetSid DOMAIN\USER (or DXXXX\UXXX from earlier)</pre>
<p>
This will return the SID in the SDDL Format of S-x-x-x-x
<p>
Unfortunately SQL Stores the binary representation of the SID not the SDDL format.  You have several choices to do the mapping, you can hand figure out the SDDL mappings from sys.server_principals using <a href="http://blogs.msdn.com/oldnewthing/archive/2004/03/15/89753.aspx" target="_blank">this page </a> Or the better way -&gt; <a href="http://www.sqlservercentral.com/Authors/Scripts/Todd_Engen/368791/">Todd Engen</a> had found some need to convert this before and designed a great function to do this conversion from binary to SDDL , im only going to list it here for completeness, the original is found <a href="http://www.sqlservercentral.com/scripts/SID/62274/">here</a><br />
<pre><ol>
<li>CREATE FUNCTION fn_SIDToString</li><li>(</li><li>@BinSID AS VARBINARY(100)</li><li>)</p></li><li>RETURNS VARCHAR(100)</li><li>AS BEGIN</li><li> </li><li>  IF LEN(@BinSID) % 4 &lt;&gt; 0 RETURN(NULL)</li><li> </li><li>  DECLARE @StringSID VARCHAR(100)</li><li>  DECLARE @i AS INT</li><li>  DECLARE @j AS INT</li><li> </li><li>  SELECT @StringSID = 'S-'</li><li>     + CONVERT(VARCHAR, CONVERT(INT, CONVERT(VARBINARY, SUBSTRING(@BinSID, 1, 1))))</li><li>  SELECT @StringSID = @StringSID + '-'</li><li>     + CONVERT(VARCHAR, CONVERT(INT, CONVERT(VARBINARY, SUBSTRING(@BinSID, 3, 6))))</li><li> </li><li>  SET @j = 9</li><li>  SET @i = LEN(@BinSID)</li><li> </li><li>  WHILE @j &lt; @i</li><li>  BEGIN</li><li>    DECLARE @val BINARY(4)</li><li>    SELECT @val = SUBSTRING(@BinSID, @j, 4)</li><li>    SELECT @StringSID = @StringSID + '-'</li><li>      + CONVERT(VARCHAR, CONVERT(BIGINT, CONVERT(VARBINARY, REVERSE(CONVERT(VARBINARY, @val)))))</li><li>    SET @j = @j + 4</li><li>  END</li><li>  RETURN ( @StringSID )</li><li>END</li><li><p> </li>
</ol></pre>
</p>
<p>After creating this function use it like so</p>
<p><span style="font-size: x-small; color: #0000ff;"><span style="color: #0000ff;"><font size="2" color="#0000ff"><font size="2" color="#0000ff">select</font></font></span><font size="2" color="#0000ff"> </font></span>name <span style="color: #0000ff;"><span style="color: #0000ff;">from</span></span><span style="font-size: x-small;"> </span><span style="color: #008000;"><span style="color: #008000;">sys</span></span><span style="color: #808080;"><span style="color: #808080;">.</span></span><span style="color: #008000;"><span style="color: #008000;">server_principals</span></span><span style="color: #0000ff;"><span style="color: #0000ff;"> where </span></span>dbo<span style="color: #808080;"><span style="color: #808080;">.</span></span>fn_SIDToString<span style="color: #808080;"><span style="color: #808080;">(</span></span><span style="color: #0000ff;"><span style="color: #0000ff;">sid</span></span><span style="color: #808080;"><span style="color: #808080;">)</span></span><span style="<span style="color: #808080;"><span style="color: #808080;">=</span></span><span style="color: #ff0000;">'S-X-X-X-X' </span>where the 'S-X-X-X-X' is the SID obtained earlier from PsGetSid</p>
<p>
This should return the name of the user that has the offending &laquo;duplicate&raquo; SID</p>
<p>
Once you know the logon ID that has been renamed you can script out the permissions of that ID (hopefully it doesn't own any objects), drop it, and recreate it with the appropriate name and grant any additional permissions</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/01/how-did-i-get-here/" title="Permanent link to this post">How did I get here?</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/how-do-you-do-disaster-recovery/" title="Permanent link to this post">How do you do Disaster Recovery</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/using-aliases-in-sql-server/" title="Permanent link to this post">Using Aliases with SQL Server</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/11/a-new-blog-is-born/" title="Permanent link to this post">A new blog is born</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/02/your-relationship-with-your-professional-organization/" title="Permanent link to this post">Your relationship with your professional organization</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/V6OEK3meXDk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/02/sql-active-directory-user-id-sid-mismapings/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/02/sql-active-directory-user-id-sid-mismapings/</feedburner:origLink></item>
		<item>
		<title>Call for Program Committee Volunteers</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/PH8aICa_Auc/</link>
		<comments>http://www.allenkinsel.com/archive/2010/02/call-for-program-committee-volunteers/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 06:14:02 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Volunteer]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=245</guid>
		<description><![CDATA[The 2010 PASS Program Committee Call for volunteers is open, We're looking for the usual assortment of people to help shape the summit in 2010.
Abstract Reviews
Ever wanted to have an input into which sessions are actually chosen for the summitt?  The group of volunteers who do this are chosen from these applications. Its a very [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.allenkinsel.com/wp-content/uploads/2010/02/spidey.jpg"><img src="http://www.allenkinsel.com/wp-content/uploads/2010/02/spidey-300x225.jpg" alt="Spidey 300x225" class="alignright size-medium wp-image-247" title="We need an army" alt="" width="300" height="225" /></a>The 2010 <a href="http://sqlpass.org">PASS</a> Program Committee Call for volunteers is <a href="http://www.zoomerang.com/Survey/WEB22A79RB8ZSZ">open</a>, We're looking for the usual assortment of people to help shape the summit in 2010.</p>
<h2>Abstract Reviews</h2>
<p>Ever wanted to have an input into which sessions are actually chosen for the summitt?  The group of volunteers who do this are chosen from these applications. Its a very challenging endeavor but also very rewarding.</p>
<h2>Special Projects</h2>
<p>There are literally dozens of separate projects that need to happen every year in order for the Summit to come together appropriately.  Things like setting up the mgmt software, reviewing the ppts, reviewing the chosen abstracts for grammatical errors etc.  These people will also be chosen primarily from the applications received</p>
<h2>Leadership</h2>
<p>We need a couple of people who want to be involved in the PASS Program committee at a higher level, who have the time available to commit.  No prior leadership experience is necessarily required, although it would likely be helpful.  The only way we can succeed on a higher level this year is if we can get a few good people who are ready and willing to commit that extra bit and can help.  Also, I have to admit there is a somewhat selfish motive here, I dont see myself staying in this current position forever, and the only way I can move on within PASS (and sleep at night) is if I can start training my replacement.</p>
<h6>Application</h6>
<p>If your interested in any of this head on over to the <a href="http://www.zoomerang.com/Survey/WEB22A79RB8ZSZ">survey/application</a>.  The application period this year closes on the 22nd of Feb.  So please do it now while your thinking about it!!</p>
<p>Image thanks to <a href="http://www.flickr.com/photos/kurioso/">kev/null</a></p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/02/your-relationship-with-your-professional-organization/" title="Permanent link to this post">Your relationship with your professional organization</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/" title="Permanent link to this post">Program committee task--Speaker terms revisited</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-program-committee-defined/" title="Permanent link to this post">PASS Program Committee--Defined</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-processes-and-results-posted/" title="Permanent link to this post">PASS Processes and Results posted</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/12/happy-holidays-tis-the-season/" title="Permanent link to this post">Happy Holidays, Tis the Season in review!</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/PH8aICa_Auc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/02/call-for-program-committee-volunteers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/02/call-for-program-committee-volunteers/</feedburner:origLink></item>
		<item>
		<title>Your relationship with your professional organization</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/53_3EEqwvNE/</link>
		<comments>http://www.allenkinsel.com/archive/2010/02/your-relationship-with-your-professional-organization/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 11:00:40 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Volunteer]]></category>
		<category><![CDATA[tsql2sday]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=236</guid>
		<description><![CDATA[Do you have a relationship with your professional organization?
What is your professional organization?  is it in technology?  Something like Ineta, PASS, ISUG, IDUG, IOUG or one of the other various technology groups that exist.  Or maybe your preferred group is more in the business side of things like ASPA,  LOMA or AICPA.  If you dont [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have a relationship with your professional organization?</p>
<p>What is your professional organization?  is it in technology?  Something like <a href="http://ineta.org">Ineta</a>, <a href="http://sqlpass.org">PASS</a>, <a href="http://ISUG.org">ISUG</a>, <a href="http://IDUG.org">IDUG</a>, <a href="http://IOUG.org">IOUG </a>or one of the other various technology groups that exist.  Or maybe your preferred group is more in the business side of things like <a href="http://aspa.org">ASPA</a>, <a href="http://loma.org"> LOMA</a> or <a href="http://aicpa.org">AICPA</a>.  If you dont know your desired professional organization, take a second and plug in your favorite search terms + professional organization into &laquo;binoogle&raquo; and see if the results lead you to a new beginning.</p>
<h3>Expectations</h3>
<p>If you already know your professional organization, what do you expect of your relationship with your organization?  Is it a two way street?  Do you give as well as receive?  Would you like the relationship between you and that organization to be stronger or weaker?  Do they do enough to help you succeed, do they provide value?  Do you do what you can to enable their success?  A little overly rhetorical probably, but you get the point.</p>
<h3>Relationships</h3>
<p>Every professional organization (that I know of) requires many dedicated volunteers to succeed.  The more help they have the more work they can get done and thus the more value that can be provided to the members (thats you and me!!)  The relationship between members and the professional organization is certainly a two way street and both sides need to be at their best in order for either to succeed but, normally the relationship is onesided where the members gain more from the organization than the organization gains from the members, thats why there are thousands of members and hundreds of volunteers.   If your involved in an organization, do they get the help they need and use it appropriately?  Do you appreciate them?  Do they appreciate you?  is it worth it?</p>
<h3>How can you add value to the relationship?</h3>
<p>No matter what you do, or what your interests are I bet there exists an organization that could use your help.  Why not step up today and offer your services?  No matter what level your skills are, beginner, or Grand Jedi Master, you too can help your chosen org bring more value to its members.</p>
<p>This post is part of the <a href="http://msmvps.com/blogs/robfarley/archive/2010/02/02/invitation-for-t-sql-tuesday-003-relationships.aspx">Tsql Tuesday</a> series</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/" title="Permanent link to this post">Program committee task--Speaker terms revisited</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-program-committee-defined/" title="Permanent link to this post">PASS Program Committee--Defined</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-processes-and-results-posted/" title="Permanent link to this post">PASS Processes and Results posted</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/12/happy-holidays-tis-the-season/" title="Permanent link to this post">Happy Holidays, Tis the Season in review!</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/11/a-call-to-arms-sqlpass-arms-that-is/" title="Permanent link to this post">A call to arms, SQLPASS arms that is</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/53_3EEqwvNE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/02/your-relationship-with-your-professional-organization/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/02/your-relationship-with-your-professional-organization/</feedburner:origLink></item>
		<item>
		<title>Program committee task--Speaker terms revisited</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/gTSYFmQgfI8/</link>
		<comments>http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 15:00:49 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Volunteer]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=213</guid>
		<description><![CDATA[This one has been sitting on my to do list for a very very long time, actually its been on my list since nearly the day after the 2009 SQLPASS Summit closed.
Admittedly Im not a PASS &#171;Chapter leader&#187;, nor do I attend the meetings in person more than a few times a year (its 3 [...]]]></description>
			<content:encoded><![CDATA[<p>This one has been sitting on my to do list for a very very long time, actually its been on my list since nearly the day after the 2009 SQLPASS Summit closed.</p>
<p>Admittedly Im not a PASS &laquo;Chapter leader&raquo;, nor do I attend the meetings in person more than a few times a year (its 3 hrs roundtrip to the local group during lunch) but, Im always looking for ways we can improve processes at PASS and Ive heard too many times to count over the years that we dont do a good job of helping chapters connect with speakers, or even providing a way for the chapters to contact potential speakers.</p>
<p>The other day I contacted Andy Warren about an idea I had for getting a simple speaker bureau off the ground reasonably quick since I know he's had that on his mind lately.  I'd like to think that <a href="http://www.sqlandy.com/archive/pass-update-22-speaker-bureau-call-for-comments/" target="_blank">his post</a> on that subject was  part of the fruits of that brainstorming session but, Ill never know.  In order to make some of the things we want to do for the community &laquo;easier&raquo; we need to rework (in a small way) the speaker terms and conditions to allow for it.</p>
<h3>Speaker Terms</h3>
<p>Every speaker who presents at the PASS Summit is required to sign a contract that protects PASS as well as the speakers, its pretty simple really, even I can read and understand it.  What id like to do is integrate a few &laquo;optional&raquo; opt in type items that would give PASS the ability to manage the connection between speakers, their submitted abstracts and the chapters that need speakers.  The other day, I had to tell the <a href="http://appdev.sqlpass.org/" target="_blank">Appdev VC</a> that I couldnt refer speakers to them nor could I contact a few speakers on their behalf because we had never asked if we could contact the speakers in situations like that.  I suspect many speakers would be ok with occasional contact from PASS HQ when speakers are needed.  This should at least give us the ability to do a better job of making that connection</p>
<h3>Help needed</h3>
<p>I need a couple of people to hopefully form a small group &amp; decide how best to accomplish this goal.  With any luck someone out there would also like to lead this small group in making this happen.</p>
<p>leave a comment here or contact me at <script type="text/javascript">var username = "Allen.Kinsel"; var hostname = "sqlpass.org";document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + username + "@" + hostname + "<\/a>")</script> if you're interested in helping</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-program-committee-defined/" title="Permanent link to this post">PASS Program Committee--Defined</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-processes-and-results-posted/" title="Permanent link to this post">PASS Processes and Results posted</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/12/happy-holidays-tis-the-season/" title="Permanent link to this post">Happy Holidays, Tis the Season in review!</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/11/a-call-to-arms-sqlpass-arms-that-is/" title="Permanent link to this post">A call to arms, SQLPASS arms that is</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/11/sql-karaoke-volunteering-and-sqlpass/" title="Permanent link to this post">SQL Karaoke, Volunteering and SQLPASS</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/gTSYFmQgfI8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/01/program-committee-task-speaker-terms-revisited/</feedburner:origLink></item>
		<item>
		<title>PASS Program Committee--Defined</title>
		<link>http://feedproxy.google.com/~r/AllenKinsel-SqlDba/~3/3ff6SsqtZuo/</link>
		<comments>http://www.allenkinsel.com/archive/2010/01/pass-program-committee-defined/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 13:50:26 +0000</pubDate>
		<dc:creator>Allen Kinsel</dc:creator>
				<category><![CDATA[SQLPASS]]></category>
		<category><![CDATA[Volunteer]]></category>

		<guid isPermaLink="false">http://www.allenkinsel.com/?p=197</guid>
		<description><![CDATA[I get asked quite frequently about the different PASS committee's and how a person goes about volunteering for them.  I thought I'd take a little time and explain what the program committee does and a little about how they do it.
The program committee
The current program committee could easily be renamed &#171;The Summit Committee&#187;.  This group [...]]]></description>
			<content:encoded><![CDATA[<p>I get asked quite frequently about the different PASS committee's and how a person goes about volunteering for them.  I thought I'd take a little time and explain what the program committee does and a little about how they do it.</p>
<h4>The program committee</h4>
<p>The current program committee could easily be renamed &laquo;The Summit Committee&raquo;.  This group of community volunteers are responsible for most pieces of education at the annual SQLPASS Summit.</p>
<h4>Committee Members</h4>
<p>Every year PASS sends out a call for volunteers for the program committee (usually in Jan-Feb).  This call is actually quite formal with a few questions asked in an online survey.  The answers to these questions are used to match volunteers to tasks within the committee</p>
<h5>The Program Committee Structure 2010</h5>
<p>PASS Board Member (2010 Jeremiah Peschka)</p>
<p style="padding-left: 30px;">PASS HQ Elena Sebastiano &amp; Craig Ellis</p>
<blockquote style="padding-left: 30px;"></blockquote>
<p style="padding-left: 60px;">Program Manager (2009-2010 Allen Kinsel)</p>
<blockquote style="padding-left: 60px;"></blockquote>
<p style="padding-left: 60px;">Program Leaders (2 or 3 for lg projects)</p>
<p style="padding-left: 90px;">
Abstract review team members<br />
Tasked team members</p>
<blockquote>
<blockquote></blockquote>
</blockquote>
<blockquote>
<ul></ul>
</blockquote>
<h3>PASS BOD Member</h3>
<p>The program committee always has a BOD member in charge of overseeing everything, they are usually expected to come up with great ideas, keep everything running smoothly and handle the &laquo;problems&raquo; as they arrise.  Actually the BOD members that get tricked into taking over program are very involved in so many decisions I don't even know what they are!</p>
<h3>PASS HQ</h3>
<p>These 2 are the backbone of &laquo;getting things done&raquo; and making sure we volunteers stay on task and on schedule.  In program, as with most high profile projects, once the deadlines start they never seem to stop and if they start to slip its not good for anyone!</p>
<h3>Program Manager</h3>
<p>Thats my current job, I wish I could find a job description.  Id surely like to see it!  Essentially, I like to consider myself the glue that holds the group together and keeps us moving in the right direction.  Sort of like a project manager that actually works on the work of a project &lt;zing&gt;</p>
<h3>Program Management/leaders</h3>
<p>These are high level volunteers that work to meet more difficult goals.  Such as define criteria and make selections of pre/post-con Sessions and spotlight sessions.  Develop speaker resources, develop better evaluation procedures and various other similar things.</p>
<h3>Abstract review teams</h3>
<p>This group of volunteers, usually 11 people, is split up into teams by track (DBA, BID, BIA, AD, PD) This group gets the daunting task of reading and ranking every single submitted abstract.  Then they are asked to choose not only the accepted sessions but alternate sessions.  This process is several months long and the bulk of the work usually happens from Mar-May</p>
<h3>Tasked Teams</h3>
<p>This year I intend to change the requirements of the volunteers on the committee and split up the work a little more.  Every year the program committee is asked to do more work since the conference grows annually.  So, I've been looking for ways to split the work up even more.  This has 2 benefits, one its less work for any one person or group of people.  Two, it allows more people to get involved in a great organization.</p>
<p>This year I hope to pull together several task based groups (with leaders) to do things such as pull the session evaluation data together for all years available (2005 onward), review the session powerpoints, revamp the speaker terms, design and test our &gt;proposed&lt; new summit speaker tool, group abstracts, and several other tasks.  There should be plenty of work to go around the biggest issue I normally run into is finding volunteers willing to take on leadership of these tasks which leads me to my 2010 program goals.</p>
<p><strong>Goals for 2010</strong> -- I have 1 goal other than a successful summit program, that is to recruit several people into leadership positions within the program committee.  It is my opinion that the only way everything PASS needs to accomplish will get done is if I can find a few good volunteers willing to lead tasks &amp; projects.</p>
<p>
<strong>Related posts</strong>:
<br /><a href="http://www.allenkinsel.com/archive/2010/01/pass-processes-and-results-posted/" title="Permanent link to this post">PASS Processes and Results posted</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/12/happy-holidays-tis-the-season/" title="Permanent link to this post">Happy Holidays, Tis the Season in review!</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/11/a-call-to-arms-sqlpass-arms-that-is/" title="Permanent link to this post">A call to arms, SQLPASS arms that is</a>
<br /><a href="http://www.allenkinsel.com/archive/2009/11/sql-karaoke-volunteering-and-sqlpass/" title="Permanent link to this post">SQL Karaoke, Volunteering and SQLPASS</a>
<br /><a href="http://www.allenkinsel.com/archive/2010/01/how-did-i-get-here/" title="Permanent link to this post">How did I get here?</a>
</p>
<img src="http://feeds.feedburner.com/~r/AllenKinsel-SqlDba/~4/3ff6SsqtZuo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.allenkinsel.com/archive/2010/01/pass-program-committee-defined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.allenkinsel.com/archive/2010/01/pass-program-committee-defined/</feedburner:origLink></item>
	</channel>
</rss>
