By Scott Falla and Jamie Batiste 08/03/2010

Size: px
Start display at page:

Download "By Scott Falla and Jamie Batiste 08/03/2010"

Transcription

1 ACUSOFT Query Builder Query Builder Help and SQL Syntax By Scott Falla and Jamie Batiste 08/03/2010 Query Builder help and syntax.

2 Contents What Is Query Builder... 4 Introduction... 4 New Queries, Saving and Deleting A Query... 5 New Queries... 5 Save a Query... 5 Open a Query... 5 Delete a Query... 5 The Query Builder Interface... 7 The Data Browser... 7 Defining Relations and Joins... 7 Selecting Fields and Defining Criteria Using SQL functions Defining SQL Manually Defining SQL Manually Running the Query and the Result tab Exporting and Printing SQL Syntax Summary & Examples Logical Operators And, Or, Not Syntax IN and Between Syntax Using the Like Syntax Handling Text and Dates SQL Examples Active Entities with Partner, Manager, Administrator Database Fields Used P a g e

3 Entities without Database Code 1 Applied P a g e

4 What Is Query Builder Query Builder is a tool to build graphical queries against a database in manner similar to Microsoft Access and SQL Server tools. Introduction The Acumen Query Builder is a visual interface used for the creation of complex queries, it may be utilized in much the same manner as MS-Access query design interface. The interface essentially consists of the following four panes: DB Browser pane, which displays the database objects for the currently active database connection. This connection is automatically generated for the user. Relations pane, in which relations and joins are defined for selected database objects, Columns pane, in which the user selects fields and defines criteria, as well as grouping and sorting, SQL pane, in which the finalized SQL command is displayed or directly entered. Using the DB Browser pane one may display the database objects, such as tables and views. The user may drag-drop objects from the DB Browser pane into the Relations pane, in which relations or joins between objects may be defined. In the Columns pane the user may define fields or expressions using the Columns functions toolbar. In addition, criteria, grouping and sorting may be defined via this Columns pane. All these operations together construct the SQL statement displayed in the SQL pane. 4 P a g e

5 New Queries, Saving and Deleting A Query New Queries Query Builder opens a new query initially; however you can open a new query by clicking on New (File New or CTRL + N). Save a Query To save a query, click on Save (File Save or CTRL + S). You will then be prompted to enter a file name. The Query will default to New Query. If you wish to save an original query by a different author, click on Save As and provide a different name. Open a Query To open an existing query, select Open (File Open or using the short cut Ctrl + O). Select the query name from the list available Open or Double Click opens the selected query. The colours indicate public or personal queries: Pale Blue Public queries. You can open this query but cannot save over the original unless you wrote the query initially. White Personal query. No other user can see this query. You can save/amend at will. You can display just the personal queries by selecting the Only Show My Queries check box. Delete a Query If a query is no longer used you can delete it if you originally wrote the query. Click on Delete (File Delete) then select the query you wish to remove and click on Delete. 5 P a g e

6 Answer Yes to delete the query or No to keep it. 6 P a g e

7 The Query Builder Interface The Data Browser The DB Browser pane is used for displaying the database table, view of the currently active connection. Essentially, there are Tables and View under the database name in the DB Browser pane. The Tables folder contains a list of all tables you are allowed to see, expanding each tabled displays the fields associated with it. Similarly, the Views folder will contains the views, with each view object. Expanding the view displays fields. These objects may be drag-dropped into the Relations pane, where you can select which fields you wish to see and link tables/views together. Defining Relations and Joins For more information on SQL syntax see SQL Syntax Summary & Examples The Relations pane is used to link similar fields between table or view objects (see below). Essentially, objects are drag-dropped from the DB Browser pane into the Relations pane, where they are displayed as lists of fields with check-boxes. Fields between a pair from these objects in the Relations pane may be related via drag-drop, in this way, defining a relation or a join between them. When a join is defined via drag-drop between two objects in the Relations pane, a join line is drawn with a diamond at the middle. The actual SQL is inserted into the SQL pane in the FROM-clause of the SQL command. In the case, when the related fields have an enforced constraint relation between foreign key and primary key, this line will have respectively the 7 P a g e

