- REFERENCE9 min read
So you want Database Versioning?
Here at DoltHub, we've had a lot of success with our "So you want..." series of blog posts helping people find Dolt when they are looking for it. Dolt is a lot of things. Dolt is a version controlled database, a Git database, Git for data, data…
Read More
- 4 min read
How to Convince Your DBA to Run Dolt
This article goes over the common questions we hear from teams before they adopt Dolt. The article provides our standard answers.
Read More - 6 min read
Getting started with Keycloak OIDC
Keycloak is an excellent open-source identity provider with built-in OIDC authentication support. Today's post demonstrates how you can get started quickly with a Keycloak deployment of your own, both locally and remotely!
Read More - INTEGRATION7 min read
Vault Works with Dolt
A demonstration of configuring Vault to provide federated access with temporary credentials to a Dolt sql-server
Read More - SALES6 min read
Selling Software: White Glove Onboarding
When someone signs up for DoltHub, we do research on their email address then send a non-automated email from Brian with me cc'ed. If it's a work email, I send a follow up.
Read More - REFERENCE8 min read
How Dolt Scales to Millions of Versions, Branches, and Rows
Dolt scales to millions of versions, branches, and rows. Dolt uses a Git-style commit graph and a novel data structure called a Prolly Tree to achieve this feat.
Read More - REFERENCE9 min read
Column Tags
Dolt tables have a hidden field for each column in a table called a column tag. Hopefully, most users won't ever have to deal with column tags but in some cases, working with column tags is necessary. This article explains.
Read More - FEATURE RELEASE3 min read
Enable Dolt Archives with Automatic Garbage Collection
We've added the ability to enable Dolt Archives with Automatic Garbage Collection. Find out how!
Read More - DOLTGRES3 min read
SHOW statements in Doltgres
Doltgres supports SQL extensions to examine your schema elements in any SQL client. This blog post demonstrates how to use them.
Read More - REFERENCE6 min read
Dolt for Beginners: Working Set and Staging
Dolt models its version control functionality after Git, including working sets and staging areas. These Git-specific concepts can be tricky for beginners coming to Dolt from other SQL databases. This article explains the concepts with examples.
Read More - GOLANG7 min read
Generating Golang Source Files at Build-Time with go:generate
go:generate was designed to solve a very specific problem. Does it succeed?
Read More - USE CASE5 min read
Customer Per Branch
A very common Dolt usage pattern is what we call customer per branch. The main branch of your Dolt database is used for schema and domain data. Each customer's data is stored on a separate customer-specific branch. Customer-specific data is isolated, preventing accidental modification and simplifying queries.
Read More - 2 min read
Stored Procedures V2
Dolt is a version controlled database, think if Git and MySQL had a baby. Our goal is to have Dolt be a drop-in replacement to MySQL; this includes support for Stored Procedures. A Brief History Stored procedures were initially introduced ...
Read More - DOLTGRES2 min read
Doltgres compatibility update: UPDATE .. RETURNING
Recent updates to Doltgres compatibility for Postgres extensions to UPDATE
Read More - AI12 min read
Are Coding Agents One PageRank Away From Awesome?
After using Cursor to try and solve simple issues in our open source project, Dolt, this technology reminds me of searching the web in 1998. It's one step function improvement away from being awesome.
Read More - INTEGRATION18 min read
ProxySQL Works with Dolt
In today's post we dive into how you can run ProxySQL in front of a Dolt read-replication cluster.
Read More - 10 min read
Understanding Homebrew, the Version-Controlled Package Manager
What happens when your dependency stops working how you expect... but only on Mac?
Read More - DOLTGRESSQL4 min read
Doltgres Now Supports Triggers
We're continuing to make progress on DoltgreSQL , which is a version of Dolt built to be a drop-in replacement for PostgreSQL . Dolt is a MySQL compatible database that is built from the ground up with Git-influenced version control featu...
Read More - SALES7 min read
Selling Software: Conferences
Trade shows or conferences are sales events we reluctantly spend money on even though our attendance has not generated a single sale. Why do we keep going?
Read More - REFERENCE4 min read
Dolt for Beginners: SQL Insert, Update, and Delete
Dolt is a Structured Query Language (SQL) database. This article goes over basic SQL INSERT, UPDATE and DELETE queries used to modify data in a Dolt database.
Read More - REFERENCESQL13 min read
Anatomy Of A SQL Engine
May marks five years since Dolt adopted go-mysql-server . Today we summarize the current state of GMS by walking through a query's journey from parsing to result spooling. Overview SQL engines are the logical layer of a database that sit...
Read More