Teradata SQL Assistant Web Hands-On Lesson

Size: px
Start display at page:

Download "Teradata SQL Assistant Web Hands-On Lesson"

Transcription

1 Teradata SQL Assistant/Web Edition This product is designed to provide a simple way to execute and manage your queries against a Teradata, or other ODBC compliant database. SQL Assistant Web stores your queries for easy reuse, and provides you with an audit trail that shows the steps that produced your current results. Hands-On SQL Assistant! In this tutorial, experience the simplicity and ease of use of this powerful browser-based query tool. This hands-on session will show you some of the ways in which you can use this tool in order to maximize your efficiency. Hands-on activities will include connecting to a Teradata database, executing a query, and manipulating the results. With the new write capabilites you will also be able to create new databases, make copies of existing databases, and put data into your own databases. Lesson In this short lesson we will: 1. Start Teradata SQL Assistant/Web Edition 2. Connect to a Teradata system 3. Demonstrate SQL Assistant Web functions 1. Start Teradata SQL Assistant/Web Edition To start SQL Assistant Web click on Execute Teradata SQL Assistant/Web Edition.

2 2. Login to Teradata SQL Assistant/Web Edition Login using your SQL Login, Password, Default Database (if applicable), and click OK. This is the login you entered when you created your Teradata SQL Assistant/Web Edition account. Since you have access to all databases, and you do not have an assigned Default Database, you may enter one on the login screen. Entering a default database here is the same as using the database command in SQL Assistant (i.e. typing in and executing database db_watson to access db_watson). Imagine having a row of 3 mimes, a red mime, a blue mime, and a green mime, that obey your commands. By default, you are looking at the red mime. Any commands you issue apply only to the mime you are focusing on. In order to issue commands to the blue mime, you need to focus on that mime. Likewise, to issue commands to the green mime, you will need to adjust your focus again. In the context of a Teradata database, this is exactly what the database command does.

3 3. Teradata SQL Assistant/Web Edition SQL Assistant consists of a left frame to show the tree and a main window divided into 3 areas. A Query section where you enter the SQL query you wish to execute. A History section where information about previously executed queries are displayed. And an Answer Set section where your query results are displayed. The tree on the left is used to view the databases. By default, you will see DBC and your login name. The database named after your login name has been granted perm space, which allows you to write data to the database. This includes the ability to define databases, create table, and insert data. Further specifics regarding your perm space will be discussed later in this document. If you entered a Default Database in Step 2, it will also appear in the tree at the left. If you want to add additional databases, click Add above the tree on the left, and enter the desired database. Adding a database via this method allows you to view the database under the database tree. In order to access the database you will need to use the database command (i.e. database db_watson ) to direct your SQL commands to that particular database. If you click on the + sign next to the database you can expand to see the tables, views, Macros, and Procedures.

4 As an example, add the database db_watson (if not already there). Click on the + sign next to db_watson, then click on the + sign next to Tables to expand.

5 4. Executing Queries The top section is used to enter your query. If you have a query stored (query in a text format on your hard drive) you can use the Browse to search. You can Load the query into the query section and click Execute. You may also run the query by clicking Run. Once you have written a query, you may save it by clicking on. Enter your query in the query window, verify the maximum number of rows you wish to return and click the button. If you want to execute multiple queries in parallel, click the button. When you execute a query, you will see your query in the History section. If there is an error, you will see a brief description of the error on the bottom left of your screen. If you want to see more pages of your history, click on the numbers located above the Clear History button. You may also clear the entire history, or save it to a file. The results of your query will be displayed the Answer Set section. You can sort the answer set by clicking on the underlined column name of the screen. If you want to run the query again, you can click on Select and your query will appear in the Query section. Then click Execute. If you would like to add a brief notation about the query, click on Edit next to the query, and add your comments. 5. When you have finished using Teradata SQL Assistant/Web Edition, please click on the button on the top of the screen to disconnect. You may use your browser to go back to the Teradata University Network home page.

