<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
	>

<channel>
	<title>Community Archives - DBAduck</title>
	<atom:link href="https://www.dbaduck.com/category/community/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dbaduck.com/category/community/</link>
	<description>DBA</description>
	<lastBuildDate>Tue, 10 Mar 2026 18:29:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.dbaduck.com/wp-content/uploads/2013/12/cropped-dbaducklogo-2-32x32.png</url>
	<title>Community Archives - DBAduck</title>
	<link>https://www.dbaduck.com/category/community/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Contained Availability Groups using DbMail Query</title>
		<link>https://www.dbaduck.com/contained-availability-groups-using-dbmail-query/</link>
					<comments>https://www.dbaduck.com/contained-availability-groups-using-dbmail-query/#comments</comments>
		
		<dc:creator><![CDATA[dbaduck]]></dc:creator>
		<pubDate>Sun, 13 Oct 2024 18:03:44 +0000</pubDate>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Availability Groups]]></category>
		<category><![CDATA[Fixes]]></category>
		<guid isPermaLink="false">https://www.dbaduck.com/?p=4767</guid>

					<description><![CDATA[<p>Call to action for Microsoft. Contained Availability Groups came out in SQL 2022 and they definitely have their use. But there were some artifacts left behind that need some fixing. Namely when you use DBMail while in the Availability Group jobs or operations. Let&#8217;s see what there is left. First, here is the link to [&#8230;]</p>
<p>The post <a href="https://www.dbaduck.com/contained-availability-groups-using-dbmail-query/">Contained Availability Groups using DbMail Query</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Call to action for Microsoft. Contained Availability Groups came out in SQL 2022 and they definitely have their use. But there were some artifacts left behind that need some fixing. Namely when you use DBMail while in the Availability Group jobs or operations. Let&#8217;s see what there is left.</p>



<p>First, here is the link to the <a href="https://feedback.azure.com/d365community/idea/e2454e20-3d80-ef11-a4e5-000d3a01397d">Feedback Item</a> that is out there for voting to get Microsoft to fix this issue. There has already been an issue fixed with the msdb proc to activate dbmail in a Contained AG ([dbo].[sp_sysmail_activate]). </p>



<h3 class="wp-block-heading" id="h-what-is-the-issue">What is the Issue?</h3>



<p>The issue is that within a Contained AG the master and msdb are actually named AGNAME_master and AGNAME_msdb which in the procedures mentioned use the following code which uses the original msdb database instead of the AGNAME_msdb database.</p>



<pre class="wp-block-code"><code>-- sp_RunMailQuery is used to run a query result into the mail message
SET @mailDbName = db_name() -- which will return msdb instead of AGNAME_msdb</code></pre>



<p>The fix is to have this code instead so that it uses the real database name since it is in a contained availability  group which makes the AGNAME_msdb look like msdb when connected to the AG Listener. See below.</p>



<pre class="wp-block-code"><code>-- Note: we cannot use DB_NAME() here since this SP could be running in the context
    -- of a contained AG: in that case, we really want to fetch the physical name of the DB
    SELECT @mailDbName = physical_database_name FROM sys.databases WHERE database_id = DB_ID()
    SET @mailDbId   = DB_ID()</code></pre>



<p>Notice how the database name instead of just being DB_NAME() it is using the physical_database_name that is in sys.databases for this DB_ID()?  This is the fix. You can make the fix yourself until <a href="https://www.microsoft.com">Microsoft</a> gets to it in the feedback item.</p>



<p>If you have not applied the <a href="https://www.microsoft.com/en-us/download/details.aspx?id=105013">latest SQL 2022 CU</a> to your servers and you run a Contained Availability Group, then you should look to update your server so that you have the most up to date fixes in SQL Server. So far this fix is not in a CU, but the previous one for dbo.sp_sysmail_activate has been fixed in one of the CUs previously.</p>
<p>The post <a href="https://www.dbaduck.com/contained-availability-groups-using-dbmail-query/">Contained Availability Groups using DbMail Query</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbaduck.com/contained-availability-groups-using-dbmail-query/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>PASS Data Community Summit Presentations part 2</title>
		<link>https://www.dbaduck.com/pass-data-community-summit-presentations-part-2/</link>
					<comments>https://www.dbaduck.com/pass-data-community-summit-presentations-part-2/#respond</comments>
		
		<dc:creator><![CDATA[dbaduck]]></dc:creator>
		<pubDate>Tue, 21 Nov 2023 03:19:01 +0000</pubDate>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[PASS Summit]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SQLServer]]></category>
		<guid isPermaLink="false">https://www.dbaduck.com/?p=4753</guid>

					<description><![CDATA[<p>To all who came to my PASS Summit sessions and those that gave feedback about my presentations, I say Thank You! I read the feedback and understand the comments made. Based on the feedback I am adding a Part 2 for both presentations. Add PowerShell to your DBA Toolbox! and SQL Server 2022 Contained Availability [&#8230;]</p>
<p>The post <a href="https://www.dbaduck.com/pass-data-community-summit-presentations-part-2/">PASS Data Community Summit Presentations part 2</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>To all who came to my PASS Summit sessions and those that gave feedback about my presentations, I say Thank You!</p>



<figure class="wp-block-image size-large is-resized"><img fetchpriority="high" decoding="async" width="1024" height="758" src="https://www.dbaduck.com/wp-content/uploads/2023/11/6d0cca0c10cb6972d8675d3f51581b77-1024x758.jpg" alt="" class="wp-image-4754" style="aspect-ratio:1.3509234828496042;width:273px;height:auto" srcset="https://www.dbaduck.com/wp-content/uploads/2023/11/6d0cca0c10cb6972d8675d3f51581b77-1024x758.jpg 1024w, https://www.dbaduck.com/wp-content/uploads/2023/11/6d0cca0c10cb6972d8675d3f51581b77-300x222.jpg 300w, https://www.dbaduck.com/wp-content/uploads/2023/11/6d0cca0c10cb6972d8675d3f51581b77-768x568.jpg 768w, https://www.dbaduck.com/wp-content/uploads/2023/11/6d0cca0c10cb6972d8675d3f51581b77-1536x1137.jpg 1536w, https://www.dbaduck.com/wp-content/uploads/2023/11/6d0cca0c10cb6972d8675d3f51581b77.jpg 2000w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>I read the feedback and understand the comments made. Based on the feedback I am adding a Part 2 for both presentations. <strong>Add PowerShell to your DBA Toolbox!</strong> and <strong>SQL Server 2022 Contained Availability Groups</strong>. I am going to be completing the presentations on <a href="https://twitch.tv/dbaduck">Twitch.tv/dbaduck</a> on November 27th at 3:00 PM MDT. </p>



<p>The presentations are <a href="https://www.dbaduck.com/presentations/">linked here</a>.</p>



<p>I will be covering a more deep level of PowerShell for DBAs to complete the more basic side of PowerShell that I presented. If you have any questions that are related please post them to <a href="https://pollgab.com/room/dbaduck">https://pollgab.com/room/dbaduck</a> so that I can address them as part of the broadcast. I would love it if you wanted to attend live to ask the questions in the chat window.</p>



<p>As I said before, I thank you all for your feedback and your attendance and this is why feedback is so important. None of it was brutal but sincere and to the point. I appreciate the opportunity to resolve feedback that I received. I hope to see you there.</p>
<p>The post <a href="https://www.dbaduck.com/pass-data-community-summit-presentations-part-2/">PASS Data Community Summit Presentations part 2</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbaduck.com/pass-data-community-summit-presentations-part-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ola Hallengren Maintenance part 1</title>
		<link>https://www.dbaduck.com/ola-hallengren-maintenance-part-1/</link>
					<comments>https://www.dbaduck.com/ola-hallengren-maintenance-part-1/#comments</comments>
		
		<dc:creator><![CDATA[dbaduck]]></dc:creator>
		<pubDate>Tue, 31 Jan 2023 20:40:35 +0000</pubDate>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://www.dbaduck.com/?p=4708</guid>

					<description><![CDATA[<p>Many of us are using Ola Hallengren&#8217;s maintenance solution. This post will assist you in configuring this solution when you add it to your SQL Servers. Jobs are created with this solution. You download it at the link above. I recommended creating a database to use for this solution or even installing it into an [&#8230;]</p>
<p>The post <a href="https://www.dbaduck.com/ola-hallengren-maintenance-part-1/">Ola Hallengren Maintenance part 1</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Many of us are using <a href="https://ola.hallengren.com">Ola Hallengren&#8217;s maintenance solution</a>.</p>



<p>This post will assist you in configuring this solution when you add it to your SQL Servers. Jobs are created with this solution. You download it at the link above.</p>



<ul class="wp-block-list">
<li>Backup Jobs for System and User databases</li>



<li>Database Integrity jobs for System and User Databases</li>



<li>Cleanup jobs for Command Log and Output Files</li>
</ul>



<p>I recommended creating a database to use for this solution or even installing it into an existing DBA function database. I usually create a DBA database and use it for this purpose and others as well. With this new database, you configure the Database in the header of the maintenance solution SQL file, whether to create jobs, retention time and backup directory for the jobs.</p>



<div class="wp-block-urvanov-syntax-highlighter-code-block"><pre class="urvanov-syntax-highlighter-plain-tag">USE [master] -- Specify the database in which the objects will be created.

SET NOCOUNT ON

DECLARE @CreateJobs nvarchar(max)          = 'Y'         -- Specify whether jobs should be created.
DECLARE @BackupDirectory nvarchar(max)     = NULL        -- Specify the backup root directory. If no directory is specified, the default backup directory is used.
DECLARE @CleanupTime int                   = NULL        -- Time in hours, after which backup files are deleted. If no time is specified, then no backup files are deleted.
DECLARE @OutputFileDirectory nvarchar(max) = NULL        -- Specify the output file directory. If no directory is specified, then the SQL Server error log directory is used.
DECLARE @LogToTable nvarchar(max)          = 'Y'         -- Log commands to a table.</pre></div>



<h3 class="wp-block-heading" id="h-parameters-to-fill-out">Parameters to Fill Out</h3>



<p>Pay close attention to the highlighted lines:<br>The database name you created is put in the USE statement and the following items are created in that database:</p>



<ul class="wp-block-list">
<li>CommandLog table</li>



<li>Stored Procedures that are in the solution</li>
</ul>



<p>I use the DBA database here, which keeps it out of System databases and in an isolated place.</p>



<p>The @CreateJobs variable specifies whether or not the create the jobs. If you already have it installed, turning that off is easy, you just change it to an &#8216;N&#8217; and it will merely update the code so that you have the latest version.</p>



<p>Next is @BackupDirectory which is where you specify the database backup location you want to use for the backups. If you do not specify this one, then the default is used. The default location is in the Database Settings tab of the Server Properties in SSMS.</p>



<p>Next is @CleanupTime and it is specified in hours. If you want to clean up the backup files after 1 week, you specify 168 as the hours for cleanup time. This number is put in all the Backup jobs that are created.</p>



<p>Last but not least, is the @OutputFileDirectory which specifies the folder for the output files that are on each step in the Ola jobs. If not specified, it will default to the LOG directory specified in the startup of SQL Server. The SQL Server Errorlogs are kept in that folder. I usually leave the parameter to be NULL to leave the output files there.</p>



<p>The @LogToTable parameter is configured as &#8216;Y&#8217; because this is going to be put in the jobs as well to ensure that the work that is done in this solution is logged in the dbo.CommandLog table in the specified database.</p>



<p>In the code block below, the data is filled out so you can see what it looks like and the jobs get created with these settings as their defaults. The stored procedures are created in the specified database as well.</p>



<div class="wp-block-urvanov-syntax-highlighter-code-block"><pre class="urvanov-syntax-highlighter-plain-tag">USE [DBA] -- Specify the database in which the objects will be created.

SET NOCOUNT ON

DECLARE @CreateJobs nvarchar(max)          = 'Y'         -- Specify whether jobs should be created.
DECLARE @BackupDirectory nvarchar(max)     = '\\server\share'    -- Specify the backup root directory. If no directory is specified, the default backup directory is used.
DECLARE @CleanupTime int                   = 168        -- Time in hours, after which backup files are deleted. If no time is specified, then no backup files are deleted.
DECLARE @OutputFileDirectory nvarchar(max) = NULL        -- Specify the output file directory. If no directory is specified, then the SQL Server error log directory is used.
DECLARE @LogToTable nvarchar(max)          = 'Y'         -- Log commands to a table.</pre></div>



<h3 class="wp-block-heading" id="h-conclusion">Conclusion</h3>



<p>It is important to remember that this solution creates jobs that have a structure and at <a href="https:.//ola.hallengren.com">https:.//ola.hallengren.com</a> the documentation has a full complement of examples of how to configure these jobs with parameters. The items that you need to ensure are configured include @LogToTable = &#8216;Y&#8217; and @Compress = &#8216;Y&#8217; so that you get it logged to the table and the database backups are compressed. If you omit the @Compress parameter then it will rely on the server setting to compress backups by default. Never rely on a setting that can be changed with or without your knowledge.</p>



<p>This part was not meant to be 100% comprehensive, but to ensure that you have information of how to install the jobs and solution, other parts are going to go into more depth so that you can see how to use it in the real world.</p>
<p>The post <a href="https://www.dbaduck.com/ola-hallengren-maintenance-part-1/">Ola Hallengren Maintenance part 1</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbaduck.com/ola-hallengren-maintenance-part-1/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Join me at SQL Intersections for a great lineup this year!</title>
		<link>https://www.dbaduck.com/join-me-at-sql-intersections-for-a-great-lineup-this-year/</link>
					<comments>https://www.dbaduck.com/join-me-at-sql-intersections-for-a-great-lineup-this-year/#comments</comments>
		
		<dc:creator><![CDATA[dbaduck]]></dc:creator>
		<pubDate>Fri, 29 Jan 2016 05:46:46 +0000</pubDate>
				<category><![CDATA[Community]]></category>
		<guid isPermaLink="false">http://dbaduck.wpengine.com/?p=222</guid>

					<description><![CDATA[<p>In April, I will be at SQLintersection at the Walt Disney World Swan in Lake Buena Vista, Florida. This year, you can save $50 on attending by using my last name (MILLER) as the promo code, AND if you register by January 31st, you may be eligible for free hardware as well – a Microsoft Band [&#8230;]</p>
<p>The post <a href="https://www.dbaduck.com/join-me-at-sql-intersections-for-a-great-lineup-this-year/">Join me at SQL Intersections for a great lineup this year!</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" style="float: right; width: 250px!important; margin: 0px 0px 10px 20px;" src="http://dbaduck.wpengine.com/wp-content/uploads/2016/01/SQLintersection-300x250.gif" alt="SQLintersection" /><br />
In April, I will be at <a href="http://sqlintersection.com/" target="_blank" rel="noopener noreferrer">SQLintersection</a> at the Walt Disney World Swan in Lake Buena Vista, Florida.</p>
<p>This year, you can save $50 on attending by using my last name (<strong>MILLER</strong>) as the promo code, AND if you register by January 31st, you may be eligible for free hardware as well – a Microsoft Band 2, a Surface 3, or an XBox One.</p>
<p>You can visit the site to see the full lineup of <a href="http://sqlintersection.com/#!/SQL-Conference/sessions" target="_blank" rel="noopener noreferrer">sessions</a> and <a href="http://sqlintersection.com/#!/SQL-Conference/workshops" target="_blank" rel="noopener noreferrer">workshops</a>. I&#8217;m going to be presenting two 200-level sessions on PowerShell and Encryption and a Workshop on PowerShell:</p>
<p><strong>SQL Server Encryption</strong><br />
Have you ever wanted to know how Transparent Database Encryption (TDE) works or how you set it up? What about encrypting your backups? This session will go over all the steps and caveats that go with this technology. TDE allows you to have your database encrypted on disk and the same Encryption Hierarchy allows you to back up your database and have it encrypt the contents in the backup file. We will discuss the Encryption Hierarchy which is used for encryption in SQL Server and take you through keeping your secrets safe. Master the concepts of SQL Server Encryption when you are done with this session.</p>
<p><strong>SMO Internals for High Performance Automation using PowerShell</strong><br />
In today’s fast paced world, automation is becoming a necessity and not a luxury. PowerShell is a powerful tool that allows you to leverage Windows objects and coupled with SMO you have the power to connect to SQL Server objects. This is all great, but not understanding how SMO works, you could find that your automations are not as fast as you would hope, when accessing SQL Server. This session will take you beneath the surface and demonstrate the secret sauce that will help you get the most out of your SQL Server automation scripts and have them perform. Understanding is the key here and we will get you there in this session. Let’s take your automation to infinity and beyond.</p>
<p><strong>WORKSHOP ON MONDAY, APRIL 18, 2016</strong></p>
<p><strong>PowerShell for the DBA from 0-60 in a Day</strong><br />
Think of how many servers or instances you maintain. Putting tools in your toolbox becomes a critical part of your life as a DBA. How many clicks can be reused? We will be taking you from 0&#8211;60 and everywhere in between with how PowerShell fits into a DBA’s day in the life. We will go from getting PowerShell connected to SQL Server to walking away with a toolbox starter kit that will help you get automated and allow you to focus on harder problems than modifying database options or getting information from SQL Server and storing it away for later analysis. The toolbox alone will make it well worth your attendance.</p>
<p>Join me in the quest to become a PowerShell DBA.</p>
<p>Hope to see you there!</p>
<p>The post <a href="https://www.dbaduck.com/join-me-at-sql-intersections-for-a-great-lineup-this-year/">Join me at SQL Intersections for a great lineup this year!</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbaduck.com/join-me-at-sql-intersections-for-a-great-lineup-this-year/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Utah Code Camp 2015 Presentations</title>
		<link>https://www.dbaduck.com/utah-code-camp-2015-presentations/</link>
					<comments>https://www.dbaduck.com/utah-code-camp-2015-presentations/#respond</comments>
		
		<dc:creator><![CDATA[dbaduck]]></dc:creator>
		<pubDate>Mon, 23 Mar 2015 02:21:39 +0000</pubDate>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Powershell]]></category>
		<guid isPermaLink="false">http://dbaduck.wpengine.com/?p=190</guid>

					<description><![CDATA[<p>Sorry I am so late, but Thanks to all those that attended my sessions at the Code Camp. Utah Geek Events has been good to me and I want to make sure that everyone gets the presentation materials and the demo files. Links are below. Hope you enjoy. See you again next year. Starting Out [&#8230;]</p>
<p>The post <a href="https://www.dbaduck.com/utah-code-camp-2015-presentations/">Utah Code Camp 2015 Presentations</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Sorry I am so late, but Thanks to all those that attended my sessions at the Code Camp.  <a href="http://www.utahgeekevents.com" title="Utah Geek Events" target="_blank" rel="noopener noreferrer">Utah Geek Events</a> has been good to me and I want to make sure that everyone gets the presentation materials and the demo files. Links are below.  Hope you enjoy.<br />
See you again next year.</p>
<p><a href="https://s3.amazonaws.com/stodayfiles/Starting+Out+with+PowerShell.zip" title="Starting out with PowerShell" target="_blank" rel="noopener noreferrer">Starting Out with PowerShell</a></p>
<p><a href="https://s3.amazonaws.com/stodayfiles/Be+Friendly+to+SQL+Server+Demo+Scripts.zip" title="Be Friendly to SQL Server" target="_blank" rel="noopener noreferrer">Be Friendly to SQL Server</a></p>
<p>The post <a href="https://www.dbaduck.com/utah-code-camp-2015-presentations/">Utah Code Camp 2015 Presentations</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbaduck.com/utah-code-camp-2015-presentations/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>T-SQL Tuesday #61–Giving Back</title>
		<link>https://www.dbaduck.com/t-sql-tuesday-61giving-back/</link>
					<comments>https://www.dbaduck.com/t-sql-tuesday-61giving-back/#comments</comments>
		
		<dc:creator><![CDATA[dbaduck]]></dc:creator>
		<pubDate>Tue, 09 Dec 2014 03:47:11 +0000</pubDate>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[TSQLTuesday]]></category>
		<guid isPermaLink="false">http://www.dbaduck.com/?p=184</guid>

					<description><![CDATA[<p>I like this topic because I think about it all the time.&#160; I have learned so much from others and I am trying each year to ensure that I give back by speaking at SQL Saturday’s across the country.&#160; No one pays for my trips (most of the time) but it is the least I [&#8230;]</p>
<p>The post <a href="https://www.dbaduck.com/t-sql-tuesday-61giving-back/">T-SQL Tuesday #61–Giving Back</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://blog.waynesheffield.com/wayne/archive/2014/12/t-sql-tuesday-61-giving-back/" target="_blank" rel="noopener noreferrer"><img decoding="async" title="TSQL2sDay150x150" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: right; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="TSQL2sDay150x150" src="https://www.dbaduck.com/wp-content/uploads/2014/12/TSQL2sDay150x150.jpg" width="154" align="right" height="154"/></a></p>
<p>I like this topic because I think about it all the time.&nbsp; I have learned so much from others and I am trying each year to ensure that I give back by speaking at <a href="http://www.sqlsaturday.com" target="_blank" rel="noopener noreferrer">SQL Saturday’s</a> across the country.&nbsp; No one pays for my trips (most of the time) but it is the least I can do for those that have helped me in my career.</p>
<p>Giving back is so much more than just speaking or giving a gift, it is about helping someone replace you in the Community. Mentoring, speaking, teaching and leading.&nbsp; I lead my <a href="http://utahcountysql.sqlpass.org" target="_blank" rel="noopener noreferrer">SQL Server User Group</a> locally with another <a href="http://larsrasmussen.blogspot.com/" target="_blank" rel="noopener noreferrer">awesome guy</a> and I speak at local events thanks to <a href="http://sqlasylum.wordpress.com/" target="_blank" rel="noopener noreferrer">another great guy</a>. In our town we have <a href="http://www.utahgeekevents.com" target="_blank" rel="noopener noreferrer">Utah Geek Events</a> run by <a href="http://sqlasylum.wordpress.com" target="_blank" rel="noopener noreferrer">Pat Wright</a> who keeps us full of opportunities to give back. I just cannot get enough.</p>
<p>So this year will be full of speaking, leading the group and attending the other <a href="http://slcsql.com" target="_blank" rel="noopener noreferrer">User Group locally</a> </p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:583905d2-6dc0-48f4-b519-88434c48a221" class="wlWriterEditableSmartContent" style="float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px">Technorati Tags: <a href="http://technorati.com/tags/TSQLTuesday" rel="tag">TSQLTuesday</a>,<a href="http://technorati.com/tags/SQL" rel="tag">SQL</a></div>
<p> to ensure that I am available. Not for love given to me but to ensure that if I have experience that someone needs, that I am there to share with no strings, no ego and no agenda. That is how I will give back this year.</p>
<p>I hope to blog more and get more articles written and to support just a little bit more than last year so that people looking to learn will have yet another place to go to get some help. Thanks to all those that have helped me along the way, most of you know who you are and the list would be way too long to list here and I would for sure leave someone out and I would never do that to my #SQLFamily.</p>
<p>Happy Holidays and see you around.</p>
<p>The post <a href="https://www.dbaduck.com/t-sql-tuesday-61giving-back/">T-SQL Tuesday #61–Giving Back</a> appeared first on <a href="https://www.dbaduck.com">DBAduck</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dbaduck.com/t-sql-tuesday-61giving-back/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
