fetchAchillesHeelResults.Rd
fetchAchillesHeelResults
retrieves the AchillesHeel results for the AChilles analysis to identify potential data quality issues.
fetchAchillesHeelResults(connectionDetails, resultsDatabaseSchema)
connectionDetails | An R object of type |
---|---|
resultsDatabaseSchema | Fully qualified name of database schema that we can fetch final results from. On SQL Server, this should specifiy both the database and the schema, so for example, on SQL Server, 'cdm_results.dbo'. |
A table listing all identified issues
AchillesHeel is a part of the Achilles analysis aimed at identifying potential data quality issues. It will list errors (things that should really be fixed) and warnings (things that should at least be investigated).
if (FALSE) { connectionDetails <- DatabaseConnector::createConnectionDetails(dbms="sql server", server="myserver") achillesResults <- achilles(connectionDetails, "cdm5_sim", "scratch", "TestDB") fetchAchillesHeelResults(connectionDetails, "scratch") }