24 Sub-Queries. Sub-Queries

Size: px
Start display at page:

Download "24 Sub-Queries. Sub-Queries"

Transcription

1 24 Sub-Queries Sub-Queries are another method of restricting data, but they use the results of one query to restrict a second query. Web Intelligence generates SQL that is processed by the database in two steps: 1. Run the sub-query and return a set of results 2. Use the results of the sub-query to restrict an outer-query 3. Return the results of the restricted outer-query back to the user A point to note here is that only one set of results is returned to the user, although the database runs more than one query in the background. 1. Create the following query using the efashion universe and run it. This simple query shows data for [This year] that has been sorted descending on [Quantity sold]. We have 3 States selling less than We would like to create a query to show all years for the States that have sold less than 6000 (in quantity) in [This year], i.e. using this example we want to show data for all years for the states Massachusetts, Colorado and Florida. To do this we edit our query to include a sub-query. 2. In the Query Panel select [State] in the Result Objects pane and then click on the Sub-Query icon to start defining the sub-query: Sub- Query Outer- Query 397

2 Let us first describe the actual Sub-Query Filter itself: Object placed here will be used to restrict the outerquery by comparing the values in the database to the values returned by the sub-query object. Objects placed here will be used to restrict the sub-query itself. Object placed here will be the columns of data returned by the sub-query. 3. Drag and drop the objects to create the definition of the sub-query as shown below: The boxed area is showing the definition of the sub-query. The sub-query will return a single column of data ([State]), listing states that satisfy the filter of having [Quantity sold] less than 6000 in [This year]. The outer-query will be restricted by comparing [State] values to the [State] values returned by the subquery. The sub-query runs first to bring back the states that have sold less than 6000 this year. Then its results are used to restrict the outer-query to show data for all years but only for the states that have been returned by the sub-query. 4. Run the query. 398

3 5. Create a new table as follows (or re-arrange the existing table): 1 The sub-query returned three [State] values that have a [Quantity sold] of less than 6000 in [This year]. These values were Colorado, Florida and Massachusetts. 2 These three values were then used to restrict the outer-query resulting in data being returned for all years but only for these three states. Creating meaningful sub-queries requires an understanding of how the definition of sub-queries works The red shaded area (labelled as 1 ) forms the definition of the sub-query: It is used to fetch a single column of values, i.e. States that have sold less than 6000 in quantity for this year. In other words, a sub-query effectively defines a list of values. 2. The orange shaded area (labelled as 2 ) can be referred to as the outer-query (in relation to the sub-query) and provides the actual data returned to use within the document: In this case we have 3 columns, [Year], [State] and [Quantity sold]. 3. The outer-query and the sub-query are related by the area highlighted in blue (labelled as 3 ). 399

4 The aim is to use objects that will allow a comparison to be made to restrict the outer-query by using the values returned by the sub-query. In this case we are restricting the outer-query to fetch data for only those states that are returned by the sub-query Sub-Queries and other Query Conditions An outer-query can have further restrictions applied to it by using other Query Filters alongside the Sub- Query filter. Our example returned data for all years for states that sold less than 6000 in this year: 1. Edit and run the query to request only last year s data for the states that sold less than 6000 in this year: Any objects placed in the Query Filters pane that are outside of the Sub-Query filter are applied to the outer-query only. In this example we have requested the outer-query to be restricted: To the states returned by the sub-query. Then for the states satisfying the sub-query, we only want data for [Last year]. The results of the outer-query now show data for [Last year] only. 2. Save your document. 400

5 24.2 Sub-Queries and Query Contexts In an earlier session it was described that Query Contexts enforce data integrity by ensuring incompatible paths between tables are not used to generate SQL that yields incorrect results. Having used the Island Resorts Marketing universe, we know that sales data and reservations data are in different contexts (related to Sales and Reservations respectively). However, when using subqueries we can use different contexts in the sub-query compared to the outer-query. 1. Create a new document with the following query using the Island Resorts Marketing universe: [Revenue] and [Year 2006] are from Sales context therefore the outerquery is going to use the Sales context. [Year 2007] is from Reservations context therefore the sub-query is going to use the Reservations context. The above query definition is requesting [Revenue] for each [Customer] in 2006 where any sort of reservation was made in Run the query and the results of the above query are shown below: 401

