Remove what-is-a-foreign-key-in-sql-server
article thumbnail

Hidden secrets of SQL Server Foreign Keys

SQL Shack

This article will describe the effect of SQL Server foreign keys on query plans which are created by the query optimizer. Introduction Foreign keys are used to enforce the referential integrity between the data of the two tables and are frequently used in relational database designs.

Servers 71
article thumbnail

Five Data-Loading Patterns To Improve Frontend Performance

Smashing Magazine

The resource loading waterfall is a cascade of files downloaded from the network server to the client to load your website from start to finish. What do you see there? There are millions of sites, and you are in close competition with every one of those Google search query results. Three seconds is a very short amount of time.

Cache 125
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

New Metadata-Only Column Changes in SQL Server 2016

SQL Performance

Along with a large number of restrictions on what is even possible with this command, there is always the question of performance. Ultimately, tables are stored as a sequence of bytes with some metadata elsewhere in the system to describe what each of those bytes mean, and how they relate to each of the table's various columns.

Servers 63
article thumbnail

How It Works (It Just Runs Faster): Auto Soft NUMA…

SQL Server According to Bob

Back in June, Bob Dorr gave you the thinking behind why SQL Server 2016 It Just Runs Faster due to changes in our SQL Server and NUMA configurations. Bob blogged about a new SQL Server 2016 feature called Auto Soft NUMA. 144 total logical processors as exposed by the Windows OS and seen by SQL Server.

Servers 45
article thumbnail

NULL complexities – Part 4, Missing standard unique constraint

SQL Performance

In the previous articles ( Part 1 , Part 2 , and Part 3 ), I covered the meaning of the NULL as a marker for a missing value, how NULLs behave in comparisons and in other query elements, and standard NULL handling features that are not yet available in T-SQL. A primary key is not allowed on NULLable columns. Standard UNIQUE constraint.

C++ 135
article thumbnail

PostgreSQL Upgrade: Tricks With OID Columns and Extensions

Percona

Object identifiers (OIDs) are used internally by PostgreSQL as primary keys for various system tables. We are all aware that PostgreSQL 10 has reached end of support , and there is a need to upgrade to the latest version or any application-compatible PG version. Below are some of the upgrade options available to upgrade to PG11 or above.

C++ 98
article thumbnail

Powering PostgreSQL 15 With Columnar Tables

Percona

What is this sizzling feature that I speak of you ask? The key goals of OLTP applications are availability, speed, concurrency, and recoverability. This blog is the result of my investigation into column-wise tables. Hopefully, you will find it useful in your deliberations. The missing sizzle. Column-wise tables! OLTP vs OLAP.