6 Notes on Write Access and Data Loading Write Access A new feature on TUN Web is write access. Students are automatically assigned the permanent space they need to create tables, indexes, and all database structures as well as copy and insert data. This perm space appears in the directory tree with a name that is the student s login id. Write access to their perm space is automatically granted to students when they register for a course. To use this space, students must change from the default database for your course to their perm space by issuing the database <database_name> command, referring to their perm space name as the <database_name>. Students may manage the rights for other students to use their perm space through SQL GRANT and REVOKE commands. Instructor accounts are granted similar privileges but with the additions of more permanent space and select access on student accounts in your courses. Batch Loading The following are instructions for how to load data into your perm space from an Excel spreadsheet, a Microsoft Access database, or from another Teradata database. We will illustrate below how to do this from each source. From Excel: 1. Open your spreadsheet with data 2. Click on the first cell, cell A1 Step 2

7 3. In the menu bar, go to Insert->Columns 4. Enter insert into <mytable> values(, replacing <mytable> with your desired table name and omitting the quotation marks as shown in the screen capture below for the example table sample_table. 5. Select and highlight the first column, A Step 4

8 6. In the menu bar, go to Edit->Fill->Down Step 6

9 7. Click on the empty cell at the end of the first data row. 8. Enter ); without the quotation marks. Steps 7 and 8 9. Now highlight all of the cells in the column from the first data row to the last either by clicking and dragging on that cell or by clicking on that cell, holding down the shift key, and clicking on the last row. 10. In the menu bar, go to Edit->Fill->Down. This places a closed parenthesis at the end of each row. 11. In the menu bar, go to File->Save As Note: Teradata Data Types have different requirements. For example, in the dataset above, character strings are enclosed by quotation marks (i.e. Sam ). For more information about data types, please reference the Teradata User Manuals: Data Types and Literals PDF document available via the Teradata Database User Manuals link on the main page.

10 12. Select CSV (Comma delimited) (*.csv) as the File Type 13. Save the file Step 12

11 14. Now open the file you saved in Notepad. Note pad can be found by clicking on Start, Run, type notepad, and press enter. 15. In the menu bar, go to Edit->Replace 16. Under Find what type in (, without the quotation marks 17. Under Replace with type in ( without the quotation marks

12 Steps 16 and Click on the Replace All button 19. In the menu bar, go to Edit->Replace 20. Under Find what type in,) without the quotation marks 21. Under Replace with type in ) without the quotation marks 22. Click on the Replace All button 23. In the menu bar, go to File->Save

13 24. Login to the SQL Assistant Web Edition utility and under Default Database type in your SQL username. Alternatively, if you are already logged-in to SQL Assistant, issue the database command to switch to your perm space as the database to use. Step 24

14 25. If you have not already done so, create a table for your data by executing the proper SQL commands to create the table, indexes, and constraints you wish to use. For example, to create a table, type in the SQL statement in the query window and click on the button, as illustrated below: Step 25

15 26. Click on the button at the top. This will bring up a new window. Then click on Browse. 27. Open your CSV file that you saved earlier Steps 26 and Click the Run button to execute the statements in your.csv file 29. Verify that the data were loaded correctly by executing the following SQL statement without the quotation marks and where <mytable> is replaced by the name of the table you created: select * from <mytable> order by 1; The order by 1 clause sorts the answer set alphabetically by the first column. Step 29

16 From Microsoft Access: 1. Run Microsoft Access 2. Open your Microsoft Access MDB file. 3. In Tables view, select/highlight a table 4. In the menu bar, go to File->Export Step 4

17 5. Specify the filename and location you want to export to 6. Select data type: Microsoft Excel (*.xls) 7. Click Export 8. Run Microsoft Excel 9. Open the file you just created from Export Steps 5 and 6

18 10. Click on Cell A1 Step 10

19 11. In the menu bar, go to Edit->Delete->Entire Row Step Save and Continue with Step 2 of the Microsoft Excel instructions above.

20 From Teradata (table copy): 1. These instructions are meant to copy all data from a table customer_t located in a database db_pvfc to your SQL account. Both customer_t and db_pvfc should be replaced by the actual names of the table and database you wish to copy from. 2. Login to the SQL Assistant Web Edition utility and under Default Database type in your SQL username Step 2

21 3. For illustration purposes, assume you wanted to create your own copy of the customer table from the db_pvfc database stored on the SQL Assistant server. Enter the following SQL statement without the quotation marks in the query window and click the Execute button: create table customer_t as db_pvfc.customer_t with no data; Step 3 4. Now repeat Step 3 with the following statement instead (this will make a complete copy of the customer_t table; you can, of course, write any SQL select statement to copy only select rows): insert into customer_t select * from db_pvfc.customer_t; 5. Verify that the table was copied correct by executing the following statement: select * from customer_t order by 1;