26 Ranking Data in Queries

26 Ranking Data in Queries 26 Ranking Data in Queries This session describes how to query a database to request data such as: Top 5 customers based on Customer Spend in this year Bottom 10 products based on Quantity Sold in last

More information

4 Introduction to Web Intelligence

4 Introduction to Web Intelligence 4 Introduction to Web Intelligence Web Intelligence enables you to create documents for reporting, data analysis, and sharing with other users using the BI Launch Pad environment. Querying The required

More information

9 Introducing Drag and Drop Techniques

9 Introducing Drag and Drop Techniques 9 Introducing Drag and Drop Techniques The general technique for dragging and dropping involves: 1. Clicking once to first select an object. 2. Holding the left mouse button down to grab the object for

More information

Filtering, Sorting and Ranking

Filtering, Sorting and Ranking Filtering, Sorting and Ranking Content: THE PRINCIPLES FILTERING/RANKING/SORTING... 2 EXAMPLE... 3 Step 1: Simple Filtering... 3 Step 2: Sorting on a different dimension... 5 Step 3: Combining Ranking,

More information

Query Contexts. This session describes the use of Query Contexts (which are defined in the universe) to retrieve data when queries are refreshed.

Query Contexts. This session describes the use of Query Contexts (which are defined in the universe) to retrieve data when queries are refreshed. 23 Query Contexts This session describes the use of Query Contexts (which are defined in the universe) to retrieve data when queries are refreshed. 23.1 What are Query Contexts? Broadly speaking, Query

More information

33 Exploring Report Data using Drill Mode

33 Exploring Report Data using Drill Mode 33 Exploring Report Data using Drill Mode Drill Functionality enables you to explore data by moving up, down and across the dataset(s) held within the document. For example, we have the following data

More information

WebIntelligence 4.0 Rich Client: Tips and Tricks From The Master

WebIntelligence 4.0 Rich Client: Tips and Tricks From The Master WebIntelligence 4.0 Rich Client: Tips and Tricks From The Master 56132 Parkview Shelby Twp, MI 48316 586.677.8300 Phone 586.677.8301 Fax http://www.cttsbi.com Michael Ward Presentation Objectives Reporting

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Course 20761A: Querying Data with Transact SQL Course details Course Outline Module 1: Introduction to Microsoft SQL Server 2016 This module introduces SQL Server, the versions of SQL Server, including

More information

27 Formulas and Variables

27 Formulas and Variables 27 Formulas and Variables Formulas and variables enable you to add custom calculations within reports. One advantage of variables is they are given a name and are re-usable across the whole document, whereas

More information

Top Selling Items Report

Top Selling Items Report ................................................................................................... Top Selling Items Report Pharmacy Technology Solutions Issued May 2013 Report Builder: Top Selling Items

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Altru Fundraising Events. Reporting on Event Attendance & Revenue

Altru Fundraising Events. Reporting on Event Attendance & Revenue Altru Fundraising Events Reporting on Event Attendance & Revenue Taking Attendance for a Special Event On the Registrations tab of an event record, you can mark whether a Registrant attended, was a no-show,

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Creating User-Friendly Databases

Creating User-Friendly Databases Creating User-Friendly Databases Chapter 8 Databases are often created by a small number of people then used by a larger number of others. Often these people do not know how to use all the features of

More information

File Name: Pivot Table Labs.xlsx

File Name: Pivot Table Labs.xlsx File Name: Pivot Table Labs.xlsx Lab Session 1: Create Simple Pivot Table with a Date Grouping Note: Instructions for the first lab are very detailed because it might be the first time you have created

More information

Product Reports Daily Sales Analysis Report

Product Reports Daily Sales Analysis Report ................................................................................................... Product Reports Daily Sales Analysis Report Pharmacy Technology Solutions Issued July 2014 Report Builder:

More information

Advanced Web Intelligence Techniques for Aspiring Jedi Knights

Advanced Web Intelligence Techniques for Aspiring Jedi Knights September 9 11, 2013 Anaheim, California Advanced Web Intelligence Techniques for Aspiring Jedi Knights Alan Mayer Solid Ground Technologies Agenda Introduction Query Techniques Report Techniques Performance

