Non-Extracted Tables and Documentation Flashcards
Look up the following database objects in the Clarity Compass and fill in the type:
Database Object Type
Clarity_TDL ———————–
OB_HISTORY ———————–
MU_EP_PROV_SUMMARY ———————–
Clarity_TDL –> View
OB_HISTORY –> View
MU_EP_PROV_SUMMARY –> Derived Table
Look up the following database objects in the Clarity Compass and fill in the type:
HH_OASIS_INFO
HH_PAT_ENC
PAT_ADDENDUM_INFO
PAT_ENC
SMRTDTA_ELEM_DATA
SMRTDTA_ELEM_VALUE
All Extracted Tables
What are “dependent database objects”, listed in the Clarity Compass? How can you use this information?
The list of database objects upon which this object depends.
This list can help determine what extracted tables and columns a view or derived table can be used in place of.
V_PAT_FACT is based on the PATIENT table. What logic has been applied to PATIENT in this view?
How can you find this information?
V_PAT_FACT uses Case statements in to calculate patient age. The logic can be viewed from the Scripts tab of the Clarity Compass for V_PAT_FACT
T/F All views in Clarity start begin with ‘V_’
False. Naming conversions are not strictly enforced in Clarity
-May 2022, 5.7
How do views and derived tables alleviate creating a tedious query?
By combining data from multiple tables in one place.
-May 2022, 5.4
What is a tool that visually shows relationships between database objects relevant to a particular reporting area?
ER Diagrams (Entity Relationship Diagrams)
-May 2022, 5.10
What are two things that an ER diagram contains?
• Tables and their links for a particular reporting area
• Relationship cardinality of frequent joins
-May 2022, 5.10
Where do you search for Clarity ER diagrams?
In Galaxy:• Search “ ER Diagram htm”• Download ZIP file• Extract• Open “index.htm”(Aug. 2021, 5.5)
Do Clarity ER Diagrams document all possible joins between Clarity tables?
No, only some of the joins that are possible between Clarity tables.(Aug. 2021, 5.6)
List three types of database objects?
- View2. Derived Table (Materialized View)3. Extracted Table(Aug. 2021, 5.7)
How are Views identified in an ER Diagram?
By a brownish/orangish color.(Aug. 2021, 5.7)
How are database object types identified in the Clarity Compass?
By chips in the Overview section of the Summary tab.(Aug. 2021, 5.7)
What is a View?
A stored query.
-May 2022, 5.6
• Queries that are stored in the database
• Accessed as if it were a table
• Do not actually hold data. This means that using a view will not necessarily increase the efficiency of a query. However, views can reduce the amount of work that business intelligence developers must do by reducing the complexity of a query.(RPT101i SQL I)
What type of database object pulls in data from several different tables in Clarity?
A View
-May 2022, 5.6