22 From Teradata (to create your own copy of one of the existing databases available with SQL Assistant): 1. These instructions are meant to copy all tables within a database db_pvfc_std to your SQL account. Note that db_pvfc_std should be replaced by the name of the database you wish to copy from. 2. To start, download and save the following text file: This text file is essentially a preassembled script file with a set of SQL commands to copy an existing database. Additionally, script files for each of the existing databases have been generated and are available through the Database Descriptions link on the bottom of the SQL Assistant login page. 3. Login to the SQL Assistant Web Edition utility and under Default Database type in your SQL username 4. Click on the Browse button. Locate and open copy_db_pvfc_std.txt. 5. Click on the Run button to execute the SQL statements within copy_db_pvfc_std.txt

23 That is all for our quick tour of the Teradata SQL Assistant/Web Edition. In conclusion, we hope that we have given you a brief insight into some of the capabilities of Teradata SQL Assistant/Web Edition, and that you will be motivated to learn more of its capabilities. The SQL Assistant help file (located in the upper right hand corner of the SQL Assistant screen), and the User s Guide (located on the Teradata University Network home page under the Teradata SQL Assistant/Web Edition executable) will give you a detailed description of the product.

Setting Up ALERE with Client/Server Data

Setting Up ALERE with Client/Server Data Setting Up ALERE with Client/Server Data TIW Technology, Inc. November 2014 ALERE is a registered trademark of TIW Technology, Inc. The following are registered trademarks or trademarks: FoxPro, SQL Server,

More information

Teacher Activities Page Directions

Teacher Activities Page Directions Teacher Activities Page Directions The Teacher Activities Page provides teachers with access to student data that is protected by the federal Family Educational Rights and Privacy Act (FERPA). Teachers

More information

Adobe Digital Signatures in Adobe Acrobat X Pro

Adobe Digital Signatures in Adobe Acrobat X Pro Adobe Digital Signatures in Adobe Acrobat X Pro Setting up a digital signature with Adobe Acrobat X Pro: 1. Open the PDF file you wish to sign digitally. 2. Click on the Tools menu in the upper right corner.

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

Using Remote Web Workplace Version 1.01

Using Remote Web Workplace Version 1.01 Using Remote Web Workplace Version 1.01 Remote web workplace allows you to access your Windows XP desktop through Small Business Server 2003 from a web browser. 1. Connect to the Internet in your remote

More information

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

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate. Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.

More information

Concession FTP User Guide May 2011 Version 1.2

Concession FTP User Guide May 2011 Version 1.2 Concession FTP User Guide May 2011 Version 1.2 Concessions FTP User guide Page 1 of 41 Contents Objective... 3 FTP User Guide Microsoft Windows XP... 5 Anatomy of the Files... 9 Working on your Files....

More information

MIDAS Authorization User Guide. Provider Portal

MIDAS Authorization User Guide. Provider Portal MIDAS Authorization User Guide Provider Portal Table of Contents Logging On... 2 Change Your Password... 4 Homepage/Welcome Screen... 5 Provider Management.. 5 Provider Demographics... 6 Provider Additional

More information

Asset Management Automatic Financials Upload on the MITAS Internet Property Management site

Asset Management Automatic Financials Upload on the MITAS Internet Property Management site Slide 1 - Title on the MITAS Internet Property Management site Page 1 of 38 Slide 2 - Objectives Section One Objectives In this section you will learn how to automatically upload financial data from the

More information

Connect to MySQL or Microsoft SQL Server using R

Connect to MySQL or Microsoft SQL Server using R Connect to MySQL or Microsoft SQL Server using R 1 Introduction Connecting to a MySQL database or Microsoft SQL Server from the R environment can be extremely useful. It allows a research direct access

More information

How to Copy A SQL Database SQL Server Express (Making a History Company)

How to Copy A SQL Database SQL Server Express (Making a History Company) How to Copy A SQL Database SQL Server Express (Making a History Company) These instructions are written for use with SQL Server Express. Check with your Network Administrator if you are not sure if you

More information

MEDIAplus administration interface

MEDIAplus administration interface MEDIAplus administration interface 1. MEDIAplus administration interface... 5 2. Basics of MEDIAplus administration... 8 2.1. Domains and administrators... 8 2.2. Programmes, modules and topics... 10 2.3.

