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.
2023-11-13
If you’ve been in Azure or Amazon for a few years, you’re probably on old, slow hardware.
2023-11-13
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
2023-11-13
The 2023 First-Timer guide to the PASS Data Community Summit is available from Edwin Sarmiento
2023-11-10
557 reads
Learn the basics of Apache Druid and how it can be used to ingest data into a data lake.
2023-11-10
14,381 reads
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.
2023-11-10
Learn how to use the notebook feature of Azure Data Studio to keep a set of queries together with some documentation.
2023-11-09 (first published: 2019-04-11)
19,699 reads
New solution allows developers and teams to “buy the base and rent the peak” when provisioning for variable workloads without wastage or performance tradeoffs
2023-11-08
497 reads
Or perhaps another way to phrase that is, Microsoft is up to something with parallelism. I don’t know how long it’s been this way – could even be since the launch of Azure SQL DB Serverless – but I just now noticed it while helping a client with a slow query.
2023-11-08
This article will show the basic outline for how Python scripts can access and work with data in SQL Server.
2023-11-06
11,433 reads
I’ve quietly resolved performance issues by re-writing slow queries to avoid DISTINCT. Often, the DISTINCT is there only to serve as a “join-fixer,” and I can explain what that means using an example.
2023-11-06
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