Each Ad Hoc query is created by making requests of the data set, or View, using the following format.

Similar documents
Tutorial 3. Maintaining and Querying a Database

Microsoft Office 2010

Using Ad-Hoc Reporting

ADHOC REPORTING 201 TRAINING MANUAL

Ad Hoc Report Query Step-by-Step

COURSE DESCRIPTION. Queries in Microsoft Access. This course is designed for users with a to create queries in Microsoft Access.

Word 2007: Mail Merge Learning Guide

Personalizing your Access Database with a Switchboard

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced

Tutorial 3 Maintaining and Querying a Database

Lab 2: MS ACCESS Tables

Knowledgebase Article

HRMS Reporting Tool Class

Objectives. Understand databases Create a database Create a table in Datasheet view Create a table in Design view

Adaptive Enterprise Solutions

MICROSOFT ACCESS 2003 TUTORIAL

Creating QBE Queries in Microsoft SQL Server

Introduction to Microsoft Access 2003

Microsoft Access to Microsoft Word Performing a Mail Merge from an Access Query

HPRP Service Reports

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Database Forms and Reports Tutorial

Unit 10: Microsoft Access Queries

Access II 2007 Workshop

CONTENTS MANUFACTURERS GUIDE FOR PUBLIC USERS

Access Queries (Office 2003)

Module 9 Ad Hoc Queries

Introduction to Microsoft Access 2010

Microsoft Access 2010: Basics & Database Fundamentals

HMIS Client Services User Guide

UDW+ Quick Start Guide to Functionality 2013 Version 1.1

Performance and Contract Management System Data Submission Guide

Academic Senate Data Management System

General User/Technical Guide for Microsoft Access

MICROSOFT OUTLOOK 2011 READ, SEARCH AND PRINT S

Uni Sales Analysis CRM Extension for Sage Accpac ERP 5.5

COGNOS Query Studio Ad Hoc Reporting

Microsoft Access 2010 handout

Check out our website!

Affiliation Security

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

Microsoft Access Introduction

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9

User Guide. Trade Finance Global. Reports Centre. October nordea.com/cm OR tradefinance Name of document 8/8 2015/V1

Working with Access Tables A Continuation

Microsoft Access 2000

Database Applications Microsoft Access

(a) You can click on the Payment link in the Welcome page Snapshot as displayed in Figure 2 below.

Introduction to Microsoft Access 2007

Microsoft Access 2007 Module 1

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

Merging Labels, Letters, and Envelopes Word 2013

Chapter 5. Microsoft Access

Southern Mailing List User Guide

Missouri Department of Health and Senior Services Bureau of Immunization Assessment and Assurance February 2013

Indiana Campaign Finance System Secure Site

Data Tool Platform SQL Development Tools

Houston Region Diesel Engine Database Minimum System Requirements Installation Instructions Quick Start Guide version 0.1

Tutorial #7A: LC Segmentation with Ratings-based Conjoint Data

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.

Business Insight Report Authoring Getting Started Guide

Microsoft Access 2010 Overview of Basics

Tutorial on Building a web Application with Jdeveloper using EJB, JPA and Java Server Faces By Phaninder Surapaneni

Introduction to Microsoft Access 2013

Oracle Fusion Middleware

FROM DB TO DB. Manual. Page 1 of 7. Manual. Tel & Fax: info@altiliagroup.com Web:

2. Upon login, landing page should be Home if not, click Home in Navigation Pane (top right).

Program Director Portal Overview

User Services. Microsoft Access 2003 II. Use the new Microsoft

Microsoft Access 3: Understanding and Creating Queries

Excel: Analyze PowerSchool Data

Using an Access Database

There are several ways you can reduce the size of your mailbox, they include:

Microsoft Office Access 2007 Basics

Table of Contents. Introduction Logging into ETO ETO HMIS Homepage Description ETO HMIS Homepage Tabs... 13

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1

Aeries Student Information System Attendance Notes October 3, 2008

Microsoft Access 2007 Introduction

OUTLOOK GETTING STARTED

Appointment Router Salesforce.com Web- to- Lead Integration Guide. Date: January 19, 2011

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009

Data Entry Training Module

This training module reviews the CRM home page called the Dashboard including: - Dashboard My Activities tab. - Dashboard Pipeline tab

Getting Started with Access 2007

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7

Enterprise Reporting Solution. Argos Report Writers Guide. Document Version 2.0

CS1100: Access Reports

HRSA Data Warehouse Report Tool Help

Using the New InfoAssist Tool for Ad Hoc Query and Reporting. John Osborn Information Builders

Business Objects Reports Influenza Vaccinations User Guide

Using Microsoft Access Databases

Sage Abra SQL HRMS Reports. User Guide

Microsoft Access Rollup Procedure for Microsoft Office Click on Blank Database and name it something appropriate.

Online Database Management System

for Sage 100 ERP Business Insights Overview Document

Central Intake Library Information

!"#"$%&'(()!!!"#$%&'())*"&+%

Transcription:

Contents Ad Hoc Reporting... 2 What is Ad Hoc Reporting?... 2 SQL Basics... 2 Select... 2 From... 2 Where... 2 Sorting and Grouping... 2 The Ad Hoc Query Builder... 4 The From Tab... 7 The Select Tab... 8 The Where Tab... 9 The Sort Tab...10 The Report Grouping Tab...11 Understanding the Ad Hoc Views...11 Table 1...11