More information

GeneSys. Unit Six.Two: Administering a 360 Project. genesysonline.net. psytech.com

GeneSys. Unit Six.Two: Administering a 360 Project. genesysonline.net. psytech.com GeneSys Unit Six.Two: Administering a 360 Project genesysonline.net Unit Six.Two: Objectives Add & Administer Sessions in a 360 Project Adding Individual 360 Sessions Bulk Importing 360 Sessions SELF Specified

More information

Importing from Tab-Delimited Files

Importing from Tab-Delimited Files January 25, 2012 Importing from Tab-Delimited Files Tab-delimited text files are an easy way to import metadata for multiple files. (For more general information about using and troubleshooting tab-delimited

More information

Jolly Server Getting Started Guide

Jolly Server Getting Started Guide JOLLY TECHNOLOGIES Jolly Server Getting Started Guide The purpose of this guide is to document the creation of a new Jolly Server in Microsoft SQL Server and how to connect to it using Jolly software products.

More information

OxCORT Oxford Colleges On-line Reports for Tutorials

OxCORT Oxford Colleges On-line Reports for Tutorials OxCORT Oxford Colleges On-line Reports for Tutorials Tutorial Office Role Version 4.3 BSP Training Team Business Services and Projects Contents Table of Contents 1. Introduction To This manual... 5 Pre-requisites...

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Importing and Exporting Databases in Oasis montaj

Importing and Exporting Databases in Oasis montaj Importing and Exporting Databases in Oasis montaj Oasis montaj provides a variety of importing and exporting capabilities. This How-To Guide covers the basics of importing and exporting common file types.

More information

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide March 2013 Education Solutions Development, Inc. What s Inside The information in this reference

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Opening a Database in Avery DesignPro 4.0 using ODBC

Opening a Database in Avery DesignPro 4.0 using ODBC Opening a Database in Avery DesignPro 4.0 using ODBC What is ODBC? Why should you Open an External Database using ODBC? How to Open and Link a Database to a DesignPro 4.0 Project using ODBC Troubleshooting

More information

How to Concatenate Cells in Microsoft Access

How to Concatenate Cells in Microsoft Access How to Concatenate Cells in Microsoft Access This tutorial demonstrates how to concatenate cells in Microsoft Access. Sometimes data distributed over multiple columns is more efficient to use when combined

More information

EVENT REGISTRATION UPLOADER DOCUMENTATION

EVENT REGISTRATION UPLOADER DOCUMENTATION August 8, 2012 EVENT REGISTRATION UPLOADER DOCUMENTATION The Purpose To aid in generating more accurate reporting for engagement, event data needs to be entered into Griffin. The Event Registration Uploader

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

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

Council of Ontario Universities. COFO Online Reporting System. User Manual

Council of Ontario Universities. COFO Online Reporting System. User Manual Council of Ontario Universities COFO Online Reporting System User Manual Updated September 2014 Page 1 Updated September 2014 Page 2 Table of Contents 1. Security... 5 Security Roles Defined in the Application...

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

Downloading RIT Account Analysis Reports into Excel

Downloading RIT Account Analysis Reports into Excel Downloading RIT Account Analysis Reports into Excel In the last lesson you learned how to access the Account Analysis detail and export it to Excel through the Account Analysis function. Another way to

More information

Database Assistant. Once Database Assistant is installed you must login to gain access to the database. Copyright 2009

Database Assistant. Once Database Assistant is installed you must login to gain access to the database. Copyright 2009 TOSHIBA Strata CIX Technical Bulletin March 2008 is a companion package to Voice Assistant. provides an interface between any Open Database Connectivity (ODBC) compliant database and Voice Assistant. This

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION

FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION Library Getting a Form 1. Click on Start a Form. (Alternatively, you can click on Library in the menu bar at the top) 2. This will open

More information

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE Pharmacy Affairs Branch Website Database Downloads PUBLIC ACCESS GUIDE From this site, you may download entity data, contracted pharmacy data or manufacturer data. The steps to download any of the three

More information

Active Directory User Management System (ADUMS)

Active Directory User Management System (ADUMS) Active Directory User Management System (ADUMS) Release 2.9.3 User Guide Revision History Version Author Date Comments (MM/DD/YYYY) i RMA 08/05/2009 Initial Draft Ii RMA 08/20/09 Addl functionality and

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Advanced BIAR Participant Guide

Advanced BIAR Participant Guide State & Local Government Solutions Medicaid Information Technology System (MITS) Advanced BIAR Participant Guide October 28, 2010 HP Enterprise Services Suite 100 50 West Town Street Columbus, OH 43215

More information

2. The Open dialog box appears and you select Text Files (*.prn,*.txt,*.csv) from the drop-down list in the lower right-hand corner.

2. The Open dialog box appears and you select Text Files (*.prn,*.txt,*.csv) from the drop-down list in the lower right-hand corner. How to open CSV file in Excel If you created a CSV file in another program, you can still open it as an Excel workbook in the usual way by using the Open command. Note. Opening the CSV file in Excel does

More information

COLLABORATION NAVIGATING CMiC

COLLABORATION NAVIGATING CMiC Reference Guide covers the following items: How to login Launching applications and their typical action buttons Querying & filtering log views Export log views to Excel User Profile Update info / Change

More information

Microsoft FrontPage 2003

Microsoft FrontPage 2003 Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State

More information

Google Docs A Tutorial

Google Docs A Tutorial Google Docs A Tutorial What is it? Google Docs is a free online program that allows users to create documents, spreadsheets and presentations online and share them with others for collaboration. This allows

More information

OLIVIA123 FOR ADMINISTRATORS. User Guide

OLIVIA123 FOR ADMINISTRATORS. User Guide OLIVIA123 FOR ADMINISTRATORS User Guide August 2014 OLIVIA123 for Administrators Contents OLIVIA123 Basic Functions... 1 Registration... 1 New Users... 1 Login... 1 Update Details... 1 Change Password...

More information

Infoview XIR3. User Guide. 1 of 20

Infoview XIR3. User Guide. 1 of 20 Infoview XIR3 User Guide 1 of 20 1. WHAT IS INFOVIEW?...3 2. LOGGING IN TO INFOVIEW...4 3. NAVIGATING THE INFOVIEW ENVIRONMENT...5 3.1. Home Page... 5 3.2. The Header Panel... 5 3.3. Workspace Panel...

More information

Using a Remote SQL Server Best Practices

Using a Remote SQL Server Best Practices Using a Remote SQL Server Best Practices This article will show the steps to setting up an SQL based survey starting with a new project from scratch. 1. Creating a New SQL Project from scratch a. Creating

More information

Oracle Business Intelligence (OBI) User s Guide October 2011

Oracle Business Intelligence (OBI) User s Guide October 2011 Page 1 of 9 Oracle Business Intelligence (OBI) User s Guide October 2011 OBI is a web-based reporting tool that enables PeopleSoft users to analyze and report on information stored in the PeopleSoft Finance

More information

BulkSMS Text Messenger Product Manual

BulkSMS Text Messenger Product Manual BulkSMS Text Messenger Product Manual 1. Installing the software 1.1. Download the BulkSMS Text Messenger Go to www.bulksms.com and choose your country. process. Click on products on the top menu and select

More information

Microsoft Access 2007

Microsoft Access 2007 How to Use: Microsoft Access 2007 Microsoft Office Access is a powerful tool used to create and format databases. Databases allow information to be organized in rows and tables, where queries can be formed

More information

Click on Faculty & Staff Then Staff Resources. Click on Kiosk

Click on Faculty & Staff Then Staff Resources. Click on Kiosk Click on Faculty & Staff Then Staff Resources Click on Kiosk 1 Login For First Time Users without a password, you will want to click where the arrow is instructing you. When prompted, you must use your

More information

2Creating Reports: Basic Techniques. Chapter

2Creating Reports: Basic Techniques. Chapter 2Chapter 2Creating Reports: Chapter Basic Techniques Just as you must first determine the appropriate connection type before accessing your data, you will also want to determine the report type best suited

More information

Registered Pesticide Product Search Online Tutorial. Dealer Agricultural Pesticide Sales Reporting Application Tutorial

Registered Pesticide Product Search Online Tutorial. Dealer Agricultural Pesticide Sales Reporting Application Tutorial 1 Pesticide Dealer Sales Reporting Online Tutorials Registered Pesticide Product Search Online Tutorial and Dealer Agricultural Pesticide Sales Reporting Application Tutorial Tutorial Link: http://www.mda.state.mn.us/~/media/files/licensing/chemicals/dealersalestutorial.ashx

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

account multiple solutions

account multiple solutions Quick Start Guide 1 Our easy to use guide will get you up and running in no time! The guide will assist you to: Validate bank numbers Validate ID numbers Access number tips Release funds to your bank Transfer

More information

How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software

How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software There are three phases to completing the transfer process. Phase I Phase II Phase III Export

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS

DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS WORD PERFECT FORMAT MARCO ITEM #A-3LI - 2.25 H x 3W Inserts First create a new document. From the main page

More information

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

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7 ECAT SWE Exchange Customer Administration Tool SWE - Exchange Customer Administration Tool (ECAT) Table of Contents About this Guide... 3 Audience and Purpose... 3 What is in this Guide?... 3 CA.mail Website...

More information

Offline Remittance Processing Standalone, Service-Based, Multi-Client, Attorney Options

Offline Remittance Processing Standalone, Service-Based, Multi-Client, Attorney Options Offline Remittance Processing Standalone, Service-Based, Multi-Client, Attorney Options User Manual 911 Central Parkway North, Suite 200 San Antonio, Texas 78232 (210) 403-8670 www.acttax.com Contents

More information

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences by Mike Dempsey Overview SQL Assistant 13.0 is an entirely new application that has been re-designed from the ground up. It has been

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

Web File Management with SSH Secure Shell 3.2.3

Web File Management with SSH Secure Shell 3.2.3 Web File Management with SSH Secure Shell 3.2.3 June 2003 Information Technologies Copyright 2003 University of Delaware. Permission to copy without fee all or part of this material is granted provided

More information

Analyzing Data Using Access

Analyzing Data Using Access Analyzing Data Using Access What you will do: Use Web Templates Import data from text files Ask questions of your data using queries Understand crosstab queries Create a report Use web forms Databases

More information

WhatCounts Newsletter System Manual

WhatCounts Newsletter System Manual WhatCounts Newsletter System Manual Last Updated: November 21, 2008 This instruction manual describes the basic steps required to create, edit, and manage a mailing list for use with the WhatCounts Email

More information

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3]

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] Pro-curo Software Ltd USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] CONTENTS Everyday use... 3 Logging on... 4 Main Screen... 5 Adding locations... 6 Working with locations... 7 Duplicate...