8 infinity and key icons at the endpoints. Otherwise there will be no icons at the endpoints of the join line. The Join Line Properties dialog may be used for further specifics about the join relation. For example, defining the operator between the related fields, as well as the join type (i.e. INNER, OUTER, LEFT, RIGHT or FULL). The following are all possible operators between related fields: { =, <>, <, <=, >, >= }. As we see above, the user may use the right-mouse click on the diamond icon of the join to popup the menu, from which selecting the Properties menu item, the Join Line Properties dialog may be displayed. Observe that if in this dialog the join operator is selected to be other than the equality symbol, then this operator will be shown in the diamond icon. Moreover, the join type is defined via the Include rows section of the dialog, as a result of which the diamond shape is complemented with brackets on the left or the right side. For example, see Figure 1.15, which shows the join lines for INNER, LEFT OUTER, and RIGHT OUTER join types. The join type may be also selected via the Select All Rows from menu items of the popup menu (triggered over the diamond). Sometimes when the user enters join conditions via the SQL pane directly, there may be situations when this join condition will have an expression instead of a field on one side of the equation (or inequality). In these cases the join line is drawn from a field of one object to the title bar of the other object in the Relations pane (corresponding to the expression), with the diamond icon having the f* label. Similarly, if both sides of the join condition equation contain expressions rather than simple fields, then the join line is drawn between the title bars of the objects. In addition to tables and views that are drag-dropped into the Relations pane from the DB Browser pane, the Relations pane may also contain nested SELECT-statements, which are entered directly as segments of the FROM-clause of the SQL command in the SQL pane. For 8 P a g e

9 example the following SQL command entered directly into the SQL pane will result into two objects: SELECT * FROM Entities INNER JOIN (SELECT * FROM Accounts) AS Acct ON Entities.Entity_Number = Acct.Entity_Number Namely, Entities and Accounts objects, where the field listing of Acct objects will be the field structure of the Accounts table. Note that all nested SELECT-statements must have object aliases. Moreover, if object alias is furnished then the corresponding object name in the Relations pane will be this alias; otherwise the actual object s name is used. Finally, the Relations pane may be used to select fields from the objects by simply checking the check-boxes corresponding to these field items. 9 P a g e

10 Selecting Fields and Defining Criteria For more information on SQL syntax see SQL Syntax Summary & Examples The Columns pane consists of the field columns grid and the SQL function toolbar sections The field columns grid consists of the following columns: Column Alias Object Object Alias Output Sort Type Sort Order Group By Criteria Or... This column is a combo-box control (with edit-box style), which initially contains a combined list of all field names derived from all the objects in the Relations pane. This column is an edit-box control, and is used for optional alias name entry for the content of the Column (by default it is empty). This column is a combo-box control (with edit-box style), which initially contains a list of the names of all objects in the Relations pane. This column is an edit-box control, and is used for optional object alias name entry for the content of the Object grid-column (by default it is empty). This column is a check-box control, and is used to indicate whether the field is to be outputted or not. This column is a combo-box control containing the choices Ascending, Descending and No-Sort. This column is a combo-box control containing the possible order choices depending on the currently selected sort fields. For example, if we have 3 sort fields selected, then the choices will be 1, 2, 3, and No-Sort. This column is a check-box control, and is used to indicate whether the field is used as aggregate. This column is an edit-box control, and is used to enter criteria for the query. This column is an edit-box control, and is used to enter criteria for the query. Note that for a new field-row in the Columns pane, initially the Column combo-box lists a combined list of all field names derived from all the objects in the Relations pane, but if the 10 P a g e

11 Object grid-column is specified this list will be restricted to only the field names of the selected object. Similarly, the Object combo-box initially lists the object names of all objects in the Relations pane, but when the Column grid-column is not empty, only object names that have this Column value as a field name will be listed. The Columns pane is mainly used to define criteria for the currently open query. In the most standard situation the user may define query criteria by selecting a field from the Column gridcolumn, and then entering some value under the Criteria grid-column. This value may be preceded with one of the following operators =, <, >, <=, >=,!<,!>,!=, <>, IS, IS NOT, NOT, IN, LIKE, and BETWEEN. Note that the default operator is =, so that if the user does not specify an operator the equality is assumed. Observe that when the user specifies criteria via direct entry into the WHERE-clause of the SQL statement in the SQL pane, some of the conditions may be considered expressions and may entirely be put under the Column grid-column. This is specially the case when a criteria condition cannot be represented in the following standard form: <field_name> <operator> <value> Also, note that anything following the LIKE operator will be automatically put inside quotes (if it is not already inside quotes). The syntax of the LIKE-expression, which may be any regular expression, depends on the back-end database engine. For example, in the case of the MS-SQL Server the syntax is outlined below: Wildcard character Description Example % Any string of zero or more characters. WHERE Surname LIKE Har% will include all Surnames which start with Har, for example Harry, Harold, etc. _ (underscore) Any single character. WHERE Surname LIKE H_r_ld will include all Surnames which start with H and end with ld, with three middle characters separated with an r, for example Herald, Harold, etc. [] Any single character within the specified range ([a-f]) or set ([abcdef]). WHERE Surname LIKE H[ae]rald will include all Surnames which start with H and end with rald, with one character in the set {a, e}, for example Herald, Harald, etc. 11 P a g e