More information

32 Using Local Data Sources in Web Intelligence Documents

32 Using Local Data Sources in Web Intelligence Documents 32 Using Local Data Sources in Web Intelligence Documents We have used universes as data sources for queries created in Web Intelligence and in Web Intelligence Rich Client. 32.1 Local Data Sources in

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Course: 20761 Course Details Audience(s): IT Professional(s) Technology: Microsoft SQL Server 2016 Duration: 24 HRs. ABOUT THIS COURSE This course is designed to introduce

More information

ProQuote Create a New Quote. ProQuote CREATING A NEW QUOTE. On the Home Screen, select New Quote. The New Quote screen appears,

ProQuote Create a New Quote. ProQuote CREATING A NEW QUOTE. On the Home Screen, select New Quote. The New Quote screen appears, - CREATING A NEW QUOTE Create a New Quote On the Home Screen, select New Quote The New Quote screen appears, 1 - CREATING A NEW QUOTEcontinued Complete all the following required fields Quote Name - Enter

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Course 20761A: Querying Data with Transact-SQL Page 1 of 5 Querying Data with Transact-SQL Course 20761A: 2 days; Instructor-Led Introduction The main purpose of this 2 day instructor led course is to

More information

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it.

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it. Page 1 of 5 Working with SQL Server Management Studio SQL Server Management Studio (SSMS) is the client tool you use to both develop T-SQL code and manage SQL Server. The purpose of this section is not

More information

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4)

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Section 3 AGENDA

More information

Help Contents. Custom Query Builder Functionality Synopsis

Help Contents. Custom Query Builder Functionality Synopsis Help Contents Custom Query Builder Functionality Synopsis... Section : General Custom Query Builder Functions... Section : Query Tool Main Menu Functions... Section : Query Tool Choose Datasource Functions...

More information

Exercise #6: Sales by Item Year over Year Report

Exercise #6: Sales by Item Year over Year Report Exercise #6: Sales by Item Year over Year Report Objective create a report that shows (by product) how many were sold and how much revenue you generated in sales over the last 3 years. Step 1: Edit existing

More information

Version 9 Client Workflow Interface (Dashboard) Quick Start Guide

Version 9 Client Workflow Interface (Dashboard) Quick Start Guide Version 9 Client Workflow Interface (Dashboard) Quick Start Guide Client Workflow Interface (Dashboard) Quick Start Guide The Quick Start Guide will walk you through the initial steps of using the Progeny

More information

QUERY STUDIO. Transaction Detail by Department (Year to Date)

QUERY STUDIO. Transaction Detail by Department (Year to Date) QUERY STUDIO Transaction Detail by Department (Year to Date) Starting Screen Click MANAGE FILE Click MY PREFERENCES Whe you begin building your query, set your preferences to Preview with No Data. This

More information

7. Apply a Range of Table Features

7. Apply a Range of Table Features Word Processing 5N1358 7. Apply a Range of Table Features Contents Apply a Range of Table Features Including: 1. Creating Tables... 1 2. Resizing... 4 3. Merging Cells... 5 4. Inserting or Deleting columns

More information

Oracle 1Z Oracle Database 12c SQL. Download Full Version :

Oracle 1Z Oracle Database 12c SQL. Download Full Version : Oracle 1Z0-071 Oracle Database 12c SQL Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-071 QUESTION: 64 Which task can be performed by using a single Data Manipulation Language (OML)

More information

Querying Data with Transact SQL Microsoft Official Curriculum (MOC 20761)

Querying Data with Transact SQL Microsoft Official Curriculum (MOC 20761) Querying Data with Transact SQL Microsoft Official Curriculum (MOC 20761) Course Length: 3 days Course Delivery: Traditional Classroom Online Live MOC on Demand Course Overview The main purpose of this

More information

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course:

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: 20762C Developing SQL 2016 Databases Module 1: An Introduction to Database Development Introduction to the

More information

MAP Display Map Route

MAP Display Map Route The program is used for mapping directions from the store to the designated pickup / delivery points. The system takes the store address (established using the SET program) and compares it to the customer's

