Websense SQL Queries. David Buyer June 2009

Size: px
Start display at page:

Download "Websense SQL Queries. David Buyer June 2009 Be281@bfn.org"

Transcription

1 Websense SQL Queries David Buyer June 2009

2 Introduction The SQL queries that are listed here I have been using for a number of years now. I use them almost exclusively as an alternative to the Websense Explorer and Reporter which are limited. Hope you can get some use out of them. These queries were written and used with a bunch of different versions of Websense Enterprise. They haven t modified their database in awhile so these should still work until they decide to modify it. They work in a Microsoft SQL Server 2000 and That said, if you want to see what Websense Explorer is doing then in order to see some of the queries that Websense uses you can set the value "&gubed=1" (without the quotes) in the Websense Exporter after running a report to get all the debug and SQL info. It should be appended to the end of the URL and takes some practice to get it right. You also have to filter out all the extra "stuff" from the code to actually get something you can build on. The Websense database is not too complex but complex enough that it will take some work to understand and be able to code queries for. Just take your time and start hacking at it. If you come up with some other useful queries please let me know and I'll add them to this doc and give you credit.

3 Code 1 /*Websense uses the number of unique IP addresses within a 24 hour period for its license count. Run this for a 24 hour period to check on that count. If you have been getting those pesky "exceeded license count" s then run this to see how many licenses you will need to purchase. You can also use their ConsoleClient but this query is a more accurate measure.*/ SELECT COUNT (DISTINCT SOURCE_IP) AS IPs FROM INCOMING_VIEW --set start and end dates here WHERE (DATE_TIME > {d 'YYYY-MM-DD'}) (DATE_TIME < {d 'YYYY-MM-DD'})

4 Code 2 /*The Websense Explorer and Reporter are "ok" tools if you need to run a one user report but if you need to run a report on multiple users then it simply can't do it. Sure you could run multiple reports for each user but there just isn t enough time in the day. Use this query to run a report on multiple user names. If you only have one user you can still use this query. Just change the "in" parameter to "=" where noted*/ SELECT INCOMING.DATE_TIME as 'Date and Time', USER_NAMES.USER_FULL_NAME as 'Full Name', USER_NAMES.USER_LOGIN_NAME as 'Login ID', PROTOCOLS.NAME as 'Protocol', INCOMING.PORT as 'Port', INCOMING.FULL_URL as 'URL', CATEGORY.NAME as 'Category' FROM INCOMING (NOLOCK), USER_NAMES (NOLOCK), PROTOCOLS (NOLOCK), CATEGORY (NOLOCK) WHERE INCOMING.USER_ID = USER_NAMES.USER_ID INCOMING.PROTOCOL_ID = PROTOCOLS.ID INCOMING.CATEGORY = CATEGORY.CATEGORY --insert the user ids here --if using just one user then use the equal sign instead of the 'in' parameter USER_NAMES.USER_LOGIN_NAME in ( 'user1', 'user2', 'user3' ) --set start date here INCOMING.date_time BETWEEN convert (datetime, 'YYYY-MM-DD 00:00:00', 120) --set end date here convert (datetime, 'YYYY-MM-DD 23:59:59', 120) ORDER BY USER_NAMES.USER_FULL_NAME ASC, convert (varchar(10),incoming.date_time, 120) ASC, convert (varchar(10),incoming.date_time, 108) ASC

5 Code 3 /*This query is similar to the multiple users query but instead of multiple users it queries on multiple SOURCE IP addresses. Again, the Explorer and Reporter are good for single items but can't run reports on multiple sources. Use this query for this purpose. If you only have one IP you can still use this query. Just change the "in" parameter to "=" where noted*/ SELECT INCOMING.DATE_TIME as 'Date and Time', dbo.inttoip(incoming.source_ip_int) as 'IP Address', USER_NAMES.USER_FULL_NAME as 'Full Name', USER_NAMES.USER_LOGIN_NAME as 'Login ID', PROTOCOLS.NAME as 'Protocol', INCOMING.PORT as 'Port', INCOMING.FULL_URL as 'URL', CATEGORY.NAME as 'Category', DISPOSITION.DESCRIPTION as 'Disposition' FROM INCOMING (NOLOCK), USER_NAMES (NOLOCK), PROTOCOLS (NOLOCK), CATEGORY (NOLOCK), DISPOSITION (NOLOCK) WHERE INCOMING.USER_ID = USER_NAMES.USER_ID INCOMING.PROTOCOL_ID = PROTOCOLS.ID INCOMING.CATEGORY = CATEGORY.CATEGORY INCOMING.DISPOSITION_CODE = DISPOSITION.DISPOSITION_CODE --insert the ints of the IP here --if using just one IP then use the equal sign instead of the 'in' parameter INCOMING.SOURCE_IP_INT in ( ' ', ' ', ' ' ) --set start date here INCOMING.date_time BETWEEN convert (datetime, 'YYYY-MM-DD 00:00:00', 120) --set end date here convert (datetime, 'YYYY-MM-DD 23:59:59', 120) ORDER BY dbo.inttoip(incoming.source_ip_int) ASC, USER_NAMES.USER_FULL_NAME ASC, convert (varchar(10),incoming.date_time, 120) ASC, convert (varchar(10),incoming.date_time, 108) ASC