12 [^] Any single character not within the specified range ([^a-f]) or set ([^abcdef]). WHERE Surname LIKE H[^a]rald will include all Surnames which start with H and end with rald, with one character between them that is not an a, for example Herald, Hyrald, but not Harald. We illustrate next the usage of the grid in the Columns pane. Essentially, the vertical direction represents conjunction (i.e. AND), while the horizontal direction represents disjunction (i.e. OR). For example, if we want to query all the contact names of the customers whose last names start with John and first name is Ben, or whose last name is Benjamin and the first name starts with Frank, then we may enter the following entries in the cells of the Columns grid: Column Criteria Or Or Surname LIKE John% = Benjamin Forename = Ben LIKE Frank% This generates the following WHERE-clause in the SQL pane: WHERE (Surname LIKE John% AND Forename = Ben ) OR (Surname = Benjamin AND Forename LIKE Frank% ) Observe that we may include several disjunctions under one Criteria/Or grid-cell. For example, the following WHERE-clause WHERE ((Surname LIKE John% OR Surname LIKE Jon% ) AND Forename = Ben ) OR (Surname = Benjamin AND Forename LIKE Frank% ) may be represented in the following way: Column Criteria Or Or Surname LIKE ( John% OR Jon% ) = Benjamin Forename = Ben LIKE Frank% Note that more Or columns may be added as needed and that any criteria condition for a query may be represented into this grid of the Columns pane, given that complex expressions involving SQL functions may be entirely included in the Column grid-column not using the Criteria/Or grid-columns. 12 P a g e

13 Using SQL functions The SQL functions toolbar features include all the SQL functions that are needed for the creation of complex queries. It is destined to help novice SQL users to get started without referencing various reference books for the syntax of the SQL functions supported in the particular backend database engine in use. These functions are categorized into 10 dropdown combo-box buttons plus two buttons as is shown below. In this section we will outline their general usage. We illustrate now the general usage of the SQL functions toolbar. Essentially, there are two ways to use these SQL functions: Select fields in the Columns pane and then apply the SQL function, Apply the SQL function without any selection in the Columns pane, The first method will substitute some arguments of the selected function by the selected field names and then insert the syntax string into the SQL pane at the current mouse-cursor location. While the other method will insert the syntax string into the SQL pane, with all arguments of the SQL function being dummy variables. Note that these dummy variables must be replaced with proper values after the insertion. In general, all the dummy arguments of an inserted function must be replaced by either a field name or some constant value. 13 P a g e

14 For example to apply the Left SQL function to the ContactName field, we first position the mouse-cursor in a desired location in the SQL pane, then select the ContactName field-row in the Columns pane. Then we drop-down the String functions toolbar button and select the Left function option from the drop-down list. As a result of these operations the following string will be inserted into the current mouse-cursor location in the SQL pane: LEFT(Customers.ContactName, nlen) Where nlen is a dummy variable and therefore must be replaced by some number. Note that when the focus of the active pane becomes the Relations pane, the Columns pane is updated so that a new field-row is appended as a result of these operations. 14 P a g e

15 Defining SQL Manually For more information on SQL syntax see SQL Syntax Summary & Examples The user may define a query directly via the SQL pane, using this pane as an SQL editor. To check the validity of the SQL text that is entered manually into the SQL pane, the user may habitually use the CTRL+F5 short-key to trigger the Check SQL Syntax button (or alternatively click this button). This will check the SQL text against the backend database defined by the current data access connection. One may also copy / paste text from external programs into the SQL pane, for example the user may use the Get Details command over the DB Browser pane, from which text may be copied to be pasted directly into the SQL pane. Direct entry into the SQL pane is indispensable when the query is one of the following types: INSERT SQL statement, UPDATE SQL statement, DELETE SQL statement, We should emphasize that for such SQL statements the Relations and Columns panes may be useless and therefore the Query Builder interface may be used only as an SQL editor. Record retrieval can be limited by using the WHERE statement. The WHERE clause is used to specify that only certain rows of the table are displayed, based on the criteria described in that WHERE clause For more information on using the WHERE clause see SQL Syntax Summary & Examples 15 P a g e

16 Running the Query and the Result tab After creating a query via the visual interface, the user may execute the query by clicking the blue arrow button in the toolbar on the right of the tabs, or use the Execute menu item under the Command menu or alternatively push the F5 short-key on the keyboard. When executing a query, the resulting records will be displayed in the Result tab-view. Note that in the case when a query needs a long time to execute, the arrow button becomes disabled and the red stop button becomes enabled, so that the user may interrupt the execution process. Exporting and Printing The export and print features apply to both the content of the SQL pane and the content of the Result tab-view. In particular, using copy/paste operations the user may copy the content of the SQL pane to the clipboard, and then paste this content into another text editor application or Excel. The user may also print the content of the SQL pane to get a hardcopy of the query text derived in the Results Tab. In addition to the export and print operations there are Find and Replace operations that may be applied on the content of the SQL pane. In the case of the Result tab-view, the copy/paste operation is more useful, since any segment of the result grid may be copy/paste into other MS-Office applications (e.g. Excel, Word, etc.). The user may also print the result of a query via the Print menu item. In addition, the user may use the Find operation to search for a particular text in the result grid. 16 P a g e