More information

CS1100: Data, Databases, and Queries QUERY CONSTRUCTION. CS1100 Microsoft Access 1

CS1100: Data, Databases, and Queries QUERY CONSTRUCTION. CS1100 Microsoft Access 1 CS1100: Data, Databases, and Queries QUERY CONSTRUCTION CS1100 Microsoft Access 1 Microsoft Access Tutorial: Data, Databases, and Queries LAYOUT OF THE ORDERS DATABASE CS1100 Microsoft Access 2 The Orders

More information

Instructor: Clara Knox. Reference:

Instructor: Clara Knox. Reference: Instructor: Clara Knox Reference: http://www.smith.edu/tara/cognos/documents/query_studio_users_guide.pdf Reporting tool for creating simple queries and reports in COGNOS 10.1, the web-base reporting solution.

More information

Using the Filter, Field Sets, and Sort Order Menus

Using the Filter, Field Sets, and Sort Order Menus Using the Filter, Field Sets, and Sort Order Menus The Filter menu is used to determine the group of records that appear on the page, such as all active students or former students The Field Sets menu

More information

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now!

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! In this Try Now! exercise, you will be creating a visualization in your Sales domain, based on the data you uploaded from your Microsoft

More information

CSCI 1100L: Topics in Computing Lab Lab 07: Microsoft Access (Databases) Part I: Movie review database.

CSCI 1100L: Topics in Computing Lab Lab 07: Microsoft Access (Databases) Part I: Movie review database. CSCI 1100L: Topics in Computing Lab Lab 07: Microsoft Access (Databases) Purpose: The purpose of this lab is to introduce you to the basics of creating a database and writing SQL (Structured Query Language)

More information

Microsoft Excel Pivot Tables & Pivot Table Charts

Microsoft Excel Pivot Tables & Pivot Table Charts Microsoft Excel 2007 Pivot Tables & Pivot Table Charts A pivot table report allows you to analyze and summarize a million rows of data in Excel 2007 without entering a single formula. Pivot Tables let

More information

Confirm Picking. Sales.Scanco.com Portal Settings Accessing the Application Warehouse Prompt Staging Bin Prompt...

Confirm Picking. Sales.Scanco.com Portal Settings Accessing the Application Warehouse Prompt Staging Bin Prompt... Contents Confirm Picking Sales.Scanco.com Portal Settings... 2 Accessing the Application... 3 Warehouse Prompt... 4 Staging Bin Prompt... 5 Sales Order Prompt... 6 Sales Order List Maintenance... 7 Item

More information

MS Office 2016 Excel Pivot Tables - notes

MS Office 2016 Excel Pivot Tables - notes Introduction Why You Should Use a Pivot Table: Organize your data by aggregating the rows into interesting and useful views. Calculate and sum data quickly. Great for finding typos. Create a Pivot Table

More information

Interactive Analysis Getting Started Guide Interactive Analysis 1.0

Interactive Analysis Getting Started Guide Interactive Analysis 1.0 Interactive Analysis Getting Started Guide Interactive Analysis 1.0 Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and other SAP

More information

Membership Portal Manual

Membership Portal Manual Membership Portal Manual Table of Contents Login... 4 Contact Tab... 6 Contact Information Dropdown...6 Features on the Contact Information Dropdown... 6 Account Information Dropdown...6 Features on the

More information

Combining Data.the EG way

Combining Data.the EG way Combining Data.the EG way Bank of Montreal Risk Capital and Stress Testing 12 / 09 / 2014 By: Anita Measey Objective: The perfect Join includes creating a calculated variable and grouping Having adding

More information

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related PROCEDURES LESSON 8: MANAGING RELATIONSHIPS BETWEEN TABLES Renaming a Table 1 In the Navigation pane, right-click the table you want to rename 2 On the shortcut menu, click Rename 3 Type the new table

More information

31 Working with Documents in Web Intelligence Rich Client

31 Working with Documents in Web Intelligence Rich Client 31 Working with Documents in Web Intelligence Rich Client This session demonstrates working with documents using Web Intelligence Rich Client. 31.1 Working in Connected Mode You must have logged in using

More information