6 Code 4 /*This query is again similar to the multiple users query but instead of multiple users it queries on multiple DESTINATION IP addresses. If you only have one IP you can still use this query. Just change the "in" parameter to "=" where noted*/ SELECT INCOMING.DATE_TIME as 'Date and Time', dbo.inttoip(incoming.source_ip_int) as 'IP Address', USER_NAMES.USER_FULL_NAME as 'Full Name', USER_NAMES.USER_LOGIN_NAME as 'Login ID', PROTOCOLS.NAME as 'Protocol', INCOMING.PORT as 'Port', INCOMING.FULL_URL as 'URL', CATEGORY.NAME as 'Category', DISPOSITION.DESCRIPTION as 'Disposition' FROM INCOMING (NOLOCK), USER_NAMES (NOLOCK), PROTOCOLS (NOLOCK), CATEGORY (NOLOCK), DISPOSITION (NOLOCK) WHERE INCOMING.USER_ID = USER_NAMES.USER_ID INCOMING.PROTOCOL_ID = PROTOCOLS.ID INCOMING.CATEGORY = CATEGORY.CATEGORY INCOMING.DISPOSITION_CODE = DISPOSITION.DISPOSITION_CODE --insert the integer of the destination IP here --if using just one IP then use the equal sign instead of the 'in' parameter INCOMING.DESTINATION_IP_INT in ( ' ', ' ', ' ', ' ' ) --set start date here INCOMING.date_time BETWEEN convert (datetime, 'YYYY-MM-DD 00:00:00', 120) --set end date here convert (datetime, 'YYYY-MM-DD 23:59:59', 120) ORDER BY dbo.inttoip(incoming.source_ip_int) ASC, USER_NAMES.USER_FULL_NAME ASC, convert (varchar(10),incoming.date_time, 120) ASC, convert (varchar(10),incoming.date_time, 108) ASC

7 Code 5 /*Websense doesn't store IP addresses as IP addresses. It stores them in converted integer form after performing a simple algorithm to them. In order to use the DESTINATION and SOURCE queries you must first convert IP addresses into integer form. Use this query to convert IP addresses to their intger values that Websense recognizes. You can use multiple IP addresses or just one.*/ varchar(20) varchar(255) bigint bigint bigint bigint bigint int int int int int --put IP's here = ' , , , , , , ' --gets rid of the newline if using column of IP's, I hate when lines go beyond the screen so I use columns = replace(@strallip,char(13)+char(10),'') IF substring(@strallip, LEN(@strAllIp)-1,1)<>',' + ',' --add a comma to the end if it isn't there = 0 WHILE charindex(',',@strallip) > 0 BEGIN = substring(@strallip,0, charindex(',',@strallip)) --removes the first item from the list = substring(@strallip, charindex(',',@strallip)+1, LEN(@strAllIp) = as bigint) = cast((substring(@strip, as bigint) as bigint) = (@ci2-@ci1-1))) as bigint) as bigint)

8 = (@ci3-@ci2-1))) as bigint) = len(@strip) = as bigint) END = (@octet1 * ) + (@octet2 * 65536) + (@octet3 * 256)

9 Conclusion Once they are run you can save the query results as a TAB delimited csv file and then import that into an Access database. The table structure is as follows: For the User based queries: For the IP based queries: Once you have the data in the database you can then run some nice pretty reports. I have created some Crystal Reports that format all this data and make a nice report. I know there is probably a way to run the SQL code right from Crystal Reports so you can skip all the import stuff but I don t know Crystal Reports that well to pull it off. If you have a way to do it let me know. If you want the Crystal Reports that I have created me at be281@bfn.org and Ill send them to you. Here is generally what the Crystal Reports look like (real name and user name have been altered for obvious reasons).:

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

