Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Feat pull data #26

Merged
merged 2 commits into from
Jun 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 26 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ Example output:

```
./_sql-database
./data
dbo.easy-lookup.sql
...
./functions/scalar-valued
dbo.complex-math.sql
...
Expand All @@ -78,15 +81,20 @@ Example output:
./tables
dbo.people.sql
...
./views
dbo.super-cool-view.sql
...
./user-defined-types/table-valued-parameters
dbo.insert-people-params.sql
...
./views
dbo.super-cool-view.sql
...
```

## Push (beta)
Data can be included in the `pull` via the `data` glob in the configuration file. All tables included
in the `data` glob will result in a file that truncates the table and inserts all rows. Because a truncate
is issued, it is recommended to only include static data tables, like lookup tables, in the `data`
configuration.

## Push
Execute all local scripts against the requested database.

```bash
Expand Down Expand Up @@ -130,23 +138,32 @@ Configuration options are stored in a `ssc.json` file.
// glob of files to include / exclude (examples: ["dbo.*"] or ["*", "!dbo.*"])
"files": [],

// glob of tables to include / exclude for data scripting (example: ["dbo.LookupTable"])
"data": [],

"output": {

// directory to place scripted files into (relative to config file)
"root": "./_sql-database",

// directory to script data (relative to root)
"data": "./data"

// directory to script procs (relative to root)
"procs": "./stored-procedures",

// directory to script schemas (relative to root)
"schemas": "./schemas",

// directory to script scalar functions (relative to root)
"scalar-valued": "./functions/scalar-valued",

// directory to script schemas (relative to root)
"schemas": "./schemas",

// directory to script table functions (relative to root)
"table-valued": "./functions/table-valued",

// directory to script table-valued parameters (relative to root)
"table-valued-parameters": "./user-defined-types/table-valued-parameters"

// directory to script tables (relative to root)
"tables": "./tables",

Expand All @@ -155,9 +172,6 @@ Configuration options are stored in a `ssc.json` file.

// directory to script views (relative to root)
"views": "./views"

// directory to script table-valued parameters (relative to root)
"table-valued-parameters": "./user-defined-types/table-valued-parameters"
},

"idempotency": {
Expand All @@ -166,10 +180,10 @@ Configuration options are stored in a `ssc.json` file.
"procs": "if-exists-drop",
"scalar-valued": "if-exists-drop",
"table-valued": "if-exists-drop",
"table-valued-parameters": "if-not-exists",
"tables": "if-not-exists",
"triggers": "if-exists-drop",
"views": "if-exists-drop",
"table-valued-parameters": "if-not-exists";
"views": "if-exists-drop"
}
}
```
Expand Down
Loading