Hi, @anthonysena or someone who can help
I have similar situation for our Atlas: No data for some reports. I’ve been working on this problem for a while and now not sure what should do to solve the problem. Any suggestion is really appreciated.
Here is the current status and what I did:
The following report have data displayed in Atlas:
Dashboard, visit, Condition Occurrence, Procedure, Measurement, death
The following reports have “no data”:
Data Density, Person, Condition Era, Drug Exposure, Drug Era, Observation.
Here is what I did to generate the reports:
Ran Achilles R function dropAllScratchTables() to drop all the tmp tables.
Then ran the SQLs generated from
WebAPI/ddl/results?dialect=bigquery&schema=results&vocabSchema=cdm&tempSchema=results&initConceptHierarchy=true
And next run the SQLs generated and modified from the Achilles function
achilles(connectionDetails,
cdmDatabaseSchema = "cdm ",
resultsDatabaseSchema=“results”,
vocabDatabaseSchema = “cdm”,
numThreads = 12,
sourceName = “OMOP”,
cdmVersion = “5.3.0”,
analysisIds = voOnly,
sqlOnly = TRUE)
All the SQLs are completed without any error.
I tried the following R functions to check the reports and they look good in json files. One of these functions is exportPersonToJson() è person.json
I also ran the SQLs under …/ webapps/WebAPI/WEB-INF/classes/resources/cdmresults/sql/report/person
yearofbirth_stats.sql, yearofbirth_data.sql,
race.sql, population.sql, gender.sql, ethnicity.sql
and all got results.
Thanks!!