You’ll need to check with your IT team about database logs.
However - I think that maybe the table name is the issue as you’ve pointed out! DQD runs this query - https://github.com/OHDSI/DataQualityDashboard/blob/6ef7ee2dd1116741e3fe9907ef4d9cc98eccb96c/R/executeDqChecks.R#L134 - which puts the table name as lowercase. I checked and BigQuery table names are case sensitive by default. So this query will indeed fail for you if your table name is all uppercase and you don’t have case sensitivity disabled in your BigQuery database.
That said, a lot of OHDSI docs tend to refer to table names in all caps. And the DQD config files have the table names listed in all caps. As a community we should probably either:
Decide on one convention and document/encode it consistently everywhere
Explicitly allow any casing and build in support for this to all of our tools
I’m not sure if this has already been discussed - @clairblacketer do you know?
Thank you so much for your reply. Very intersting !
I followed your recommandations by making my BigQuery case insensitive and my DataQualityDashboard is running.
That was vey helpfull!