(Jason Brimhall) Quality data is a goal we all strive to attain. Nobody wants to have bad data. Yet, despite our best efforts, the problem of bad data has its way of presenting itself over and over again.
Tag: sql server
tempdb Enhancements in SQL Server 2019
(Erin Stellato) I have been making the same recommendations about tempdb since I started working with SQL Server over 15 years ago, when I was working with customers running version 2000.
SQL SERVER – Swap Column Values In Table
(Pinal Dave) Some questions never got old and today’s we are going to discuss a similar question which was asked to me during Comprehensive Database Performance Health Check. The question was about how to swap column values in a table.
Powershell script – Get the total table count of all databases in multiple SQL Server Instances
(Jack Vamvas) To get the total table count of all databases in either one or more SQL Server Instances use this powershell script.
Moving a disk in Azure that’s in Managed Storage
(Denny Cherry) We’ve been using Azure for several years now at DCAC. Back when we started in Azure their were no PaaS services for MySQL (there was but it was stupid expensive, and from a third party).
Finding primary keys and missing primary keys in SQL Server
(Greg Robidoux) One design aspect that all tables should have is a primary key. The primary key is the main entry way into your dataset, so that when you access your data you are guaranteed to only affect one row of data.
Moving Databases into Azure SQL Elastic Pools
(blobeater) Quite a simple requirement (when I needed it a few months ago). Study my Azure SQL database environment below.
Applying Transaction Logs to the Secondary Replica in SQL Server Always On Availability Groups
(Rajendra Gupta) SQL Server Always On Availability Groups provides HADR solutions for the SQL databases. Here HA refers to high availability and DR refers to disaster recovery.
What is in My Database Backup File
(Gregory Larsen) Suppose you are a new DBA in an environment. You are tasked with restoring a database, but you don’t have a single clue as to what is in any of the database backup files.
Impact of DBCC DROPCLEANBUFFERS on Memory – SQL in Sixty Seconds #085
(Pinal Dave) Some concepts are so good in SQL Server, they keep on coming back to me one way or another way. After reading my recent blog posts about DBCC DROPCLEANBUFFERS lots of people wanted to see the demonstration of the same.