Implement persist_docs
See original GitHub issuedbt
has a configuration option to persist documentation to the database:
https://docs.getdbt.com/reference/resource-configs/persist_docs
Attempting to use it with the sql server adapter results in:
ERROR: alter_relation_comment macro not implemented for adapter sqlserver
ERROR: alter_column_comment macro not implemented for adapter sqlserver
Feature Request: implement the above
Issue Analytics
- State:
- Created 2 years ago
- Reactions:2
- Comments:7 (1 by maintainers)
Top Results From Across the Web
rt2zz/redux-persist: persist and rehydrate a redux store - GitHub
IMPORTANT Every app needs to decide how many levels of state they want to "merge". The default is 1 level. Please read through...
Read more >persist_docs | dbt Developer Hub
Optionally persist resource descriptions as column and relation comments in the database. By default, documentation persistence is disabled, ...
Read more >The Definitive Guide to Redux Persist - React Native Coach
Implementation. When creating your redux store, pass your createStore function a persistReducer that wraps your app's root reducer.
Read more >Persist state with Redux Persist using Redux Toolkit in React
Let's learn how to use Redux Persist to save the state in persistent storage so that even after a refresh, the data will...
Read more >Redux Persist - React Redux Firebase
Redux Persist. Usage with redux-persist depends on which redux-persist major version you are using. v5. createStore.js import { createStore, compose } from ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I had a need for this feature using MS_Description. A few of our tools use it as default to pull out descriptions such as redgate tools, azure purview and I assume a few others. It may be useful to make MS_Description configurable if there is a need. I’ve attached what is working for us…
@mahazza Thank you for sharing that code!