SECTION 1 DBMS LAB 1.0 INTRODUCTION 1.1 OBJECTIVES 1.2 INTRODUCTION TO MS-ACCESS. Structure Page No.

SECTION 1 DBMS LAB 1.0 INTRODUCTION 1.1 OBJECTIVES 1.2 INTRODUCTION TO MS-ACCESS. Structure Page No. SECTION 1 DBMS LAB DBMS Lab Structure Page No. 1.0 Introduction 05 1.1 Objectives 05 1.2 Introduction to MS-Access 05 1.3 Database Creation 13 1.4 Use of DBMS Tools/ Client-Server Mode 15 1.5 Forms and

More information

Deploying BusinessObjects Explorer on Top of a SAP BI Query

Deploying BusinessObjects Explorer on Top of a SAP BI Query Deploying BusinessObjects Explorer on Top of a SAP BI Query Applies to: SAP BI NetWeaver 2004s, BusinessObjects Explorer 3.1. For more information, visit the Business Intelligence homepage. Summary The

More information

Data Visualization via Conditional Formatting

Data Visualization via Conditional Formatting Data Visualization Data visualization - the process of displaying data (often in large quantities) in a meaningful fashion to provide insights that will support better decisions. Data visualization improves

More information

Griffin Training Manual Grif-WebI Introduction (For Analysts)

Griffin Training Manual Grif-WebI Introduction (For Analysts) Griffin Training Manual Grif-WebI Introduction (For Analysts) Alumni Relations and Development The University of Chicago Table of Contents Chapter 1: Defining WebIntelligence... 1 Chapter 2: Working with

More information

Online Analytical Processing (OLAP) Release 8.2 Version 01M and Higher

Online Analytical Processing (OLAP) Release 8.2 Version 01M and Higher Online Analytical Processing (OLAP) Release 8.2 Version 01M and Higher December 14, 2017 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway

More information

Lab 01. Creating and Exploring a Microsoft Power BI Dashboard

Lab 01. Creating and Exploring a Microsoft Power BI Dashboard Lab 01 Creating and Exploring a Microsoft Power BI Dashboard Overview The estimated time to complete lab is 30 minutes In this lab, you will create a Microsoft Power BI dashboard to report on the US sales

More information

Grids (tables) is one type of content available in the web Front end s tabs.

Grids (tables) is one type of content available in the web Front end s tabs. Grids Overview Grids (tables) is one type of content available in the web Front end s tabs. Grids provide the following functionality: Data output and automatically updating the data Providing features

More information

Introduction to SAP BusinessObjects Dashboards

Introduction to SAP BusinessObjects Dashboards Introduction to SAP BusinessObjects Dashboards Page 2 of 6 Copyright Copyright 2012 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose

More information

Date : June 3, IBM Cognos Open Mic. Extensible Visualization to Cognos Active Reports IBM Corporation

Date : June 3, IBM Cognos Open Mic. Extensible Visualization to Cognos Active Reports IBM Corporation Date : June 3, 2014 IBM Cognos Open Mic Extensible Visualization to Cognos Active Reports IBM Cognos Open Mic Team Presentor Technical Panel Member Agenda - What is RAVE - Prerequisites - Download and

More information

What s New in Access 2007

What s New in Access 2007 What s New in Access 2007 This document provides a general overview of the new and improved features in Microsoft Access 2007. Opening Assurances 1. Functionality is the same; how we interact with the

More information

Making Visio Diagrams Come Alive with Data

Making Visio Diagrams Come Alive with Data Making Visio Diagrams Come Alive with Data An Information Commons Workshop Making Visio Diagrams Come Alive with Data Page Workshop Why Add Data to A Diagram? Here are comparisons of a flow chart with

More information

IBM C IBM Cognos 10 BI Author. Download Full Version :

IBM C IBM Cognos 10 BI Author. Download Full Version : IBM C2090-620 IBM Cognos 10 BI Author Download Full Version : http://killexams.com/pass4sure/exam-detail/c2090-620 QUESTION: 42 In the report shown, users click on the Product line link to navigate to

More information

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University