More information

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers NOTE: You can use these instructions to configure instructor and student machines. Software Required Microsoft Access 2007, 2010 MicroStrategy 9.3 Microsoft SQL Server Express 2008 R2 (free from Microsoft)

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

Importing and Exporting With SPSS for Windows 17 TUT 117

Importing and Exporting With SPSS for Windows 17 TUT 117 Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading

More information

Setting up Auto Import/Export for Version 7

Setting up Auto Import/Export for Version 7 Setting up Auto Import/Export for Version 7 The export feature button is available in the program Maintain Area of the software and is conveniently located in the grid toolbar. This operation allows the

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008

GUIDEWIRE. Introduction to Using WebMail. macrobatix. Learn how to: august 2008 macrobatix GUIDEWIRE august 2008 Introduction to Using WebMail Learn how to: Manage Your Inbox Compose a Message Activate Spam Filter Modify Spam Settings Check Held Messages *To download the complete

More information

JROTC Unit Management System (JUMS) User s Guide

JROTC Unit Management System (JUMS) User s Guide JROTC Unit Management System (JUMS) User s Guide 1 March 2016 Summary of Changes JUMS User Guide This revision, dated 1 March 2016 o Updates Chapter 3, paragraph 3-2, Import New Cadets from a File into

More information

EPO Online Filing. Advanced tutorials. Version 5.00 (Release 5.00) Copyright European Patent Office All rights reserved

