It’s Probably Time to Upgrade Your Cloud VMs
If you’ve been in Azure or Amazon for a few years, you’re probably on old, slow hardware.
If you’ve been in Azure or Amazon for a few years, you’re probably on old, slow hardware.
While the cloud is recognized as more secure than on-premises servers and infrastructures, it does come with the often talked about shared responsibility model. Cloud providers are responsible for security ‘of’ the cloud, while their clients are responsible for security ‘in’ the cloud. Find out more in this Q&A with Dustin Dorsey
Steve doesn't think you need a degree to work in technology and more companies agree with this all the time.
The 2023 First-Timer guide to the PASS Data Community Summit is available from Edwin Sarmiento
Learn the basics of Apache Druid and how it can be used to ingest data into a data lake.
Is MongoDB in use within your organization? The Flyway development team is adding MongoDB support into Flyway and would like to better understand the current pain points. If you are able help, or are interested in finding out more, please participate in our 5-minute survey.
Learn how to use the notebook feature of Azure Data Studio to keep a set of queries together with some documentation.
In the past, Steve hasn't often felt management considered databases to be important, but that is changing.
Learn the basics of how Dynamic Data Masking can be used to obfuscate data in SQL Server 2016+.
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