Learning Objective. Purpose The purpose of this activity is to give you the opportunity to learn how to set up a database and upload data.

Learning Objective. Purpose The purpose of this activity is to give you the opportunity to learn how to set up a database and upload data. Creating a Simple Database: Now with PostgreSQL 8 We are going to do the simple exercise of creating a database, then uploading the TriMet files from Activity 6. In the next activity, you will use SQL

More information

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved.

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved. 1 SerialMailer Manual For SerialMailer 7.2 Copyright 2010-2011 Falko Axmann. All rights reserved. 2 Contents 1 Getting Started 4 1.1 Configuring SerialMailer 4 1.2 Your First Serial Mail 7 1.2.1 Database

More information

MS ACCESS DATABASE DATA TYPES

MS ACCESS DATABASE DATA TYPES MS ACCESS DATABASE DATA TYPES Data Type Use For Size Text Memo Number Text or combinations of text and numbers, such as addresses. Also numbers that do not require calculations, such as phone numbers,

More information

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support.

Resources You can find more resources for Sync & Save at our support site: http://www.doforms.com/support. Sync & Save Introduction Sync & Save allows you to connect the DoForms service (www.doforms.com) with your accounting or management software. If your system can import a comma delimited, tab delimited

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

Sophos Enterprise Console Auditing user guide. Product version: 5.2

Sophos Enterprise Console Auditing user guide. Product version: 5.2 Sophos Enterprise Console Auditing user guide Product version: 5.2 Document date: January 2013 Contents 1 About this guide...3 2 About Sophos Auditing...4 3 Key steps in using Sophos Auditing...5 4 Ensure

More information

Summary. How-To: Active Directory Integration. April, 2006

Summary. How-To: Active Directory Integration. April, 2006 How-To How-To Integrate CanIt-PRO with Active Directory: April, 2006 Summary Several organizations use Active Directory to manage their user accounts. This paper describes how to integrate CanIt-PRO with

More information

Important Tips when using Ad Hoc

Important Tips when using Ad Hoc 1 Parkway School District Infinite Campus Ad Hoc Training Manual Important Tips when using Ad Hoc On the Ad Hoc Query Wizard screen when you are searching for fields for your query please make sure to

More information

Voice Over IP Information

Voice Over IP Information Voice Over IP Information Basic CISCO information The links below contain information specific to Cisco about VoIP: Cisco RADIUS Vendor-Specific Attributes for VoIP Call Authorization http://www.cisco.com/warp/public/cc/so/neso/vvda/pctl/distrib/radus_ov.htm

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

Exposed Database( SQL Server) Error messages Delicious food for Hackers

Exposed Database( SQL Server) Error messages Delicious food for Hackers Exposed Database( SQL Server) Error messages Delicious food for Hackers The default.asp behavior of IIS server is to return a descriptive error message from the application. By attacking the web application

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

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

****Also, if you have done previous promotions and have multiple mailing lists, make sure you select the most recent one.

****Also, if you have done previous promotions and have multiple mailing lists, make sure you select the most recent one. Instructions for Using the Integrated Direct Mail (IDM) System for BERNINA Direct Mail Pieces Getting Started Creating Your Mailer Checking Out Uploading Your Customer Lists Updating your Customer Lists

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

Microsoft SQL connection to Sysmac NJ Quick Start Guide

Microsoft SQL connection to Sysmac NJ Quick Start Guide Microsoft SQL connection to Sysmac NJ Quick Start Guide This Quick Start will show you how to connect to a Microsoft SQL database it will not show you how to set up the database. Watch the corresponding

More information

Intro to Databases. ACM Webmonkeys 2011

Intro to Databases. ACM Webmonkeys 2011 Intro to Databases ACM Webmonkeys 2011 Motivation Computer programs that deal with the real world often need to store a large amount of data. E.g.: Weather in US cities by month for the past 10 years List

More information

OBT Fax Service: Reporting and Broadcasting

OBT Fax Service: Reporting and Broadcasting 2008 Online Business Technologies Page 0 of 5 Self Reporting and Broadcasting With OBT s Fax Service **Should you encounter any problems, please contact us on: support@obt.com.au or call 1300 886 889 for

More information

User Manual. Crystal Report Integration

