-
Notifications
You must be signed in to change notification settings - Fork 2
/
db_topics.txt
53 lines (53 loc) · 1017 Bytes
/
db_topics.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
- What is a DB
- Topography:
- Schema
- Tables
- Primary Key
- You choose
- DB chooses
- Composite
- Naming (plural)
- Columns
- Naming
- singular
- id vs tablename_id
- Types
- Why JSON blobs are bad m'kay
- Normalization
- Why it's good.
- When it's ok to fudge
- SQL
- CREATE
- INSERT
- UPDATE
- DELETE
- SELECT
- Transactions
- Atomicity
- Rollbacks
- Different Implementations of an RDBMs
- SQLite
- Single file (bottleneck)
- Perfectly fine for local
- MySQL
- PostgreSQL
- Postgis/Geo-spatial
- ORACLE (proprietary)
- Not even once. JJ, but really, why?
- Fancy new NoSQL
- Good for
- Not good for
- Advanced Topics:
- Performance
- EXPLAIN
- Indexes
- What?
- Why?
- Gist/Gin (Postgres)
- Btree
- Migrations
- Master/Slave
- Replication
- Readonly/Readwrite
- Sharding
- Backups