Skip to main content

MagicPASS September meeting

I spoke at the MagicPASS September User Group meeting in Celebration, FL.

Kendal Van Dyke (b|t) does a great job running this group.

Home-cooked meals for attendees! Need I say more? But, I will. 

The Disney Vacation Club provides an excellent facility.

I liked the MagicPASS meeting format. They have a pre-meeting and a main meeting. I spoke during the main meeting at 7:30 PM. The meal is served between the two meetings. Baked ziti and salad. Nom, nom, nom.

During the pre-meeting, the presentation was a recording from the PASS Performance Virtual Chapter. This is a great idea because it makes attendees aware that virtual chapters exist and they get a chance to see a presentation that maybe they didn't get to see. I had seen this one. Oh, well.

Another informative agenda item in the pre-meeting is "Industry News".  Kendal talked about upcoming service packs, cumulative updates, and critical patches. He asked if anyone was using Ola Hallengren's scripts. (YES!) Then, he described an issue he had with the scripts caused by a memory leak in one of the SQL Server components that is fixed by a recent CU. Kendal also shared his experience on a recent trip to VMWare. I learned DBAs should have READ access to vSphere ( I do.) and that if you turn the correct "nerd knobs", SQL Server runs pretty well on VMWare. This is WHY I go to user group meetings! I always learn something I didn't know.

My take-away from this meeting is that I need to have a clear view of my notes in Presenter view. My laptop was on a table instead of on a podium and I think this caused too many hesitations in my talk at the beginning because I would pause to bend over and check my notes.  I like to stand when presenting instead of sitting. I'll need to expand the font size of the notes or commit more to memory.

The next day, I figured out how to increase the font size of the notes in Presenter View. 

It takes just over an hour to drive to the MagicPASS meeting location from my house so I'd be willing to do it again for the "Happiest SQL User Group on Earth". 
Thank you Kendal and MagicPASS for having me! 

I'll be there the next time you have tacos. ;-)

Comments

Popular posts from this blog

Modifying Endpoint URLs on Availability Group Replicas

I recently had to modify the Endpoint URLs on our SQL Server Availability Group replicas.  The reason for this blog post is that I could not answer the following questions: Do I need to suspend data movement prior to making this change?  Would this change require a restart of the database instance? I spent enough time searching on my own to no avail that I tossed the question to the #sqlhelp hashtag on Twitter and Slack but didn't get an answer prior to executing the change request. After reading the relevant documentation, I think it's probably a good idea to suspend data movement for this change. The T-SQL is straightforward.  USE MASTER GO ALTER AVAILABILITY GROUP [AG1]  MODIFY REPLICA ON 'SQL2012-1' WITH (ENDPOINT_URL = 'TCP://10.10.10.1:5022'); ALTER AVAILABILITY GROUP [AG1]  MODIFY REPLICA ON 'SQL2012-2' WITH (ENDPOINT_URL = 'TCP://10.10.10.2:5022'); ALTER AVAILABILITY GROUP [AG2]  MODIFY REPLICA ON 'SQL2012-1

Set Azure App Service Platform Configuration to 64 bit.

If you need to update several Azure App Services' Configuration to change the Platform setting from 32 bit to 64 bit under Configuration | General settings, this script will save you about six clicks per service and you won't forget to press the SAVE button. Ask me I know. 🙄 Login-AzureRmAccount Set-AzureRmContext  -SubscriptionName  "Your Subscription" $ResourceGroupName  =  'RG1' ,  'RG2', 'RG3' foreach  ( $g   in   $ResourceGroupName ) {       # Set PROD slot to use 64 bit Platform Setting      Get-AzureRmWebApp  -ResourceGroupName  $g  | Select Name |  %  {  Set-AzureRmWebApp  -ResourceGroupName  $g  -Name  $_ .Name  -Use32BitWorkerProcess  $false  }       # Set staging slot to use 64 bit Platform setting      Get-AzureRmWebApp  -ResourceGroupName  $g  | Select Name |  %  {  Set-AzureRmWebAppSlot  -ResourceGroupName  $g  -Name  $_ .Name  -Slot  "staging"  -Use32BitWorkerProcess  $false  }  }

AzureRM Templates 101

I've recently started working with AzureRM templates to build new environments. This document really helped me understand the template structure when I first started looking at them. https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-authoring-templates I love examples when I'm trying to learn something new and the Quick Start templates are the mother lode.  https://github.com/Azure/azure-quickstart-templates Our goal is to incorporate our templates into an Azure Blueprint so that we can quickly build new environments when needed.  AzureRM templates can be artifacts of a blueprint. https://docs.microsoft.com/en-us/azure/governance/blueprints/overview