You’ve just been hired into a DBA role at a new company, or you’ve been given the DBA keys at your current company. Maybe you’re a SysAdmin and your boss has informed you that you are now supposed to manage the SQL Servers as well as everything else on your plate. In any of … Continue reading Four Areas to Focus on When You Start A New DBA Role
Everyone wants good performance from their database systems. Some even expect and need a high performing Ferrari all the time. How is this achieved though? What do you need to understand about SQL Server specifically in order to make your company’s applications hum along like a well tuned car? We will look at three keys … Continue reading Three Keys to SQL Server Performance
I recently saw a Tweet from Kendra Little where she asked the simple question, “What got you into databases?” I’m intrigued by people’s stories of how they got into their current careers so I looked through the thread. There were lots of interesting paths shared and even a blog post was shared by someone who … Continue reading How I Became a Database Administrator
In the initial post, we talked about some very basic items to get you up and running with temporal tables. In part 2, I’ll cover a few more things to think about and implement when working with temporal tables. In the first post, we looked at altering an existing table to be a temporal … Continue reading How to Configure SQL Server Temporal Tables Part 2
Temporal tables were a new feature in SQL Server 2016. They allow for the tracking of changes without having to set up change tracking, change data capture or triggers. For certain uses, they are not a replacement for something like change data capture, but would work if the purpose is simply having a record of … Continue reading How to Configure SQL Server Temporal Tables
So, I realize it’s now almost April of 2021 when I’m posting this. Normally this sort of post would come out in January for the previous year. However, I have a reason for this being late and I’ll actually post about that separately. Showing My Blog Some Love In mid-2020 I decided to give my … Continue reading Top 3 Most Popular Posts of 2020
Unable to Start SQL Server In my own local SQL Server I ran across a problem starting the SQL instance. I went to SQL Server configuration Manager and manually started the SQL Server instance. The UI showed the instance had started. I opened SSMS and tried to connect. And I waited, waited and waited … Continue reading Insufficient System Memory – Failed Allocate Pages
Hello dear reader! This is the third post in a series to help you get started automating things with PowerShell. You will be looking at how to start and stop SQL Server using PowerShell as well as setting the Max Server Memory setting, measuring free disk space and more. This series is just an introduction … Continue reading Introduction To PowerShell For The DBA Part 3
In Part 1 of this series we began to look at how you can leverage PowerShell as a DBA and there was a brief discussion about automation. Today you will experiment with the DBATools command Copy-DbaLogin and learn about Out-Gridview and the -whatif switch. Let’s suppose you have one, or more logins you need to … Continue reading Introduction To PowerShell For The DBA Part 2
Automating Tasks With PowerShell What we’re really talking about in this series is automation, specifically by using PowerShell. Now, in simple terms, automation is about removing the human, manual element in doing tasks. Why should you care about that? Automation will provide the following benefits: Automation saves you time Automation provides consistency Automation results … Continue reading Introduction To PowerShell for the DBA Part 1