this post was submitted on 19 Oct 2023
1713 points (98.8% liked)

Programmer Humor

32318 readers
167 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Heavybell@lemmy.world 5 points 1 year ago

MS SQL Server has this thing called Replication. It's a feature to keep tables in sync between databases, and even database servers. There's merge replication (two way), snapshot replication (one way scheduled publishing), and transaction replication (one way live-ish publishing).

And the logic is all implemented in T-SQL stored procedures.

I fucking hate it.