17 SQL Syntax Summary & Examples Below are several sections covering the basics of SQL syntax. Logical Operators Actual SQL Syntax Description <> Not Equal to = Equal to > Greater than < Less than <= Less Than or Equal To >= Greater Than or Equal To The WHERE clause is used to specify that only certain rows of the table are returned, based on the criteria described in that WHERE clause. It is more easily understood by looking at a couple of examples. If you wanted to see the Accounts with account number greater or equal to then: Select * From Accounts Where Account_Number >= Notice that the >= (greater than or equal to) sign is used, as we wanted to see if there is an account The WHERE statement, Account_Number >= 10000, is known as a condition. The same can be done for text columns: Select * From Accounts Where Account_Name = Creditors This will display all accounts whose Name equals Creditors. Make sure all Text statements are enclosed in single quotes * +. And, Or, Not Syntax The AND operator joins two or more conditions, and displays a row only if that row's data satisfies ALL conditions listed (i.e. all conditions hold true). For example, to display all Bank Accounts that has an Account Number > 100: 17 P a g e

18 Select * From Accounts Where Acount_Number > 100 And Asset_Type = Bank The OR operator can also join two or more conditions, but returns a row if ANY of the conditions listed hold true. For example Select * From Accounts Where Acount_Number > 100 Or Asset_Type = Bank This would bring back ALL accounts whose account numbers are greater then 100 and ALL Accounts which have an Asset Type of Bank AND & OR can be combined, for example: Select * From Accounts Where Acount_Number > 100 And Asset_Type = Bank Or Account_Name = 30-Day Deposit Account 18 P a g e

19 IN and Between Syntax Actual SQL Syntax Description In(x,x,x,x,x) Everything that matches the criteria entered Would be the same as doing X=1 and x=2 and x=3 etc Between X and X Select records from and to values inclusively, would be the same as doing "x=> and <=x" If you wanted to see the Accounts with account numbers 100, 101, 104 and 121 then: Select * From Accounts Where Account_Number in (100, 101, 104, 121) Where as: Select * From Accounts Where Account_Number Between 100 and 130 Would give all accounts from 100 to 130 inclusive Using the Like Syntax Actual SQL Syntax Description Like% Provides a wildcard text search e.g. If you wanted to see the Accounts but were unsure of the spelling of the account name then you can use the Like clause. Like can be used as follows Select * From Accounts Where Account_Name Like Acumen% Will return all records where the account name starts with Acumen Select * From Accounts Where Account_Name Like &Acumen% Will return all records where the account name contains Acumen Select * From Accounts Where Account_Name Like %Acumen Will return all records where the account name ends with Acumen 19 P a g e

20 Handling Text and Dates Depending on the criteria you are using there are several rules that must be adhered to in order to create SQL that will run correctly. Dates Dates should be entered in single quotes in the format of YYY-MM-DD For example: Select * From GL_Transactions Where Value_Date = This would return all transactions where the value date was equal to the 31 st December 2005 Text Text should be entered in single quotes For example: Select * From Employees Where Surname = Smith This would return all employees where the surname was equal to Smith When using strings in the IN clause, simply enclose each piece of criteria in single quotes For example: Where Account_Name in ( Creditors, Debtors ) 20 P a g e

21 Appendix SQL Examples Here are a set of queries that will help answer frequently asked questions. Simply paste the enclosed text into the SQL pane of Query Builder. These are a good foundation for more advanced queries. Active Entities with Partner, Manager, Administrator This query lists all active entities and displays the partner, manager or administrator if available. To display all entities, remove the criteria in the Status column. Tables used: Note: 1. Entities Definition of an entity, entity number, name etc. 2. vwemployees (View) Employee details information which also includes some extra columns such as Actual_Name a combination of Surname, Forename. Use of a left join so that the entity is displayed regardless of whether or not there is a partner, manager or administrator. Use of the view vwemployees to display employee details. Assigning tables an alias to differentiate between 3 different versions of the same table or view (vwemployees). 21 P a g e

22 SELECT Entities.Entity_Number, Entities.Entity_Name, Partners.Actual_Name AS Partner_Name, Managers.Actual_Name AS Manager_Name, Administrators.Actual_Name AS Admin_Name, Entities.Status FROM Entities LEFT JOIN vmemployees Managers ON Entities.Manager = Managers.Employee_Number LEFT JOIN vmemployees Partners ON Entities.Partner = Partners.Employee_Number LEFT JOIN vmemployees Administrators ON Entities.Admin = Administrators.Employee_Number WHERE (Entities.Status = 1) Database Fields Used This query displays a list of all entities with the database fields assigned to each entity. Tables used: Note: 1. Entities Definition of an entity, entity number, name etc. 2. Entities_User_Defined_Data Link between an entity, database code and data. 3. User_Defined_Table_Codes List of database fields used. These are created in System Control File (Special System Control File) 4. User_Defined_Database_Codes Data or values for each table code. These are maintained under Table Codes Database. Look for the appropriate name as per the Table Codes above. Not all tables need to return information. Entities_User_Defined_Data below is only used to find linked information if available. This finds all entities and only displays database fields where they are available. 22 P a g e SELECT Entities.Entity_Number,

