Skip to content

Commit b7cf72f

Browse files
committed
added adventureworks database
1 parent ec63752 commit b7cf72f

File tree

3 files changed

+3324
-0
lines changed

3 files changed

+3324
-0
lines changed

adventureworks/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Adventureworks from SQL Server
2+
3+
Commands:
4+
5+
```
6+
unzip data.zip # this will unzip all csv to the current directory
7+
psql -c "CREATE DATABASE \"adventureworks\";"
8+
psql -d Adventureworks < install.sql
9+
```
10+
11+
To see list of tables
12+
13+
```
14+
\c "Adventureworks"
15+
\dt (humanresources|person|production|purchasing|sales).*
16+
```
17+
18+
19+
Credits: [lorint-AdventureWorks for Postgres](https://github.com/lorint/AdventureWorks-for-Postgres)

adventureworks/data.zip

18 MB
Binary file not shown.

0 commit comments

Comments
 (0)