Be Careful with Missing Index Requests
Steve reminds people today that the recommendations from execution plans aren't always what you want to use when tuning your database.
Steve reminds people today that the recommendations from execution plans aren't always what you want to use when tuning your database.
If you aspire to drive Database DevOps at your company, regardless of the sector you work in, this webinar provides a unique opportunity to learn from experts in the finance sector who have successfully paved the way. Join us December 6th.
Learn about various PowerShell commands that can be used to administer virtual machines on Amazon AWS.
Someone generated a fake speaker profile for their conference, which Steve finds disturbing.
Learn the basics of how to work with objects in Cassandra, a NoSQL database.
In this level of the Stairway to Database DevOps, you'll get an introduction to branching and merging. Learn how to create a branch for making your changes to the codebase, submitting these in a code review, and then merging the changes into those made by other developers.
If you are considering moving into management as a career goal, read today's editorial from Steve, with some advice based on an interesting article from someone with experience at Facebook and Stripe.
We are excited to share that there are several Accelerated Database Recovery enhancements in SQL Server 2022.
On social media, I asked folks, “Why haven’t you disabled the SA account in your SQL Servers? Wrong answers only.” The results were pretty funny:
With new vehicles becoming more and more computerized and controlled, is data privacy an issue?
By Steve Jones
Next week is the 2024 PASS Data Community Summit in Seattle. I’ll be traveling...
By Steve Jones
bye-over – n. the sheepish casual vibe between two people who’ve shred an emotional...
I’m hosting a free webinar at MSSQLTips.com at the 19th of December 2024, 6PM...
Comments posted to this topic are about the item PASS Summit Time
I have a backup of full, differential and transaction log setup for our database....
Hello everyone, I hope you can help me. I have a table with measurement...
I have run this on SQL Server 2022 for the Sales database:
ALTER DATABASE Sales SET AUTO_CREATE_STATISTICS ON (INCREMENTAL = ON)I then run this in the Sales database:
USE Sales GO CREATE STATISTICS CustomerStats1 ON dbo.Customer (CustomerKey, EmailAddress) WITH INCREMENTAL = OFFThe dbo.Customer table is partitioned. How are statistics created? See possible answers