23 Entities.Entity_Name, Entities.Status, User_Defined_Table_Codes.Database_Name, User_Defined_Database_Codes.Description AS Value FROM Entities LEFT OUTER JOIN Entities_User_Defined_Data INNER JOIN User_Defined_Database_Codes INNER JOIN User_Defined_Table_Codes ON User_Defined_Table_Codes.Code = User_Defined_Database_Codes.Database_Code ON User_Defined_Database_Codes.Database_Code = Entities_User_Defined_Data.Database_Code AND User_Defined_Database_Codes.Code = Entities_User_Defined_Data.Code ON Entities_User_Defined_Data.Entity_Number = Entities.Entity_Number Entities without Database Code 1 Applied This query lists all entities without the first database code set. To change the database code you are looking for change the number in the sub query (1 below) valid values are from 1 to 12 and you can look this up in the System Control File (Special System Control File). Note: This uses a sub query to determine all the entities that do have the first database field set then lists all those entities that aren t set via the NOT x IN (statement) formula. This is easier to see in QueryBuilder in the Criteria column of Entity_Number. SELECT Entity_Number, Entity_Name, Status FROM Entities WHERE NOT Entity_number in ( SELECT Entity_Number FROM Entities_User_Defined_Data WHERE (Database_Code = 1)) 23 P a g e

24 Tables There are a large number of tables that relate to items used in Acumen. Here are a series of screenshots and the associated tables. Database Main Details 1. Entities_User_Defined_Data 2. User_Defined_Table_Codes 3. User_Defined_Database_Codes 4. Entity_Trading_Names 5,6. Database_Details 24 P a g e

25 Client Management 1. Entities 2, 3. Database_Details 4. Entities_Tax_Information Other Parties 1. Entities_Other_Parties Beneficial Owners 1. Beneficial_Owners 25 P a g e

26 Group Entities 1 and 2 Group_Entities_Relationships Documents and Events 1. Trust_Details 2. Entity_Changes 26 P a g e

27 Key Dates 1, 2 Database_Details 3. GL_Transactions 4. Entity_Account_Status_New 5. Database_Details 6. Financial_Year_Ends 27 P a g e

Follow these steps to get started: o Launch MS Access from your start menu. The MS Access startup panel is displayed:

Follow these steps to get started: o Launch MS Access from your start menu. The MS Access startup panel is displayed: Forms-based Database Queries The topic presents a summary of Chapter 3 in the textbook, which covers using Microsoft Access to manage and query an Access database. The screenshots in this topic are from

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

Veco User Guides. Grids, Views, and Grid Reports

Veco User Guides. Grids, Views, and Grid Reports Veco User Guides Grids, Views, and Grid Reports Introduction A Grid is defined as being a list of data records presented to the user. A grid is shown generally when an option is selected from the Tree

More information

STIDistrict Query (Basic)

STIDistrict Query (Basic) STIDistrict Query (Basic) Creating a Basic Query To create a basic query in the Query Builder, open the STIDistrict workstation and click on Utilities Query Builder. When the program opens, database objects

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

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

PL/SQL Developer 7.0 New Features. December 2005

PL/SQL Developer 7.0 New Features. December 2005 PL/SQL Developer 7.0 New Features December 2005 L/SQL Developer 7.0 New Features 3 Contents CONTENTS... 3 1. INTRODUCTION... 5 2. DIAGRAM WINDOW... 6 2.1 CREATING A DIAGRAM...6 2.2 SAVING AND OPENING

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Creating a Crosstab Query in Design View

Creating a Crosstab Query in Design View Procedures LESSON 31: CREATING CROSSTAB QUERIES Using the Crosstab Query Wizard box, click Crosstab Query Wizard. 5. In the next Crosstab Query the table or query on which you want to base the query. 7.

More information

Microsoft Access XP Queries. Student Manual

Microsoft Access XP Queries. Student Manual Microsoft Access XP Queries Student Manual Duplication is prohibited without the written consent of The Abreon Group. Foster Plaza 10 680 Andersen Drive Suite 500 Pittsburgh, PA 15220 412.539.1800 800.338.5185

More information

Simply Personnel Screen Designer

Simply Personnel Screen Designer Simply Personnel Screen Designer -Training Workbook- Screen Designer Page 1 Build 12.8 Introduction to Simply Personnel Screen Designer This document provides step-by-step guide for employee users to give

More information

DataMaster for Windows

DataMaster for Windows DataMaster for Windows Version 3.0 April 2004 Mid America Computer Corp. 111 Admiral Drive Blair, NE 68008-0700 (402) 426-6222 Copyright 2003-2004 Mid America Computer Corp. All rights reserved. Table

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

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

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

ICDL & OOo BASE. Module Five. Databases