EPO Online Filing. Advanced tutorials. Version 5.00 (Release 5.00) Copyright European Patent Office All rights reserved EPO Online Filing Advanced tutorials Version 5.00 (Release 5.00) Copyright European Patent Office All rights reserved Last Update: 16/11/2009 Document Version: OLF5_TutorialAdv_EN_091116.doc Table of contents

More information

Customer admin guide. UC Management Centre

Customer admin guide. UC Management Centre Customer admin guide UC Management Centre June 2013 Contents 1. Introduction 1.1 Logging into the UC Management Centre 1.2 Language Options 1.3 Navigating Around the UC Management Centre 4 4 5 5 2. Customers

More information

Accessing vlabs using the VMware Horizon View Client for OSX

Accessing vlabs using the VMware Horizon View Client for OSX Accessing vlabs using the VMware Horizon View Client for OSX This document will demonstrate how to download, install, and connect to a virtual lab desktop from a personal Mac OSX computer using the VMware

More information

Business Intelligence Tutorial

Business Intelligence Tutorial IBM DB2 Universal Database Business Intelligence Tutorial Version 7 IBM DB2 Universal Database Business Intelligence Tutorial Version 7 Before using this information and the product it supports, be sure

More information

Creating a Distribution List from an Excel Spreadsheet