User Manual. Crystal Report Integration User Manual Crystal Report Integration Version 1.0 1 1 Contents 1 Introduction... 3 2 Integration Of Crystal Report... 3 2.1 Open Report and Process Window from Menu... 3 2.2 Give Access to Report and

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

Tenable for CyberArk

Tenable for CyberArk HOW-TO GUIDE Tenable for CyberArk Introduction This document describes how to deploy Tenable SecurityCenter and Nessus for integration with CyberArk Enterprise Password Vault. Please email any comments

More information

CounterPoint SQL and Magento ecommerce Interface

CounterPoint SQL and Magento ecommerce Interface CounterPoint SQL and Magento ecommerce Interface Requirements: CounterPoint SQL: 8.3.9, 8.4.2 Magento Community Edition: 1.5.1+ (older versions are not compatible due to changes in Magento s API) MagentoGo

More information

Ad Hoc Reporting: Data Export

Ad Hoc Reporting: Data Export Ad Hoc Reporting: Data Export Contents Ad Hoc Reporting > Data Export... 1 Export Format Options... 3 HTML list report (IMAGE 1)... 3 XML (IMAGE 2)... 4 Delimited Values (CSV)... 4 Fixed Width (IMAGE 10)...

More information

From Data Modeling to Data Dictionary Written Date : January 20, 2014

From Data Modeling to Data Dictionary Written Date : January 20, 2014 Written Date : January 20, 2014 Data modeling is the process of representing data objects to use in an information system. In Visual Paradigm, you can perform data modeling by drawing Entity Relationship

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

Sending Email on Blue Hornet

Sending Email on Blue Hornet Sending Email on Blue Hornet STEP 1 Gathering Your Data A. For existing data from Advance or Outlook, pull email address, first name, last name, and any other variable data you would like to use in the

More information

SonicWALL GMS Custom Reports

SonicWALL GMS Custom Reports SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview

More information

Table of Contents. PBX Integration and API Guide - SmileTiger TeleMeeting Server 2011

Table of Contents. PBX Integration and API Guide - SmileTiger TeleMeeting Server 2011 SmileTiger Software Corporation SmileTiger TeleMeeting Server 2011 PBX Integration and API Guide Table of Contents 1 Overview... 3 2 System Architecture... 4 3 Pre-requirement:... 6 4 Deployment... 7 4.1

More information

Dynamic DNS How-To Guide

Dynamic DNS How-To Guide Configuration Guide Dynamic DNS How-To Guide Overview This guide will show you how to set up a Dynamic DNS host name under the D-Link DDNS service with your D-Link ShareCenter TM. Dynamic DNS is a protocol

More information

Introduction This document s purpose is to define Microsoft SQL server database design standards.

Introduction This document s purpose is to define Microsoft SQL server database design standards. Introduction This document s purpose is to define Microsoft SQL server database design standards. The database being developed or changed should be depicted in an ERD (Entity Relationship Diagram). The

More information