ICDL & OOo BASE. Module Five. Databases ICDL & OOo BASE Module Five Databases BASE Module Goals taken from the Module 5 ICDL Syllabus Module 5 Database requires the candidate to understand some of the main concepts of databases and demonstrates

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Composer 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 2 Who should read this manual... 2 What s included in this manual... 2 Symbols and

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

SECTION 4 USING QUERIES. What will I learn in this section?

SECTION 4 USING QUERIES. What will I learn in this section? SECTION 4 USING QUERIES What will I learn in this section? Select Queries Creating a Query Adding a Table to Query Adding Fields to Query Single Criteria Hiding column in a Query Adding Multiple Tables

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Database Design Practice Test JPSFBLA

Database Design Practice Test JPSFBLA 1. You see field names, data types, and descriptions in: a. Datasheet View c. Form View b. Design View d. Property View 2. The data type for insurance policy numbers, such as 0012-M-340-25 or 43F33-7805,

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Copying, Pasting and Renaming Reports... 4 Creating and linking a report... 6 Auto e-mailing reports...

More information

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE C30147 RELATIONAL DATABASE Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards This module has been developed to further the learner s

More information

Asset Arena InvestOne

Asset Arena InvestOne Asset Arena InvestOne 1 21 AD HOC REPORTING 21.1 OVERVIEW Ad Hoc reporting supports a range of functionality from quick querying of data to more advanced features: publishing reports with complex features

More information

Running PeopleSoft Query Viewer and Running Query to Excel Basic Steps

