Abhishek Singh
Abhishek Singh
@Mirko-T Not sure, if the package gets installed correctly from a git branch in your conda environment The first release cut v1.3.2rc1 is out. You can also test the log...
@Mirko-T @geoHeil I discussed this feature request of affected rowcount with the python driver team and I will keep you posted on the resolution. Meanwhile, I will remove the log...
@geoHeil @Mirko-T For dbt-oracle, you should get the expected row count using thin driver. 1. Set the following environment variable ```python export ORA_PYTHON_DRIVER_TYPE=thin ``` 2. Run dbt ```python dbt run...
@Mirko-T Please note that log line is removed because it was noisy. You will have to verify in `run_results.json`. I have verified `run_results.json` and below is an example of thin...
@johalnes Thank you for reporting this issue. Sorry that you had to go through the trouble. We want to make dbt-oracle simple and easy. I can update the documentation. Default...
@geoHeil Python `None` type translates to `null` in JSON The issue you reported is only the case with database field because of how `database` is [declared](https://github.com/oracle/dbt-oracle/blob/main/dbt/adapters/oracle/connections.py#L53). We could not declare...
@push2prod We have added support for `delete+insert` incremental strategy in upcoming dbt-oracle release 1.7.3 Could you test it with the release candidate ? ``` pip install dbt-oracle==1.7.3rc2 ```
@push2prod Please test `delete+insert` incremental strategy with release 1.7.3 ``` pip install dbt-oracle==1.7.3 ```
@philiphagglund We are working on dbt-oracle 1.4 release which will support [incremental predicates](https://docs.getdbt.com/docs/build/incremental-models#about-incremental_predicates) We will support incremental predicates in dbt-oracle conforming to rules defined by dbt Labs. I think, this...
@philiphagglund Did you try [incremental predicates](https://docs.getdbt.com/docs/build/incremental-models#about-incremental_predicates) ? Does it solve your usecase.