Table of Contents

Search

  1. Preface
  2. Introduction to Data Validation Option
  3. Repositories
  4. XML Data Source
  5. Tests for XML Data Sources
  6. Connections
  7. Expressions
  8. Table Pairs
  9. Tests for Table Pairs
  10. Single-Table Constraints
  11. Tests for Single-Table Constraints
  12. Examples of Tests from Spreadsheets
  13. SQL Views
  14. Lookup Views
  15. Join Views
  16. Aggregate Views
  17. Business Intelligence and Reporting Tools Reports
  18. Dashboards
  19. DVOCmd Command Line Program
  20. Troubleshooting
  21. Appendix A: Datatype Reference
  22. Appendix B: Reporting Views
  23. Appendix C: Metadata Import Syntax
  24. Appendix D: Jasper Reports
  25. Appendix E: Glossary

Data Validation Option User Guide

Data Validation Option User Guide

Using the Reporting Views

Using the Reporting Views

The reporting views contain information about table pairs, single-table constraints, join views, lookup views, SQL views, tests, and test runs. To extract information from the reporting views, you can build custom reports in a business intelligence tool or run SQL queries.
When you build a report, you specify an SQL query based on one or more reporting views. In the SQL query, you can transform the data based on the business requirements. For example, the results_summary_view contains the tr_start_time and tr_finish_time columns. The columns store the time in milliseconds since Jan 1, 1970.
You can run the following SQL statement to convert the milliseconds to a date and time format for a custom report:
SELECT TO_DATE('1970-01-01', 'YYYY-MM-DD')+(numtodsinterval(to_number(tr_finish_time)/1000,'SECOND')) FROM results_summary_view

0 COMMENTS

We’d like to hear from you!