Remove sql-server-update-statistics-using-database-maintenance-plans
article thumbnail

SQL Server Update Statistics using database maintenance plans

SQL Shack

This article explores SQL Server Update Statistics using the database maintenance plan. Introduction SQL Server query optimizer uses statistics to build an optimized execution plan.

article thumbnail

PostgreSQL Vacuuming to Optimize Database Performance and Reclaim Space

Percona

In PostgreSQL, vacuuming is a maintenance task that helps to optimize database performance and reclaim space. It involves removing deleted or outdated rows from tables and indexes and updating statistics used by the query planner. When a row is updated or deleted, it is not immediately removed from the table.

Database 106
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Reducing PostgreSQL Costs in the Cloud

Percona

If you’re using PostgreSQL in the cloud, there’s a good chance you’re spending more than you need in order to get the results you need for your business. Usage reduction: What to look for to reduce PostgreSQL cloud costs The first step in cost reduction is to use what you need and not more. Don’t pay for capacity you don’t use or need.

Cloud 118
article thumbnail

Tracking Synchronous Statistics Updates

SQL Performance

The SQL Server query optimizer makes use of statistics during query compilation to help determine the optimal query plan. The Problem With Synchronous Statistics Updates. How many statistics for each of those tables have to be updated because they’re needed for compilation. Introduction.

Servers 55
article thumbnail

MySQL Performance Tuning 101: Key Tips to Improve MySQL Database Performance

Percona

This post was originally published in June 2020 and was updated in September 2023. Depending on the version of MySQL you are running , some of the default values used in this post may differ from your install, but the premise is still largely the same. Experiencing database performance issues?

Tuning 52
article thumbnail

Common SQL Server Mishaps

SQL Performance

I've been teaching and writing about common SQL Server mistakes for many years. This article will expand on my previous article and point out how these apply to SQL Server , Azure SQL Database , and Azure SQL Managed Instance. Statistics. Index maintenance. SQL Server Agent alerts.

Servers 49
article thumbnail

The Ultimate Guide to MySQL Partitions

Percona

This blog was originally published in July 2017 and was updated in August 2023. Partitioning is a way in which a database (MySQL in this case) splits its actual data down into separate tables but still gets treated as a single table by the SQL layer. Using partitioning in a MySQL 5.7 So, What is MySQL Partitioning?