SQL sample file
sql_sample_file_5MB.sql
5.0 MB
application/sql
SHA256 verified
File details
Filename
sql_sample_file_5MB.sqlSize5.0 MB (5242939 bytes)
MIME type
application/sqlExtension
.sqlSHA256
e0f2e0dd2951618679a5466b711a79851d86c5d1fec2883ab69e1e646bb658c3Download commands
Use in scripts and tests
curl -L -o sql_sample_file_5MB.sql \
https://samplefile.com/samples/download/data/sql/sql_sample_file_5MB.sql/
wget -O sql_sample_file_5MB.sql \
https://samplefile.com/samples/download/data/sql/sql_sample_file_5MB.sql/
import requests
url = "https://samplefile.com/samples/download/data/sql/sql_sample_file_5MB.sql/"
resp = requests.get(url)
with open("sql_sample_file_5MB.sql", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/sql/sql_sample_file_5MB.sql/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("sql_sample_file_5MB.sql", buf);
# Download and verify SHA256
curl -L -o sql_sample_file_5MB.sql https://samplefile.com/samples/download/data/sql/sql_sample_file_5MB.sql/
echo "e0f2e0dd2951618679a5466b711a79851d86c5d1fec2883ab69e1e646bb658c3 sql_sample_file_5MB.sql" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/sql/sql_sample_file_5MB.sql/").content
assert hashlib.sha256(data).hexdigest() == "e0f2e0dd2951618679a5466b711a79851d86c5d1fec2883ab69e1e646bb658c3"
More SQL files
Other SQL Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
sql_reporting_query_sample.sql |
167 B | dcc281eba014b4db… |
Download |
sql_sample_file_100MB 2.sql |
100.0 MB | 20492a4d0d84f8be… |
Download |
sql_sample_file_100MB 3.sql |
100.0 MB | b59ccbfd84222a03… |
Download |
sql_sample_file_100MB.sql |
100.0 MB | b59ccbfd84222a03… |
Download |
sql_sample_file_1MB.sql |
1.0 MB | 37a73fc2d97ac25e… |
Download |
sql_sample_file_200KB.sql |
200.0 KB | 30355e9822b3f93d… |
Download |
Learn more