Creating a Distribution List from an Excel Spreadsheet Creating a Distribution List from an Excel Spreadsheet Create the list of information in Excel Create an excel spreadsheet. The following sample file has the person s first name, last name and email address

More information

Accounts Receivable: Importing Remittance Data

Accounts Receivable: Importing Remittance Data Updated December 2015 Contents...3 Getting Started...3 Configuring the Excel Spreadsheet...3 Importing the Data...5 2015 ECi Software Solutions, Inc. This feature lets you import check remittance information

More information

How to Login Username Password:

How to Login Username Password: How to Login After navigating to the SelecTrucks ATTS Call Tracking & Support Site: www.selectrucksatts.com Select Corporate Link to login for Corporate owned Centers/Locations. Username: Your Email Address

More information

This manual provides information and instructions for Mac SharePoint Users at Fermilab. Using Sharepoint from a Mac: Terminal Server Instructions

This manual provides information and instructions for Mac SharePoint Users at Fermilab. Using Sharepoint from a Mac: Terminal Server Instructions Using SharePoint from a Mac: Terminal Server Instructions This manual provides information and instructions for Mac SharePoint Users at Fermilab. Page 0 Contents Fermilab Terminal Server Introduction...2

More information

Project Zip Code. Version 13.0. CUNA s Powerful Grassroots Program. User Manual. Copyright 2012, All Rights Reserved

Project Zip Code. Version 13.0. CUNA s Powerful Grassroots Program. User Manual. Copyright 2012, All Rights Reserved Project Zip Code Version 13.0 CUNA s Powerful Grassroots Program User Manual Copyright 2012, All Rights Reserved Project Zip Code Version 13.0 Page 1 Table of Contents Topic Page About Project Zip Code

More information

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members

ProjectWise Explorer V8i User Manual for Subconsultants & Team Members ProjectWise Explorer V8i User Manual for Subconsultants & Team Members submitted to Michael Baker International Subconsultants & Team Members submitted by Michael Baker International ProjectWise Support

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

You can get DrillToPIA.xla from http://www.mcmaster.ca/mosaic/support/drilltopia.xla

You can get DrillToPIA.xla from http://www.mcmaster.ca/mosaic/support/drilltopia.xla QUICK GUIDE for running nvision Reports (Statement of Operations) Step 1: Install DrillToPIA macro The DrillToPIA macro is an excel.xla file used to support look up information on the new statement of

More information

How To Write A Powerpoint Report On An Orgwin Database On A Microsoft Powerpoint 2.5 (Pg2) Or Gpl (Pg3) On A Pc Or Macintosh (Pg4) On An Ubuntu 2.2

How To Write A Powerpoint Report On An Orgwin Database On A Microsoft Powerpoint 2.5 (Pg2) Or Gpl (Pg3) On A Pc Or Macintosh (Pg4) On An Ubuntu 2.2 SQL Excel Report Library Setup and Utilization Table of Contents Introduction... 3 Exporting Data to SQL... 3 Downloading the SQL Reports... 5 SQL Settings Configuration... 6 Site Options Configuration:...

More information

The Welcome screen displays each time you log on to PaymentNet; it serves as your starting point or home screen.

The Welcome screen displays each time you log on to PaymentNet; it serves as your starting point or home screen. PaymentNet Cardholder Quick Reference Card Corporate Card ffwelcome to PaymentNet The Welcome screen displays each time you log on to PaymentNet; it serves as your starting point or home screen. PaymentNet

More information

Rational Software. Getting Started with Rational Customer Service Online Case Management. Release 1.0

