Host a SQL file and share it as a link
Put a .sql script or dump at a public address — for schema examples, migrations and seed data others need to run.
Drop your SQL file here
Any other file works too — up to 25.0 MB, or 100.0 MB for a whole site
Free to use. Your SQL file is live at your-name.99helpers.site in about ten seconds.
What is a .sql file?
A .sql file is plain text containing SQL statements — a schema definition, a set of migrations, a data dump, or a collection of queries. It's what database tools produce when they export, and what they consume when they import.
What people use SQL files for
- Database schemas shared with a team
- Migration scripts and seed data
- Query examples in documentation and tutorials
- Small database dumps handed to a colleague
What opens a SQL file
- Any browser, which displays it as text
- psql, mysql and every database client
- DBeaver, TablePlus and DataGrip
- VS Code and every developer editor
How to host a SQL file
- 1
Drop your SQL file in
Drag it onto the box at the top of this page, or click to choose it. Files up to 25 MB are supported, and nothing is uploaded until you publish.
- 2
Pick an address
Type a name and we'll tell you straight away whether it's free. That becomes the link: schema.99helpers.site
- 3
Publish and share
Create a free account — that step exists so the file is yours to update, replace or delete — and the link is live within seconds.
The same three steps work for any file — see how file hosting works on 99helpers.com.
What happens when someone opens the link
The script displays as text in the browser, so anyone can read it before running it — which is exactly what people should do with a SQL file someone sent them.
Why host a SQL file instead of emailing it?
SQL scripts get pasted into chat where they're truncated and reformatted, or emailed where they get flagged as suspicious. A link preserves the file exactly and can be curled straight into a database client.
Worth knowing before you publish
- Never host a dump containing real customer data — the URL is public and anyone can download it.
- Strip credentials and connection strings before publishing; they often sit in the header comments of exported scripts.
- For a schema others will run, note which database and version it targets — dialects differ.
SQL hosting questions
- Can I curl a hosted SQL file into a database?
- Yes — the URL serves the raw file, so piping it into psql or mysql works. Worth reading it first, as you would with any script from a URL.
- Is it safe to host a database dump?
- Only if it contains no real data. The link is public and anyone holding it can download the file, so production dumps belong somewhere with access control.
- Will it display in the browser?
- Yes, as text — so people can read the script before deciding to run it.
Put your SQL file online now
It takes about ten seconds, and you only make an account once the file is ready to go live.
Hosting guides for related formats
SQL is one of over 211 formats you can host — see free file hosting for any file type for the full list, or read the hosting guides for other file types.