Ad Hoc Reporting What is Ad Hoc Reporting? AESEnginuity, otherwise known as Safe Harbors, includes a customizable reporting tool referred to as Ad Hoc Reporting. Ad Hoc Reporting allows users to create basic data requests that are structured similar to SQL (Structured Query Language) queries. These SQL statements are built with the Ad Hoc Reporting query tool using the basic commands used in SQL Select, From, Where and include sorting and grouping of the final output. Instead of requiring users to possess a detailed understanding of the database structure, including table names, cardinality and Primary/Foreign Key constraints, the SQL data requests are made against aggregate collections of data referred to as Views. SQL Basics Each Ad Hoc query is created by making requests of the data set, or View, using the following format. Select The Select portion of the request, or SQL (Pronounced see -qual) statement describes which fields form the View you wish to see in you final output. For example: Select LastName, FirstName, SSN, Race In this case, the First Name, Last Name, Social Security Number and Race will be included in the data set returned. From The From portion of the SQL statement determines from which View the data is being requested. For example: From vadhocactivities In this case, the request is being made from the View called vadhocactivities. Where The Where portion of the SQL statement defines conditions that exist in the data that further describe the data that will be returned. For example: Where FirstName Like Bill In this case, the request is being made for only those records for which the First Name of the person is Bill. Sorting and Grouping Sorting and Grouping determine the way in which the data is arranged and presented. Sorting is simply the order in which the data is arranged. In SQL, Sorting is invoked by the Order By statement. For example: Order By LastName, FirstName

In this example, the data will be Sorted by Last Name and then by First Name. The resulting data set would appear as follows: In SQL, Grouping presents the data in Groups defined by the Group By statement. For example: Group By LastName In this example, the data will be Grouped by Last Name. The resulting data set would appear as follows:

The Ad Hoc Query Builder The Ad Hoc Query Builder is accessed by selecting Ad-hoc Reports from the Menu in Safe Harbors. The data that is accessed by the Ad Hoc Query Builder is related to the User s Agency affiliation. For example, if a User is associated with The Compass Center, then only data related to The Compass Center will be included in the results of the Ad Hoc Report. In addition, the Views and data are also related to the Application Role that is active when the Ad Hoc Query Builder is invoked. To begin, be sure that the HMIS (HMIS, HMIS High Volume, HMIS High/Low Volume or HMIS Low Volume) Role is chosen.

Next, select Ad-hoc Reports from Report in the Menu.

The Ad-hoc Reports screen will be presented. To build an Ad Hoc Query, click the Build New Query button to display the AdhocReport Query Builder. Along the top of the window are five (5) tabs that are labeled according to their SQL statement creation function.

The From Tab The From tab includes a list of all the available Views. The Views are listed in the TableName column of the Data Source Table.

The Select Tab The Select tab includes a list of all the fields available in the chosen View or Table. To select fields to include in the query, highlight the desired field name in the Column Select list and press the double right arrows. Repeat this selection process for each field needed for the query. The fields will appear in the resulting report in the same order as they appear in the Selected Columns box. To re-arrange the fields, highlight the field you wish to move and then use the Up and Down buttons to move the field to the desired position.

The Where Tab The Where tab provides the functionality to dictate what data values you want to be retrieved for the report. You may select the Columns or fields for which you want to designate specific Operators and Values.

The Sort Tab The Sort tab functions in the same way as the Select tab. The results of the query are sorted by the chosen field in an Ascending order (1,2,3 or a,b,c ). To make the results sort in a Descending order, click on the small box next to the desired field to enable the check box.

The Report Grouping Tab The Report Grouping tab functions in the same way as the Select and Sort tabs. Understanding the Ad Hoc Views The Ad Hoc Query builder draws from database Views to extract data from the HMIS database. Table 1 includes descriptions of the most useful Ad Hoc Views. View vadhocdemographics vadhocincomedemographics vadhocprofilequestions vadhocquestions vadhocservices vadhocactivities vadhocsnapshotincome Description Unduplicated client demographic data with current poverty level and total income. Data comes from Central Intake, Household Statistics and Client Intake pages. Income break down related to client demographic, including income sources. Data comes from Household Statistics and Client Intake pages. Profile questions related to client demographic. Data comes from Household Statistics, Client Intake, Income Snapshots, Entry and Exit, Services Pages and Client Profile. All questions with the exception of encounter related to client demographic. Data comes from Household Statistics, Client Intake, Eligibility, Income Snapshot, Entry and Exit, Services Pages and Client Profile. Services delivered related to client demographic, including Milestone status. Data comes from Household Statistics, Client Intake, Entry and services Pages. Services must be attached to a Milestone. All Activities realte to client demographic, including HMIS prior living questions. Data comes from Household Statistics, Client Intake, Entry and Exit and Services Pages. Services do not need to be attached to Milestones. Client details regarding Income from the Entry and Exit Snapshot, including income source and non-cash benefits and also includes services information. Table 1

It is important to understand how the demographics views differ from other views. Looking at the Navigation pane of the Home screen, demographics data is related to Central Intake pages. Demographics information is client specific. The remaining views are related to Client Services and the services provided to clients and their situation at Program Entry and Exit. Once entered into a Program, a snapshot is created that contains information about the client at that point in time. Another snapshot is created when the client exits the Program. Once a snapshot is created, changes to the client s demographics may be made, but those changes will not be reflected in the snapshot unless the client is exited and re-entered in to the Program or the snapshot is updated. In other words, if a change is made to client demographic information and an Ad Hoc report is run using a view that draws from a snapshot, the demographic changes will not be reflected.