Rational Software. Getting Started with Rational Customer Service Online Case Management. Release 1.0 Rational Software Getting Started with Rational Customer Service Online Case Management Release 1.0 Table of Contents 1. Introduction 1 2. Site Capabilities 1 2.1 Service Requests 1 2.2 Solutions Knowledge

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Welcome to Business Internet Banking

Welcome to Business Internet Banking Welcome to Business Internet Banking Member FDIC Table of Contents Logging On to Business Internet Banking. 3 Viewing Balances. 6 Viewing Transaction Information. 7 Issuing Stop Payments. 9 Viewing estatements.

More information

Setting Up a CyberSource Web Payment Account

Setting Up a CyberSource Web Payment Account Setting Up a CyberSource Web Payment Account Contents Setting Up a CyberSource Web Payment Account... 1 Introduction... 1 Setting Up a CyberSource Account... 2 Get Username and Password... 2 Log in to

More information

EARTHSOFT DNREC. EQuIS Data Processor Tutorial

EARTHSOFT DNREC. EQuIS Data Processor Tutorial EARTHSOFT DNREC EQuIS Data Processor Tutorial Contents 1. THE STANDALONE EQUIS DATA PROCESSOR... 3 1.1 GETTING STARTED... 3 1.2 FORMAT FILE... 4 1.3 UNDERSTANDING THE DNREC IMPORT FORMAT... 5 1.4 REFERENCE

More information

Contents. Accessing Compensation Reports Generating Compensation Reports. Saving PDF Reports after Viewing Printing PDF Reports

Contents. Accessing Compensation Reports Generating Compensation Reports. Saving PDF Reports after Viewing Printing PDF Reports Broker Compensation Reports Online Contents Accessing Compensation Reports Generating Compensation Reports PDF o o Excel o o o Saving PDF Reports after Viewing Printing PDF Reports Exporting Reports to

More information

WatchDox Administrator's Guide. Application Version 3.7.5

WatchDox Administrator's Guide. Application Version 3.7.5 Application Version 3.7.5 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Planning and Managing Projects with Microsoft Project Professional 2013

Planning and Managing Projects with Microsoft Project Professional 2013 Slides Steps to Enter Duration: 1. In the Duration column of a task, enter a value, and press Enter on your keyboard Important Points: The default time unit is days, so when you enter 5, this becomes 5

More information

External Account Creation and Upload Instructions for the Local Government (LG) Audit Report Collection System

External Account Creation and Upload Instructions for the Local Government (LG) Audit Report Collection System External Account Creation and Upload Instructions for the Local Government (LG) Audit Report Collection System In order to submit data for any Department of Audits and Accounts (DOAA) web application,

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Instructions for Creating an Outlook E-mail Distribution List from an Excel File

Instructions for Creating an Outlook E-mail Distribution List from an Excel File Instructions for Creating an Outlook E-mail Distribution List from an Excel File 1.0 Importing Excel Data to an Outlook Distribution List 1.1 Create an Outlook Personal Folders File (.pst) Notes: 1) If

More information

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd.

VX Search File Search Solution. VX Search FILE SEARCH SOLUTION. User Manual. Version 8.2. Jan 2016. www.vxsearch.com info@flexense.com. Flexense Ltd. VX Search FILE SEARCH SOLUTION User Manual Version 8.2 Jan 2016 www.vxsearch.com info@flexense.com 1 1 Product Overview...4 2 VX Search Product Versions...8 3 Using Desktop Product Versions...9 3.1 Product

More information

HEALTH SAVINGS ACCOUNT EMPLOYER WEBSITE GUIDE

HEALTH SAVINGS ACCOUNT EMPLOYER WEBSITE GUIDE REGISTERING YOUR ACCOUNT FOR ONLINE ACCESS HEALTH SAVINGS ACCOUNT EMPLOYER WEBSITE GUIDE A note to accountholders with multiple account types with Sterling HSA: We now support a single login for all of

More information

HELP DESK MANUAL INSTALLATION GUIDE

HELP DESK MANUAL INSTALLATION GUIDE Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation

More information

In This Issue: Excel Sorting with Text and Numbers

In This Issue: Excel Sorting with Text and Numbers In This Issue: Sorting with Text and Numbers Microsoft allows you to manipulate the data you have in your spreadsheet by using the sort and filter feature. Sorting is performed on a list that contains

More information