Running PeopleSoft Query Viewer and Running Query to Excel Basic Steps Running PeopleSoft Query Viewer and Running Query to Excel Basic Steps Query Viewer enables you to: Search for a query using the basic or advanced search functions. Run a query (which displays results

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

Introduction to PeopleSoft Query. The University of British Columbia

Introduction to PeopleSoft Query. The University of British Columbia Introduction to PeopleSoft Query The University of British Columbia December 6, 1999 PeopleSoft Query Table of Contents Table of Contents TABLE OF CONTENTS... I CHAPTER 1... 1 INTRODUCTION TO PEOPLESOFT

More information

Quark XML Author September 2016 Update for Platform with Business Documents

Quark XML Author September 2016 Update for Platform with Business Documents Quark XML Author 05 - September 06 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository... Creating a new document from

More information

CounselLink Reporting. Designer

CounselLink Reporting. Designer CounselLink Reporting Designer Contents Overview... 1 Introduction to the Document Editor... 2 Create a new document:... 2 Document Templates... 3 Datasets... 3 Document Structure... 3 Layout Area... 4

More information

Introduction to Microsoft Access 2016

Introduction to Microsoft Access 2016 Introduction to Microsoft Access 2016 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc.

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. SURVEYOR/400 Users Guide Copyright 1996-2013, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Surveyor/400 version: 4.0.0 Publication date: August 7 th, 2013 Table of Contents SURVEYOR/400

More information

DAY 7: EXCEL CHAPTER 5. Divya Ganesan February 5, 2013

DAY 7: EXCEL CHAPTER 5. Divya Ganesan February 5, 2013 DAY 7: EXCEL CHAPTER 5 Divya Ganesan divya.ganesan@mail.wvu.edu February 5, 2013 1 FREEZING ROWS AND COLUMNS Freezing keeps rows and columns visible during scrolling Click View tab in Ribbon Click on Freeze

More information

Scenario Manager User Guide. Release September 2013

Scenario Manager User Guide. Release September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Document Control Number: 9MN12-62110017 Document Number: SMUG-13-FCCM-0017-6.2.1-01 Oracle

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Designer/Player 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 3 Who should read this manual... 3 What s included in this manual... 3 Symbols

More information

Table of Contents COURSE OVERVIEW... 5

Table of Contents COURSE OVERVIEW... 5 Table of Contents COURSE OVERVIEW... 5 DISCUSSION... 5 THE NEW DATABASE FORMAT... 5 COURSE TOPICS... 6 CONVENTIONS USED IN THIS MANUAL... 7 Tip Open a File... 7 LESSON 1: THE NEW INTERFACE... 8 LESSON

More information

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

FCKEditor v1.0 Basic Formatting Create Links Insert Tables FCKEditor v1.0 This document goes over the functionality and features of FCKEditor. This editor allows you to easily create XHTML compliant code for your web pages in Site Builder Toolkit v2.3 and higher.

More information

Exploring Microsoft Office Access Chapter 2: Relational Databases and Multi-Table Queries

Exploring Microsoft Office Access Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office Access 2010 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Quark XML Author October 2017 Update for Platform with Business Documents

Quark XML Author October 2017 Update for Platform with Business Documents Quark XML Author 05 - October 07 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository...3 Creating a new document from

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

PCB List Panel. Contents

PCB List Panel. Contents PCB List Panel Contents Function Content and Use Defining Panel Display Scope Working with Filtered Objects Displaying Workspace Selection Displaying Filtering Results Using the Panel to Select Objects

More information

Service Minder Plus Features/Helpful Hints

Service Minder Plus Features/Helpful Hints Service Minder Plus Features/Helpful Hints NOTE: These items will be addressed during the training sessions. This document is meant to be an overview resource for after completion of training. General

More information

Quark XML Author for FileNet 2.8 with BusDocs Guide

Quark XML Author for FileNet 2.8 with BusDocs Guide Quark XML Author for FileNet.8 with BusDocs Guide Contents Getting started... About Quark XML Author... System setup and preferences... Logging on to the repository... Specifying the location of checked-out

More information

Microsoft Excel XP. Intermediate

Microsoft Excel XP. Intermediate Microsoft Excel XP Intermediate Jonathan Thomas March 2006 Contents Lesson 1: Headers and Footers...1 Lesson 2: Inserting, Viewing and Deleting Cell Comments...2 Options...2 Lesson 3: Printing Comments...3

More information

Microsoft Office Illustrated. Using Tables

Microsoft Office Illustrated. Using Tables Microsoft Office 2007 - Illustrated Using Tables Objectives Plan a Table Create a Table Add Table Data Find and Replace Table Data Delete Table Data 2 Objectives Sort Table Data Use Formulas in a Table

More information

Microsoft Power Tools for Data Analysis #7 Power Query 6 Types of Merges/ Joins 9 Examples Notes from Video:

Microsoft Power Tools for Data Analysis #7 Power Query 6 Types of Merges/ Joins 9 Examples Notes from Video: Table of Contents: Microsoft Power Tools for Data Analysis #7 Power Query 6 Types of Merges/ Joins 9 Examples Notes from Video: 1. Power Query Has Six Types of Merges / Joins... 2 2. What is a Merge /

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Table of Contents. Table of Contents

Table of Contents. Table of Contents Powered by 1 Table of Contents Table of Contents Dashboard for Windows... 4 Dashboard Designer... 5 Creating Dashboards... 5 Printing and Exporting... 5 Dashboard Items... 5 UI Elements... 5 Providing

More information

SAS Business Rules Manager 1.2

SAS Business Rules Manager 1.2 SAS Business Rules Manager 1.2 User s Guide Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Business Rules Manager 1.2. Cary,

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Select Queries Norm Downey Chapter 2 pages 173 193 and Chapter 3 pages 218 249 2 1 This PowerPoint uses the Sample Databases on the class website Please download them now

More information

OSR Composer 3.7 User Guide. Updated:

OSR Composer 3.7 User Guide. Updated: OSR Composer 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this manual...

More information

Introductory Exercises in Microsoft Access XP

Introductory Exercises in Microsoft Access XP INFORMATION SYSTEMS SERVICES Introductory Exercises in Microsoft Access XP This document contains a series of exercises which give an introduction to the Access relational database program. AUTHOR: Information

More information

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

More information

Excel Advanced

Excel Advanced Excel 2016 - Advanced LINDA MUCHOW Alexandria Technical & Community College 320-762-4539 lindac@alextech.edu Table of Contents Macros... 2 Adding the Developer Tab in Excel 2016... 2 Excel Macro Recorder...

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Dashboard 8.0. User Guide

Dashboard 8.0. User Guide Dashboard 8.0 User Guide Table of Contents Dashboard User Reference Guide Table of Contents...2 Basic Navigation...3 Content Section...3 Filter Frame...4 Table Types...5 The Drilling Process...6 The Metric

More information

Administration. Training Guide. Infinite Visions Enterprise Edition phone toll free fax

Administration. Training Guide. Infinite Visions Enterprise Edition phone toll free fax Administration Training Guide Infinite Visions Enterprise Edition 406.252.4357 phone 1.800.247.1161 toll free 406.252.7705 fax www.csavisions.com Copyright 2005 2011 Windsor Management Group, LLC Revised:

More information

Service Minder Plus Features/Helpful Hints

Service Minder Plus Features/Helpful Hints Service Minder Plus Features/Helpful Hints This manual covers helpful hints and use of features. Note: These items will be addressed during the training sessions. This document is meant to be used as an

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

More information

SNC Quick Reference Guide v1.0

SNC Quick Reference Guide v1.0 SNC Quick Reference Guide v1.0 Page: 2 Table of Contents Table of Contents... 2 General navigation... 3 Queries... 8 Personalize your screen... 11 Alerts... 14 Notifications... 17 Assign Partner Product

More information

Quark XML Author October 2017 Update with Business Documents

Quark XML Author October 2017 Update with Business Documents Quark XML Author 05 - October 07 Update with Business Documents Contents Getting started... About Quark XML Author... Working with documents... Basic document features... What is a business document...

More information

Access 2007: Advanced Instructor s Edition

Access 2007: Advanced Instructor s Edition Access 2007: Advanced Instructor s Edition ILT Series COPYRIGHT Axzo Press. All rights reserved. No part of this work may be reproduced, transcribed, or used in any form or by any means graphic, electronic,

More information

Exploring Microsoft Office Word 2007

Exploring Microsoft Office Word 2007 Exploring Microsoft Office Word 2007 Chapter 3: Enhancing a Document Robert Grauer, Keith Mulbery, Michelle Hulett Objectives Insert a table Format a table Sort and apply formulas to table data Convert

More information

Working with Mailbox Manager

Working with Mailbox Manager Working with Mailbox Manager A user guide for Mailbox Manager supporting the Message Storage Server component of the Avaya S3400 Message Server Mailbox Manager Version 5.0 February 2003 Copyright 2003

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Queries Norm Downey This PowerPoint uses the Sample Databases on the class website Please download them now 2 1 What is a Query? Queries allow the user to manipulate the

More information

SAS Business Rules Manager 2.1

SAS Business Rules Manager 2.1 SAS Business Rules Manager 2.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Business Rules Manager 2.1: User's Guide. Cary,

More information

SOFTWARE SKILLS BUILDERS

SOFTWARE SKILLS BUILDERS USING ACCESS TO CREATE A SCIENCE DATABASE A database allows you to enter, store, retrieve, and manipulate data efficiently. You will first design your database and enter information into a table called

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

Tabular Building Template Manager (BTM)

Tabular Building Template Manager (BTM) Tabular Building Template Manager (BTM) User Guide IES Vi rtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

Stamina Software Pty Ltd. TRAINING MANUAL Viságe BIT VIEWER

Stamina Software Pty Ltd. TRAINING MANUAL Viságe BIT VIEWER Stamina Software Pty Ltd TRAINING MANUAL Viságe BIT VIEWER Version: 3 31 st October 2011 Viságe BIT Viewer TABLE OF CONTENTS VISÁGE BIT VIEWER... 2 ELEMENTS OF THE VISÁGE BIT VIEWER SCREEN... 3 TITLE...

More information

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information

Human Resource Management System User Guide

Human Resource Management System User Guide 11.0 Human Resource Management System User Guide Unit 0: Introduction Unit 1: HRMS Basics Unit 2: DateTracking Unit 3: Hiring a New Employee Unit 4: Electronic Approvals Unit 5: Maintaining Existing Employees

More information

IP4 - Running reports

IP4 - Running reports To assist with tracking and monitoring HRIS recruitment and personnel, reports can be run from Discoverer Plus. This guide covers the following process steps: Logging in... 2 What s changed? Changed reference

More information

IBM Optim. Edit User Manual. Version7Release3

IBM Optim. Edit User Manual. Version7Release3 IBM Optim Edit User Manual Version7Release3 IBM Optim Edit User Manual Version7Release3 Note Before using this information and the product it supports, read the information in Notices on page 79. Version

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure.

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure. Introduction to SymWord SymWord is a simple to use, talking, symbol-word processor. It has the basic functionality of a word processor. SymWord can also be configured to produce speech and/or display text

More information

A Guide to Quark Author Web Edition October 2017 Update

A Guide to Quark Author Web Edition October 2017 Update A Guide to Quark Author Web Edition 2015 - October 2017 Update Contents Getting Started...1 Smart Documents...1 Introduction to the Quark Author Web Edition User Guide...1 Quark Author Web Edition configuration...1

More information

Microsoft Access XP (2002) - Advanced Queries

Microsoft Access XP (2002) - Advanced Queries Microsoft Access XP (2002) - Advanced Queries Group/Summary Operations Change Join Properties Not Equal Query Parameter Queries Working with Text IIF Queries Expression Builder Backing up Tables Action

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

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

VUEWorks Report Generation Training Packet

VUEWorks Report Generation Training Packet VUEWorks Report Generation Training Packet Thursday, June 21, 2018 Copyright 2017 VUEWorks, LLC. All rights reserved. Page 1 of 53 Table of Contents VUEWorks Reporting Course Description... 3 Generating

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

1 User Guide. 1 Main screen

1 User Guide. 1 Main screen 1 User Guide 1 Main screen The opening screen appears in figure 1. Please wait until the loading bar (as shown in the bottom left) has filled up and the text changed from loading to completed. From the

More information

Quark XML Author for FileNet 2.5 with BusDocs Guide

Quark XML Author for FileNet 2.5 with BusDocs Guide Quark XML Author for FileNet 2.5 with BusDocs Guide CONTENTS Contents Getting started...6 About Quark XML Author...6 System setup and preferences...8 Logging in to the repository...8 Specifying the location

More information

PowerLink Views and Subsets. What do they do and how can they help me? John Grindley

PowerLink Views and Subsets. What do they do and how can they help me? John Grindley PowerLink Views and Subsets What do they do and how can they help me? John Grindley John.Grindley@cistech.net Power Link Views What are they? View considerations Agenda for Today Code files value, alias,

More information

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007)

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) 2 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Excel 2007) TABLE OF CONTENTS CHAPTER 1: GETTING STARTED... 5 THE EXCEL ENVIRONMENT...

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

More information