Geographical Information Systems Institute. Center for Geographic Analysis, Harvard University Geographical Information Systems Institute Center for Geographic Analysis, Harvard University LAB EXERCISE 5: Queries, Joins: Spatial and Non-spatial 1.0 Getting Census data 1. Go to the American Factfinder

More information

Enerdeq Browser Transition from PI/Dwights PLUS Data on CD

Enerdeq Browser Transition from PI/Dwights PLUS Data on CD IHS > Critical Information Product Enerdeq Browser Transition from PI/Dwights PLUS Data on CD October, 2013 2013 IHS, All Rights Reserved. All trademarks belong to IHS or its affiliated and subsidiary

More information

Allison Transmission Publications Web Store User Guide

Allison Transmission Publications Web Store User Guide Allison Transmission Publications Web Store User Guide v. 01.25.2017 Table of Contents Overview... 3 Login... 3 The homepage... 4 Customer service... 4 The product catalog... 5 There are two ways to search

More information

San Diego Elementary PowerTeacher: Seating Charts Quick Reference Card

San Diego Elementary PowerTeacher: Seating Charts Quick Reference Card Quick Reference Card PowerTeacher: Seating Charts Use PowerTeacher seating charts to help manage your classroom, take attendance, and select students randomly to promote class participation. Create as

More information

Filtering Data in SAS Enterprise Guide

Filtering Data in SAS Enterprise Guide Filtering Data in SAS Enterprise Guide Working with SAS Enterprise Guide (EG) can seem a bit overwhelming, at first. This is the first in a series of articles that will make the transition to using SAS

More information

Item Management. SIMMS Inventory Management Software October 20, 2011

Item Management. SIMMS Inventory Management Software October 20, 2011 Item Management SIMMS Inventory Management Software 2012 October 20, 2011 Contents Item Management.................. 1 Adding an Item s Profile................ 1 Add an Item s Basic Profile Details..........

More information

Application Extender 16.3 Web Access

Application Extender 16.3 Web Access Application Extender 16.3 Web Access Pre-requisites for WebXtender client Firefox, Chrome or Edge browser For scanning, your friendly neighborhood desktop support person will need to install the specific

More information

View NSAR Documents in WebNow

View NSAR Documents in WebNow View NSAR Documents in WebNow Log in 1. Go to WebNow at https://itsinweb01.uncw.edu/webnow. The login window will appear. 2. Enter your UNCW domain username and password. Click Connect. Adobe Reader To

More information

Querying Microsoft SQL Server 2014

Querying Microsoft SQL Server 2014 Querying Microsoft SQL Server 2014 Course: 20461 Course Details Audience(s): IT Professional(s) Technology: Microsoft SQL Server 2014 Duration: 40 Hours ABOUT THIS COURSE This forty hours of instructor-led

More information

2. What is the difference between UNION and UNION ALL? Write the syntax for each.

2. What is the difference between UNION and UNION ALL? Write the syntax for each. SQL Advanced Discussion Questions Solutions 1. The relational set operators UNION, INTERSECT, and MINUS work properly only if the relations are union-compatible. What does union-compatible mean, and how

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

epact2 guide Using Selection Steps to show data totalled at multiple organisation/bnf levels within an analysis

epact2 guide Using Selection Steps to show data totalled at multiple organisation/bnf levels within an analysis epact2 guide Using Selection Steps to show data totalled at multiple organisation/bnf levels within an analysis Contents 1. Getting started page 2 2. Create a basic analysis Page 2 3. Filtering to limit

More information

Griffin Training Manual Grif-WebI Intermediate Class

Griffin Training Manual Grif-WebI Intermediate Class Griffin Training Manual Grif-WebI Intermediate Class Alumni Relations and Development The University of Chicago Table of Contents Chapter 1: Setting Up My Computer for Successful Use of the Grif-WebI

More information

Microsoft Word 2013 Working with tables

Microsoft Word 2013 Working with tables Microsoft Word 2013 Working with tables LIBRARY AND LEARNING SERVICES WORKING WITH TABLES www.eit.ac.nz/library/ls_computer_word2013_tables.html What is a table? A table is information arranged in horizontal

More information

IBM DB2 Web Query for IBM i. Version 2 Release 2

