File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# dbt-sqlite
3
3
4
- A [ SQLite] ( https://sqlite.org ) adapter plugin for dbt (data build tool)
4
+ A [ SQLite] ( https://sqlite.org ) adapter plugin for [ dbt] ( https://www.getdbt.com/ ) (data build tool)
5
5
6
6
This is an experimental plugin. Please read these docs carefully and
7
7
use at your own risk. Issues and PRs welcome!
8
8
9
9
## The Use Case
10
10
11
- SQLite is an embedded SQL database. It can be a good choice if
12
- your project meets some or all of these criteria:
11
+ SQLite is an embedded SQL database. It comes included with most Python
12
+ distributions and requires no installation or configuration. It can be
13
+ a good choice if your project meets some or all of these criteria:
13
14
14
15
- you store the database file on fast, local storage
15
16
(not on a network drive)
@@ -22,7 +23,6 @@ you're doing ETL vs ELT)
22
23
another database or data warehouse platform
23
24
- you want others to be able to deploy your data build without the
24
25
overhead/cost of a full RDBMS or signing up for a data warehouse platform
25
- (SQLite is included with python and requires no installation)
26
26
27
27
SQLite can be surprisingly fast, despite the query optimizer not being as
28
28
sophisticated as other databases and data warehouse platforms. Tip: materialize
You can’t perform that action at this time.
0 commit comments