Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelene committed Jul 4, 2019
1 parent 3bca1d7 commit 9996f3a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# dbt-sqlserver
https://www.getdbt.com/ adapter for sql server. Based on pymssql.

Only supports dbt 0.14!

Easiest install is to use pip:

pip install git+https://github.com/mikaelene/dbt-sqlserver#egg=dbt_sqlserver
Expand All @@ -17,10 +19,35 @@ Easiest install is to use pip:
database: databasename
schema: schemaname

- Tables will be materialized as columns store index by default. To override specify:
## Supported features

### Materializations
- Table:
- Will be materialized as columns store index by default (requires SQL Server 2017 as least). To override specify:
{{
config(
as_columnstore = false,
)
}}
- View
- Incremental


- Ephemeral: NOT SUPPORTED!

### Seeds

### Hooks

### Custom schemas

### Sources

### Testing & documentation
- Unique: Is the only test tested so far. The rest will be tested and added if possible soon.

- Docs

### Snapshots
- Timestamp
- Check
4 changes: 2 additions & 2 deletions dbt_sqlserver.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Metadata-Version: 2.1
Name: dbt-sqlserver
Version: 0.1.0
Summary: The sqlserver adpter plugin for dbt (data build tool)
Home-page: UNKNOWN
Home-page: https://github.com/mikaelene/dbt-sqlserver
Author: Mikael Ene
Author-email: [email protected]
License: UNKNOWN
License: MIT
Description: The sqlserver adpter plugin for dbt (data build tool)
Platform: UNKNOWN
Description-Content-Type: text/markdown
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
long_description_content_type='text/markdown',
author="Mikael Ene",
author_email="[email protected]",
url="",
url="https://github.com/mikaelene/dbt-sqlserver",
packages=find_packages(),
package_data={
'dbt': [
Expand Down

0 comments on commit 9996f3a

Please sign in to comment.