IBM DB2 Web Query for IBM i. Version 2 Release 2 IBM DB2 Web Query for IBM i Version 2 Release 2 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software, Parlay, PC/FOCUS, RStat, Table

More information

TUTORIAL Get Started with Tableau Desktop

TUTORIAL Get Started with Tableau Desktop TUTORIAL Get Started with Tableau Desktop Learn how to connect to data, create data visualizations, present your findings, and share your insights with others. http://onlinehelp.tableau.com/current/guides/get-started-tutorial/en-us/get-started-tutorialhome.html

More information

DB - Week 3 Lab1-2 Introduction to Databases. Dina A. Said

DB - Week 3 Lab1-2 Introduction to Databases. Dina A. Said DB - Week 3 Lab1-2 Introduction to Databases Dina A. Said dasaid@ucalgary.ca Relationships Create a relationship as follows: One-to-many s.t. field author_id in titles table is a foreign key from field

More information

[AVNICF-MCSASQL2012]: NICF - Microsoft Certified Solutions Associate (MCSA): SQL Server 2012

[AVNICF-MCSASQL2012]: NICF - Microsoft Certified Solutions Associate (MCSA): SQL Server 2012 [AVNICF-MCSASQL2012]: NICF - Microsoft Certified Solutions Associate (MCSA): SQL Server 2012 Length Delivery Method : 5 Days : Instructor-led (Classroom) Course Overview Participants will learn technical

More information

ZeroWeb Manual. Securities offered to you by TradeZero America, Inc. Page 1 of 11

ZeroWeb Manual. Securities offered to you by TradeZero America, Inc. Page 1 of 11 ZeroWeb Manual Securities offered to you by TradeZero America, Inc Page 1 of 11 Contents WATCH LIST...3 CHARTS...4 LEVEL 2, TIME and SALES, ORDER ENTRY...6 SHORT LIST and LOCATES...7 NEW WINDOWS and LAYOUT...8

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008 Embarcadero PowerSQL 1.1 Evaluation Guide Published: July 14, 2008 Contents INTRODUCTION TO POWERSQL... 3 Product Benefits... 3 Product Benefits... 3 Product Benefits... 3 ABOUT THIS EVALUATION GUIDE...

More information

CHAPTER 6 SUMMARY. Objective 1: Identify Good Database Design

CHAPTER 6 SUMMARY. Objective 1: Identify Good Database Design Objective 1: Identify Good Database Design CHAPTER 6 SUMMARY A database is an organized collection of data facts about people, events, things, or ideas related to a specific topic or purpose. Information

More information

How to Display Result Row in One Line While Reporting On Multiproviderer

How to Display Result Row in One Line While Reporting On Multiproviderer How to Display Result Row in One Line While Reporting On Multiproviderer Applies to: SAP BW 3.x, BI 7.0 developers and Reporting Users. For more information, visit the Business Intelligence home page Summary

More information

Description of the toolbar

Description of the toolbar First Steps Overview Overview... 2 Important Notes... 3 Description of the toolbar... 4 Set measuring conditions... 6 Set measuring conditions... 6 General settings... 6 Display settings... 7 Loading of

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

In this exercise you will practice some more SQL queries. First let s practice queries on a single table.

In this exercise you will practice some more SQL queries. First let s practice queries on a single table. More SQL queries In this exercise you will practice some more SQL queries. First let s practice queries on a single table. 1. Download SQL_practice.accdb to your I: drive. Launch Access 2016 and open the

More information

Using WebNow to Process the Fund Establishment Form

Using WebNow to Process the Fund Establishment Form Using WebNow to Process the Fund Establishment Form Fund Est in WebNow 1 Last Updated 3/28/14 Table of Contents TOPIC PAGE 1. General WebNow Information a. Introduction 3 b. Log in 3 c. Adobe Reader 3

More information

Enhancing your Page. Text Effects. Paragraph Effects. Headings

Enhancing your Page. Text Effects. Paragraph Effects. Headings Enhancing your Page You can make your pages more visually appealing and organize page content by using text effects, paragraph effects, macros, images, tables, etc. To begin, select the "Edit" button for

More information

Can I sort data without using the Sort dialog box?

