Remove memory-optimized-table-variables-in-sql-server
article thumbnail

Memory-Optimized Table Variables in SQL Server

SQL Shack

This article will cover the usage details and performance advantages of the memory-optimized table variables. A table variable is a sort of variable that is used to store data temporarily. In this context, […].

Servers 66
article thumbnail

What is Greenplum Database? Intro to the Big Data Database

Scalegrid

Greenplum Database is a massively parallel processing (MPP) SQL database that is built and based on PostgreSQL. It can scale towards a multi-petabyte level data workload without a single issue, and it allows access to a cluster of powerful servers that will work together within a single SQL interface where you can view all of the data.

Big Data 321
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

Additional T-SQL Improvements in SQL Server 2022

SQL Performance

Recently I covered some of the T-SQL improvements in SQL Server 2022 here , and Aaron Bertrand covered additional improvements here. Microsoft just announced the release of SQL Server 2022 CTP 2.1. This release includes a number of additional interesting T-SQL improvements, which include: The distinct predicate.

Servers 142
article thumbnail

Understanding MySQL Triggers: Exploring How Triggers Impact MySQL Memory Allocation

Percona

MySQL server performance can sometimes be perplexing, and if you’ve ever wondered about the role of triggers in influencing your MySQL server’s memory allocation, this post is for you. These events, known as trigger events, can include actions like inserting, updating, or deleting records in database tables.

Cache 62
article thumbnail

When Do SQL Server Sorts Rewind?

SQL Performance

The canonical example of a plan operator that can rewind is the lazy Table Spool. The documentation says only the following operators can rewind: Table Spool. Table-valued Function. Table-valued functions use a table variable, which can be used to cache and replay results in suitable circumstances.

Servers 106
article thumbnail

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

Percona

MySQL performance tuning offers several significant advantages for effective database management and optimization. Reduced Resource Usage Optimizing resource-intensive queries and configurations can lead to a reduced burden on your server. This post was originally published in June 2020 and was updated in September 2023.

Tuning 52
article thumbnail

Fundamentals of table expressions, Part 3 – Derived tables, optimization considerations

SQL Performance

In Part 1 and Part 2 of this series, I covered the logical, or conceptual, aspects of named table expressions in general, and derived tables specifically. This month and the next I’m going to cover the physical processing aspects of derived tables. Both in terms of terminology and in terms of optimization.

C++ 109