I have a list of sources and there is one I want to delete:
I tried deleting all entries at webapi.source and webapi.source_daimon to have:
ohdsi=> select * from webapi.source_daimon;
source_daimon_id | source_id | daimon_type | table_qualifier | priority
------------------±----------±------------±------------------------±---------
27 | 10 | 0 | ccae2003_2020 | 0
29 | 10 | 2 | ar_ccae2003_2020 | 0
30 | 10 | 5 | tmp_atlas_ccae2003_2020 | 0
28 | 10 | 1 | omop_20220331 | 0
35 | 12 | 0 | mdcr2003_2021 | 0
37 | 12 | 2 | ar_mdcr2003_2021 | 0
38 | 12 | 5 | tmp_atlas_mdcr2003_2021 | 0
39 | 12 | 1 | omop_20220331 | 0
(8 rows)
ohdsi=> select source_id, source_name, source_key, source_dialect from webapi.source;
source_id | source_name | source_key | source_dialect
-----------±--------------------------±------------------±---------------
10 | Results for ccae2003_2020 | src_ccae2003_2020 | postgresql
12 | Results for mdcr2003_2021 | src_mdcr2003_2021 | postgresql
(2 rows)
Yet, the
" Results for mdcr2003_2020_oud [src_mdcr2003_2020_oud]"
persist. How can I do to delete this one from the list of sources?
Thanks
Jose