How To Use The Correlog With The Cpl Powerpoint Powerpoint Cpl.Org Powerpoint.Org (Powerpoint) Powerpoint (Powerplst) And Powerpoint 2 (Powerstation) (Powerpoints) (Operations

How To Use The Correlog With The Cpl Powerpoint Powerpoint Cpl.Org Powerpoint.Org (Powerpoint) Powerpoint (Powerplst) And Powerpoint 2 (Powerstation) (Powerpoints) (Operations orrelog SQL Table Monitor Adapter Users Manual http://www.correlog.com mailto:info@correlog.com CorreLog, SQL Table Monitor Users Manual Copyright 2008-2015, CorreLog, Inc. All rights reserved. No part

More information

Sage Abra Timesheet. Quick Start Guide

Sage Abra Timesheet. Quick Start Guide Sage Abra Timesheet Quick Start Guide 2010 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered trademarks or trademarks

More information

A table is a collection of related data entries and it consists of columns and rows.

A table is a collection of related data entries and it consists of columns and rows. CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.

More information

How to configure the DBxtra Report Web Service on IIS (Internet Information Server)

How to configure the DBxtra Report Web Service on IIS (Internet Information Server) How to configure the DBxtra Report Web Service on IIS (Internet Information Server) Table of Contents Install the DBxtra Report Web Service automatically... 2 Access the Report Web Service... 4 Verify

More information

MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt

MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt Lesson Notes Author: Pamela Schmidt Tables Text Fields (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers. or the length set by

More information

FreeRADIUS server. Defining clients Access Points and RADIUS servers

FreeRADIUS server. Defining clients Access Points and RADIUS servers FreeRADIUS server Freeradius (http://www.freeradius.org) is a very powerfull/configurable and freely available opensource RADIUS server. ARNES recommends it for the organisations that connect to ARNES

More information

Platts M2MS Market Data IMSFTP Channel Delivery Specification

Platts M2MS Market Data IMSFTP Channel Delivery Specification Platts M2MS Market Data IMSFTP Channel Delivery Specification Version 1.4 May 28, 2013 TABLE OF CONTENTS PREFACE 1 Who Should Read This Manual 1 Prerequisites 1 Related Materials 2 On-line Documentation

More information

Access Queries (Office 2003)

Access Queries (Office 2003) Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy

More information

How to Create and Send a Froogle Data Feed

How to Create and Send a Froogle Data Feed How to Create and Send a Froogle Data Feed Welcome to Froogle! The quickest way to get your products on Froogle is to send a data feed. A data feed is a file that contains a listing of your products. Froogle

More information

SFTP Batch Processor. Version 1.0

SFTP Batch Processor. Version 1.0 SFTP Batch Processor Version 1.0 CONTENTS 1. OVERVIEW... 2 2. SFTP CONNECTION... 3 3. INPUT FILE SPECIFICATION... 4 4. OUTPUT FILE SPECIFICATION... 6 5. BATCHING SCENARIOS... 8 7. MESSAGE FIELD PROPERTIES...

More information

THUM - Temperature Humidity USB Monitor

THUM - Temperature Humidity USB Monitor THUM - Temperature Humidity USB Monitor The THUM is a true USB device to monitor temperature and relative humidity of an interior living, working, and storage spaces. The THUM is ideal for computer rooms,

More information

In This Lecture. Security and Integrity. Database Security. DBMS Security Support. Privileges in SQL. Permissions and Privilege.

In This Lecture. Security and Integrity. Database Security. DBMS Security Support. Privileges in SQL. Permissions and Privilege. In This Lecture Database Systems Lecture 14 Natasha Alechina Database Security Aspects of security Access to databases Privileges and views Database Integrity View updating, Integrity constraints For more

More information

Hubcase for Salesforce Installation and Configuration Guide

Hubcase for Salesforce Installation and Configuration Guide Hubcase for Salesforce Installation and Configuration Guide Note: This document is intended for system administrator, and not for end users. Installation and configuration require understanding of both

More information

Storing SpamAssassin User Data in a SQL Database Michael Parker. [ Start Slide ] Welcome, thanks for coming out today.

Storing SpamAssassin User Data in a SQL Database Michael Parker. [ Start Slide ] Welcome, thanks for coming out today. Storing SpamAssassin User Data in a SQL Database Michael Parker [ Start Slide ] Welcome, thanks for coming out today. [ Intro Slide ] Like most open source software, heck software in general, SpamAssassin

More information

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

Technology Foundations. Conan C. Albrecht, Ph.D.

Technology Foundations. Conan C. Albrecht, Ph.D. Technology Foundations Conan C. Albrecht, Ph.D. Overview 9. Human Analysis Reports 8. Create Reports 6. Import Data 7. Primary Analysis Data Warehouse 5. Transfer Data as CSV, TSV, or XML 1. Extract Data

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

Uploading Ad Cost, Clicks and Impressions to Google Analytics

Uploading Ad Cost, Clicks and Impressions to Google Analytics Uploading Ad Cost, Clicks and Impressions to Google Analytics This document describes the Google Analytics cost data upload capabilities of NEXT Analytics v5. Step 1. Planning Your Upload Google Analytics

More information

FmPro Migrator - FileMaker to SQL Server

FmPro Migrator - FileMaker to SQL Server FmPro Migrator - FileMaker to SQL Server FmPro Migrator - FileMaker to SQL Server 1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 FmPro Migrator - FileMaker to SQL Server Migration

More information

User Manual - Sales Lead Tracking Software

User Manual - Sales Lead Tracking Software User Manual - Overview The Leads module of MVI SLM allows you to import, create, assign and manage their leads. Leads are early contacts in the sales process. Once they have been evaluated and assessed,

More information

Websense Certified Engineer Web Security Professional Examination Specification

Websense Certified Engineer Web Security Professional Examination Specification Websense Certified Engineer Web Security Professional Examination Specification Introduction This is an exam specification for the Websense Certified Engineer - Web Security Professional examination. The

More information

SBCH Medicaid Verification System File Exchange

SBCH Medicaid Verification System File Exchange SBCH Medicaid Verification System File Exchange (Version 2, 10/1/2015) 1 SCHOOL BASED CHILD HEALTH (SBCH) FILE EXCHANGE Contents INTRODUCTION... 3 OVERVIEW... 3 CONTACT INFORMATION... 3 FILE PROCESSING

More information

v7.1 SP1 Release Notes

v7.1 SP1 Release Notes v7.1 SP1 Release Notes Copyright 2011 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027)

Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) Tool for Automated Provisioning System (TAPS) Version 1.2 (1027) 2015 VoIP Integration Rev. July 24, 2015 Table of Contents Product Overview... 3 Application Requirements... 3 Cisco Unified Communications

More information

Module 9 Ad Hoc Queries

Module 9 Ad Hoc Queries Module 9 Ad Hoc Queries Objectives Familiarize the User with basic steps necessary to create ad hoc queries using the Data Browser. Topics Ad Hoc Queries Create a Data Browser query Filter data Save a

More information

You must click the refresh button of a scheduled report in order to view the updated status.

You must click the refresh button of a scheduled report in order to view the updated status. BOXI Tips: Scheduling 1. Viewing successfully scheduled report results You must click the refresh button of a scheduled report in order to view the updated status. 2. Saving results of scheduled reports

More information

Web Application Disassembly with ODBC Error Messages By David Litchfield Director of Security Architecture @stake http://www.atstake.

Web Application Disassembly with ODBC Error Messages By David Litchfield Director of Security Architecture @stake http://www.atstake. Web Application Disassembly with ODBC Error Messages By David Litchfield Director of Security Architecture @stake http://www.atstake.com Introduction This document describes how to subvert the security

More information

Importing Xerox LAN Fax Phonebook Data from Microsoft Outlook

Importing Xerox LAN Fax Phonebook Data from Microsoft Outlook Xerox Multifunction Devices September 4, 2003 for the user Importing Xerox LAN Fax Phonebook Data from Microsoft Outlook Purpose This document provides instructions for importing the Name, Company, Business

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

Adobe Connect LMS Integration for Blackboard Learn 9

Adobe Connect LMS Integration for Blackboard Learn 9 Adobe Connect LMS Integration for Blackboard Learn 9 Install Guide Introduction The Adobe Connect LMS Integration for Blackboard Learn 9 gives Instructors, Teaching Assistants and Course Builders the ability

More information

Contents WEKA Microsoft SQL Database

Contents WEKA Microsoft SQL Database WEKA User Manual Contents WEKA Introduction 3 Background information. 3 Installation. 3 Where to get WEKA... 3 Downloading Information... 3 Opening the program.. 4 Chooser Menu. 4-6 Preprocessing... 6-7

More information

XML Export Interface. IPS Light. 2 April 2013. Contact

XML Export Interface. IPS Light. 2 April 2013. Contact IPS Light XML Export Interface 2 April 2013 Contact Postal Technology Centre - Universal Postal Union - Weltpoststrasse 4-3000 Bern 15 - Switzerland Phone: +41 31 350 31 11 / Fax: +41 31 352 43 23 Email:

More information

SQL Server Table Design - Best Practices

SQL Server Table Design - Best Practices CwJ Consulting Ltd SQL Server Table Design - Best Practices Author: Andy Hogg Date: 20 th February 2015 Version: 1.11 SQL Server Table Design Best Practices 1 Contents 1. Introduction... 3 What is a table?...

More information

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...

More information

Telemanagement Installation Checklist

Telemanagement Installation Checklist Telemanagement Installation Checklist Following is a checklist that will enable you to get your new Metropolis Telemanagement System up and running quickly. Before You Begin Extensions: Create an importable

More information

HTSQL is a comprehensive navigational query language for relational databases.

HTSQL is a comprehensive navigational query language for relational databases. http://htsql.org/ HTSQL A Database Query Language HTSQL is a comprehensive navigational query language for relational databases. HTSQL is designed for data analysts and other accidental programmers who

More information

Best Practices in SQL Programming. Madhivanan

Best Practices in SQL Programming. Madhivanan Best Practices in SQL Programming Madhivanan Do not use irrelevant datatype VARCHAR instead of DATETIME CHAR(N) instead of VARCHAR(N) etc Do not use VARCHAR instead of DATETIME create table #employee_master(emp_id

More information

Interactive Reporting Emailer Manual

Interactive Reporting Emailer Manual Brief Overview of the IR Emailer The Interactive Reporting Emailer allows a user to schedule their favorites to be emailed to them on a regular basis. It accomplishes this by running once per day and sending

More information

User's Manual. 2006... Dennis Baggott and Sons

User's Manual. 2006... Dennis Baggott and Sons User's Manual 2 QUAD Help Desk Client Server Edition 2006 1 Introduction 1.1 Overview The QUAD comes from QUick And Dirty. The standard edition, when first released, really was a Quick and Dirty Help Desk

More information

The Power Loader GUI

The Power Loader GUI The Power Loader GUI (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com The Power Loader GUI Contents 2 Contents Pre-Load To-Do List... 3 Login to Power Loader... 4 Upload Data Files to

More information

1. To start Installation: To install the reporting tool, copy the entire contents of the zip file to a directory of your choice. Run the exe.

1. To start Installation: To install the reporting tool, copy the entire contents of the zip file to a directory of your choice. Run the exe. CourseWebs Reporting Tool Desktop Application Instructions The CourseWebs Reporting tool is a desktop application that lets a system administrator modify existing reports and create new ones. Changes to

More information

Using Form Tools (admin)

Using Form Tools (admin) EUROPEAN COMMISSION DIRECTORATE-GENERAL INFORMATICS Directorate A - Corporate IT Solutions & Services Corporate Infrastructure Solutions for Information Systems (LUX) Using Form Tools (admin) Commission

More information

Configuration Information

Configuration Information Configuration Information Email Security Gateway Version 7.7 This chapter describes some basic Email Security Gateway configuration settings, some of which can be set in the first-time Configuration Wizard.

More information

NEW WEBMAIL QUESTIONS & INFO

NEW WEBMAIL QUESTIONS & INFO NEW WEBMAIL QUESTIONS & INFO QUESTIONS/ANSWERS Will I lose my mail? No Will I lose my contacts? No Will my calendars event be lost? No Will my user name and password stay the same? Yes Will I still be

More information

Time Zone Sensitive. Query Based Dialing. SPD PRO with MySQL allows you to dial by customized query such as area code, zip code, age, and much more!

Time Zone Sensitive. Query Based Dialing. SPD PRO with MySQL allows you to dial by customized query such as area code, zip code, age, and much more! What is a SpitFire Predictive Dialer? On a very basic level, OPC s SpitFire Predictive Dialer automates the total outbound dialing process. This technology converts the manual dialing process agents were

More information

Package sjdbc. R topics documented: February 20, 2015

Package sjdbc. R topics documented: February 20, 2015 Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License

More information

Create Mailing Labels from an Electronic File

Create Mailing Labels from an Electronic File Create Mailing Labels from an Electronic File Microsoft Word 2002 (XP) Electronic data requests for mailing labels will be filled by providing the requester with a commadelimited text file. When you receive

More information

Transaction Inquiries

Transaction Inquiries Transaction Inquiries Publisher guide 3/26/2014 A guide to Tradedoubler s Transaction Inquiries system for publishers Contents 1. Introduction... 3 2. How it works... 3 3. Accessing the interface... 3

More information

DataLogger. 2015 Kepware, Inc.

DataLogger. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 DataLogger Table of Contents Table of Contents 2 DataLogger Help 4 Overview 4 Initial Setup Considerations 5 System Requirements 5 External Dependencies 5 SQL Authentication 6 Windows

More information

Eliac Call Recording - Configurator Guide. Eliac. Call Recording System Ver. 2.x. www.smartsoft-eg.com

Eliac Call Recording - Configurator Guide. Eliac. Call Recording System Ver. 2.x. www.smartsoft-eg.com Eliac Call Recording System Ver. 2.x 1 System Overview Eliac Call Recording is a complete system that records both incoming and outgoing calls for any analog telephone lines, and can record either internal

More information

Central Administration User Guide

Central Administration User Guide User Guide Contents 1. Introduction... 2 Licensing... 2 Overview... 2 2. Configuring... 3 3. Using... 4 Computers screen all computers view... 4 Computers screen single computer view... 5 All Jobs screen...

More information

Data Transfer Management with esync 1.5

Data Transfer Management with esync 1.5 ewon Application User Guide AUG 029 / Rev 2.1 Content Data Transfer Management with esync 1.5 This document explains how to configure the esync 1.5 Server and your ewons in order to use the Data Transfer

More information

Webapps Vulnerability Report

Webapps Vulnerability Report Tuesday, May 1, 2012 Webapps Vulnerability Report Introduction This report provides detailed information of every vulnerability that was found and successfully exploited by CORE Impact Professional during

More information

How to Backup Your Eclipse.Net Database Automatically. To clearly document a specific automatic SQL database backup method for Eclipse.net.

How to Backup Your Eclipse.Net Database Automatically. To clearly document a specific automatic SQL database backup method for Eclipse.net. Purpose: To clearly document a specific automatic SQL database backup method for Eclipse.net. Please note that it is not MLS s responsibility to support you in backing up your databases. Should you require

More information

Electronic Data Interchange (EDI) and Flat Files

Electronic Data Interchange (EDI) and Flat Files Electronic Data Interchange (EDI) and Flat Files This packet describes the procedures necessary to begin testing and implementing electronic transactions via EDI and Flat File formats. Transco Version

More information

Monitoring System Status

Monitoring System Status CHAPTER 14 This chapter describes how to monitor the health and activities of the system. It covers these topics: About Logged Information, page 14-121 Event Logging, page 14-122 Monitoring Performance,

More information

Querying Databases Using the DB Query and JDBC Query Nodes

Querying Databases Using the DB Query and JDBC Query Nodes Querying Databases Using the DB Query and JDBC Query Nodes Lavastorm Desktop Professional supports acquiring data from a variety of databases including SQL Server, Oracle, Teradata, MS Access and MySQL.

More information

v6.1 Websense Enterprise Reporting Administrator s Guide

v6.1 Websense Enterprise Reporting Administrator s Guide v6.1 Websense Enterprise Reporting Administrator s Guide Websense Enterprise Reporting Administrator s Guide 1996 2005, Websense, Inc. All rights reserved. 10240 Sorrento Valley Rd., San Diego, CA 92121,

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

Mixed Authentication Setup

Mixed Authentication Setup Mixed Authentication Setup Version 8.2 January 1, 2016 For the most recent version of this document, visit our documentation website. Table of Contents 1 Overview 3 2 IIS installed components 3 2.1 Creating

More information

Contents CHAPTER 1 IMail Utilities

Contents CHAPTER 1 IMail Utilities Contents CHAPTER 1 IMail Utilities CHAPTER 2 Collaboration Duplicate Entry Remover... 2 CHAPTER 3 Disk Space Usage Reporter... 3 CHAPTER 4 Forward Finder... 4 CHAPTER 5 IMAP Copy Utility... 5 About IMAP

More information

Accounting Manager. User Guide A31003-P1030-U114-2-7619

Accounting Manager. User Guide A31003-P1030-U114-2-7619 Accounting Manager User Guide A31003-P1030-U114-2-7619 Our Quality and Environmental Management Systems are implemented according to the requirements of the ISO9001 and ISO14001 standards and are certified

More information

Product: DQ Order Manager Release Notes

Product: DQ Order Manager Release Notes Product: DQ Order Manager Release Notes Subject: DQ Order Manager v7.1.25 Version: 1.0 March 27, 2015 Distribution: ODT Customers DQ OrderManager v7.1.25 Added option to Move Orders job step Update order

More information

Installation & Configuration Guide User Provisioning Service 2.0

Installation & Configuration Guide User Provisioning Service 2.0 Installation & Configuration Guide User Provisioning Service 2.0 NAVEX Global User Provisioning Service 2.0 Installation Guide Copyright 2015 NAVEX Global, Inc. NAVEX Global is a trademark/service mark

More information

Capturing & Processing Incoming Emails

Capturing & Processing Incoming Emails Capturing & Processing Incoming Emails Visual CUT can automatically capture incoming emails from your email server to a database table. A Crystal report using the data in that table can then be processed

More information

How To Set Up A Xerox Econcierge Powered By Xerx Account

How To Set Up A Xerox Econcierge Powered By Xerx Account Xerox econcierge Account Setup Guide Xerox econcierge Account Setup Guide The free Xerox econcierge service provides the quickest, easiest way for your customers to order printer supplies for all their

More information

RJS Email Monitor. User Guide. 2012 RJS Software Systems Document Version 1.0.0.1

RJS Email Monitor. User Guide. 2012 RJS Software Systems Document Version 1.0.0.1 User Guide RJS Email Monitor 2012 RJS Software Systems Document Version 1.0.0.1 RJS Software Systems 2970 Judicial Road, Suite 100 Burnsville, MN 55337 Phone: 952-736-5800 Fax: 952-736-5801 Sales email:

More information