Can I sort data without using the Sort dialog box? CHAPTER 24 Sorting in Excel Questions answered in this chapter: How can I sort sales transaction data so that transactions are sorted first by salesperson and then by product, by units sold, and in chronological

More information

Verifying a Restore Repository

Verifying a Restore Repository Verifying a Restore Repository As a part of the Laserfiche backup verification process, you may be asked to verify the contents of a Laserfiche restore repository. Once a month, an archival copy of the

More information

Concordance Basics. Part I

Concordance Basics. Part I Concordance Basics Part I 1 Getting Started 1 Familiarity with the Concordance environment is the first step in learning the multi-faceted features of this powerful program. This chapter focuses on learning

More information

Using Windows Explorer and Libraries in Windows 7

Using Windows Explorer and Libraries in Windows 7 Using Windows Explorer and Libraries in Windows 7 Windows Explorer is a program that is used like a folder to navigate through the different parts of your computer. Using Windows Explorer, you can view

More information

Personalizing SAP BusinessObjects Explorer Information Spaces

Personalizing SAP BusinessObjects Explorer Information Spaces Personalizing SAP BusinessObjects Explorer Information Spaces Applies to: SAP BusinessObjects Explorer and personalizing the display of data using Universes and Excel data sources. Summary This document

More information

Integrating Sintelix and ANB. Learn how to access and explore Sintelix networks in IBM i2 Analyst s Notebook

Integrating Sintelix and ANB. Learn how to access and explore Sintelix networks in IBM i2 Analyst s Notebook Integrating Sintelix and ANB Learn how to access and explore Sintelix networks in IBM i2 Analyst s Notebook 2 Integrating Sintelix and ANB By the end of this tutorial you will know how to: 1 2 3 Install

More information

Océ Engineering Exec. Advanced Import and Index

Océ Engineering Exec. Advanced Import and Index Océ Engineering Exec Advanced Import and Index Océ-Technologies B.V. Copyright 2004, Océ-Technologies B.V. Venlo, The Netherlands All rights reserved. No part of this work may be reproduced, copied, adapted,

More information

Corticon Rule Modeling Challenge Jan 2018 Order Promotions

Corticon Rule Modeling Challenge Jan 2018 Order Promotions Corticon Rule Modeling Challenge Jan 2018 Order Promotions Mike Parish The Problem The objective of this challenge is to help merchants to define various promotions for their sales orders and to automatically

More information

Math 1525 Excel Lab 1 Introduction to Excel Spring, 2001

Math 1525 Excel Lab 1 Introduction to Excel Spring, 2001 Math 1525 Excel Lab 1 Introduction to Excel Spring, 2001 Goal: The goal of Lab 1 is to introduce you to Microsoft Excel, to show you how to graph data and functions, and to practice solving problems with

More information

a. Establish a one-to-many relationship between the Items and Inventory tables.

a. Establish a one-to-many relationship between the Items and Inventory tables. Apply Your Knowledge Your school offers a business class in retail sales, and one of the class projects is to help manage the Snack Shack near the cafeteria from 11 A.M. to 1 P.M. every day. The Snack

More information

LUMINATE ONLINE : REPORTS 1

LUMINATE ONLINE : REPORTS 1 In Luminate Online, the reporting options are endless and can be used for email, TeamRaiser, Events, Constituent360, Donations and more. Understanding the features of reporting allows you to make sure

More information

Lab: Relational Universe Create Predefined Filters

Lab: Relational Universe Create Predefined Filters Lab: Relational Universe Create Predefined Filters Scenario You will add and configure predefined filters in the Business Layer to make them available in the Business Layer outline to be re-used in the

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

Designing and Building a Data Mining Project with Cube and OLAP

Designing and Building a Data Mining Project with Cube and OLAP Designing and Building a Data Mining Project with Cube and OLAP Project Description Buding a Business Analytic Data Mining Model using Microsoft BI Data Mining Tool and Data Warehouse and OLAP Cubes. Preparation

More information

Respondent Complete Analysis Report

Respondent Complete Analysis Report Analysis Report This session will cover the Analysis Report. The Analysis Report can be found in the Report Center, and presents a detailed report for each person who has completed the test. You may view

More information