Lab Answer Key for Module 8: Implementing Stored Procedures

Size: px
Start display at page:

Download "Lab Answer Key for Module 8: Implementing Stored Procedures"

Transcription

1 Lab Answer Key for Module 8: Implementing Stored Procedures Table of Contents Lab 8: Implementing Stored Procedures 1 Exercise 1: Creating Stored Procedures 1 Exercise 2: Working with Execution Plans 6

2 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted, the example companies, organizations, products, domain names, e- mail addresses, logos, people, places, and events depicted herein are fictitious, and no association with any real company, organization, product, domain name, address, logo, person, place, or event is intended or should be inferred. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the rights under copyright, no part of this document may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photocopying, recording, or otherwise), or for any purpose, without the express written permission of Microsoft Corporation. The names of manufacturers, products, or URLs are provided for informational purposes only and Microsoft makes no representations and warranties, either expressed, implied, or statutory, regarding these manufacturers or the use of the products with any Microsoft technologies. The inclusion of a manufacturer or product does not imply endorsement of Microsoft of the manufacturer or product. Links are provided to third party sites. Such sites are not under the control of Microsoft and Microsoft is not responsible for the contents of any linked site or any link contained in a linked site, or any changes or updates to such sites. Microsoft is not responsible for webcasting or any other form of transmission received from any linked site. Microsoft is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement of Microsoft of the site or the products contained therein. Microsoft may have patents, patent applications, trademarks, copyrights, or other intellectual property rights covering subject matter in this document. Except as expressly provided in any written license agreement from Microsoft, the furnishing of this document does not give you any license to these patents, trademarks, copyrights, or other intellectual property Microsoft Corporation. All rights reserved. Microsoft, BizTalk, Internet Explorer, Jscript, MSDN, Outlook, PowerPoint, SQL Server, Visual Basic, Visual C#, Visual C++, Visual FoxPro, Visual Studio, Windows and Windows Server are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. The names of actual companies and products mentioned herein may be the trademarks of their respective owners. Version 1.0

3 Lab Answer Key for Module 8: Implementing Stored Procedures 1 Lab 8: Implementing Stored Procedures Exercise 1: Creating Stored Procedures Task 1: Create and test the GetDiscounts stored procedure 1. Click Start, point to All Programs, point to Microsoft SQL Server 2005, and then click SQL Server Management Studio. 2. In the Connect to Server dialog box, specify the values in the following table, and then click Connect. Property Server type Server name Authentication Value Database Engine MIAMI Windows Authentication 3. On the File menu, point to Open, and then click Project/Solution. 4. In the Open Project dialog box, browse to the D:\Labfiles\Starter folder, click the AWProgrammability.ssmssln solution, and then click Open. 5. If Solution Explorer is not visible, on the View menu, click Solution Explorer. 6. In Solution Explorer, expand AWProgrammability, expand Queries, and then double-click the InitializeData.sql query file. 7. On the toolbar, click Execute, and then confirm that no errors occur. 8. In Solution Explorer, double-click the StoredProcedures.sql query file. 9. Select the USE AdventureWorks statement, and then on the toolbar, click Execute. 10. Locate the Create Sales.GetDiscounts comment, and then create the stored procedure, as shown in the following Transact-SQL example. CREATE PROCEDURE Sales.GetDiscounts AS SELECT Description, DiscountPct, Type, Category, StartDate, EndDate, MinQty, MaxQty FROM Sales.SpecialOffer ORDER BY StartDate, EndDate 11. Select the CREATE PROCEDURE statement, and then on the toolbar, click Execute. 12. Review the query results and verify that the statement executed successfully.

4 2 Lab Answer Key for Module 8: Implementing Stored Procedures 13. Locate the Test Sales.GetDiscounts comment, and then type in a statement to test the stored procedure, as shown in the following Transact-SQL example. EXEC Sales.GetDiscounts 14. Select the EXEC statement, and then on the toolbar, click Execute. 15. In the query results, verify that several rows are displayed. 16. On the File menu, click Save StoredProcedures.sql. 17. Keep the Microsoft SQL Server Management Studio solution open. You will use it in the next task. Task 2: Create and test the GetDiscountsForCategory stored procedure 1. Locate the Create Sales.GetDiscountsForCategory comment, and then create the stored procedure, as shown in the following Transact-SQL example. CREATE PROCEDURE nvarchar(50) AS SELECT Description, DiscountPct, Type, Category, StartDate, EndDate, MinQty, MaxQty FROM Sales.SpecialOffer WHERE Category ORDER BY StartDate, EndDate 2. Select the CREATE PROCECURE statement, and then on the toolbar, click Execute. 3. Review the query results and verify that the statement executed successfully. 4. Locate the Test Sales.GetDiscountsForCategory comment, and then type in a statement to test the stored procedure, as shown in the following Transact-SQL example. EXEC Sales.GetDiscountsForCategory 'Reseller' 5. Select the EXEC statement, and then on the toolbar, click Execute. 6. In the query results, verify that 13 rows are displayed. 7. On the File menu, click Save StoredProcedures.sql. 8. Keep the SQL Server Management Studio solution open. You will use it in the next task.

5 Lab Answer Key for Module 8: Implementing Stored Procedures 3 Task 3: Create and test the GetDiscountsForCategoryAndDate stored procedure 1. Locate the Create Sales.GetDiscountsForCategoryAndDate comment, and then create the stored procedure, as shown in the following Transact-SQL example. CREATE PROCEDURE datetime = NULL AS IF (@DateToCheck IS NULL) = GetDate() SELECT Description, DiscountPct, Type, Category, StartDate, EndDate, MinQty, MaxQty FROM Sales.SpecialOffer WHERE Category BETWEEN StartDate AND EndDate ORDER BY StartDate, EndDate 2. Select the CREATE PROCEDURE statement, and then on the toolbar, click Execute. 3. Review the query results and verify that the statement executed successfully. 4. Locate the Test Sales.GetDiscountsForCategoryAndDate with category but no date comment, and then type in a statement to test the stored procedure, as shown in the following Transact-SQL example. EXEC Sales.GetDiscountsForCategoryAndDate 'Reseller' 5. Select the EXEC statement, and then on the toolbar, click Execute. 6. In the query results, verify that six rows are displayed. This is the current list of discounts, because parameter defaults to the current date and time. 7. Locate the Test Sales.GetDiscountsForCategoryAndDate with both parameters comment, and then type in statements to test the stored procedure, as shown in the following Transact-SQL example. datetime = DateAdd(month, 1, GetDate()) EXEC Sales.GetDiscountsForCategoryAndDate 8. Select the DECLARE, SET, and EXEC statements, and then on the toolbar, click Execute. 9. In the query results, verify that seven rows are displayed. This is the list of discounts that will be current in one month s time.

6 4 Lab Answer Key for Module 8: Implementing Stored Procedures 10. On the File menu, click Save StoredProcedures.sql. 11. Keep the SQL Server Management Studio solution open. You will use it in the next task. Task 4: Create and test the AddDiscount stored procedure 1. Locate the Create Sales.AddDiscount comment, and then create the stored procedure, as shown in the following Transact-SQL example. CREATE PROCEDURE int OUTPUT AS BEGIN TRY INSERT Sales.SpecialOffer (Description, DiscountPct, Type, Category, StartDate, EndDate, MinQty, @EndDate, = SCOPE_IDENTITY() RETURN 0 END TRY BEGIN CATCH INSERT dbo.errorlog (UserName, ErrorNumber, ErrorSeverity, ErrorState, ErrorProcedure, ErrorLine, ErrorMessage) VALUES (CONVERT(sysname, CURRENT_USER), ERROR_NUMBER(), ERROR_SEVERITY(), ERROR_STATE(), ERROR_PROCEDURE(), ERROR_LINE(), ERROR_MESSAGE() ) RETURN -1 END CATCH 2. Select the CREATE PROCEDURE statement, and then on the toolbar, click Execute. 3. Review the query results and verify that the statement executed successfully. 4. Locate the Test Sales.AddDiscount comment, and then type in statements to test the stored procedure, as shown in the following Transact-SQL example. datetime = GetDate() = DateAdd(month, int EXEC Sales.AddDiscount 'Half price off everything',

7 Lab Answer Key for Module 8: Implementing Stored Procedures 5 0.5, 'Seasonal 0, OUTPUT 5. Select the DECLARE, SET, EXEC, and SELECT statements, and then on the toolbar, click Execute. 6. In the query results, verify that a new SpecialOfferID is returned. 7. Locate the Test Sales.AddDiscount with errors comment, and then type in statements to test the stored procedure again, as shown in the following Transact- SQL example. datetime = GetDate() = DateAdd(month, int = Sales.AddDiscount 'Half price off everything', -0.5, -- UNACCEPTABLE VALUE 'Seasonal 0, OUTPUT IF (@ReturnValue = 0) ELSE SELECT TOP 1 * FROM dbo.errorlog ORDER BY ErrorTime DESC 8. Select the DECLARE, SET, EXEC, and IF/ELSE statements, and then on the toolbar, click Execute. 9. In the query results, confirm that an error record is displayed that includes the ErrorProcedure value AddDiscount. 10. On the File menu, click Save StoredProcedures.sql Keep the SQL Server Management Studio solution open. You will use it in the next exercise.

8 6 Lab Answer Key for Module 8: Implementing Stored Procedures Exercise 2: Working with Execution Plans Task 1: View the text-based execution plans 1. In Solution Explorer, double-click the Setup.sql query file. 2. On the toolbar, click Execute, and then confirm that no errors occur. 3. In Solution Explorer, double-click the ExecutionPlans.sql query file. 4. Locate the SET statement options comment, and then add the following SET statement option. SET STATISTICS PROFILE ON 5. On the toolbar, click Execute, and then review the actual execution plan generated for each query batch. 6. Keep the SQL Server Management Studio solution open. You will use it in the next task. Task 2: View the graphical execution plans 1. Locate the SET statement you created in the previous task. Amend the SET statement to turn off the generation of text-based execution plans. SET STATISTICS PROFILE OFF 2. Select this statement, and then on the toolbar, click Execute. 3. Confirm that the statement executed successfully, and then delete the statement. 4. On the toolbar, click the Include Actual Execution Plan button, click the Include Client Statistics button, and then click Execute. 5. Click the Execution plan tab to review the graphical execution plan for each query batch, paying particular attention to the warnings and looking for table scans, sorts, and other indicators of potential performance issues. 6. On the Client Statistics tab, note the query execution statistics. 7. Keep the SQL Server Management Studio solution open. You will use it in the next task. Task 3: Tune the database to improve performance 1. In Solution Explorer, double-click the DatabaseTuning.sql query file. 2. On the toolbar, click Execute, and then confirm that no errors occur. 3. Keep the SQL Server Management Studio solution open. You will use it in the next task.

9 Lab Answer Key for Module 8: Implementing Stored Procedures 7 Task 4: View the revised execution plans 1. In Solution Explorer, double-click the ExecutionPlans.sql query file. 2. Ensure that the Include Actual Execution Plan and Include Client Statistics buttons on the toolbar are both still selected. 3. On the toolbar, click Execute. 4. Click the Execution plan tab to review the graphical execution plan for each query batch and note the differences from the original execution plan. 5. Click the Client Statistics tab and note the query execution statistics that show the performance improvement. 6. Close SQL Server Management Studio without saving the changes to the files.

10

Module 8: Implementing Stored Procedures

Module 8: Implementing Stored Procedures Module 8: Implementing Stored Procedures Table of Contents Module Overview 8-1 Lesson 1: Implementing Stored Procedures 8-2 Lesson 2: Creating Parameterized Stored Procedures 8-10 Lesson 3: Working With

More information

Lab Answer Key for Module 1: Creating Databases and Database Files

Lab Answer Key for Module 1: Creating Databases and Database Files Lab Answer Key for Module 1: Creating Databases and Database Files Table of Contents Lab 1: Creating Databases and Database Files 1 Exercise 1: Creating a Database 1 Exercise 2: Creating Schemas 4 Exercise

More information

Microsoft Exchange Server SMTPDiag

Microsoft Exchange Server SMTPDiag Microsoft Exchange Server SMTPDiag Contents Microsoft Exchange Server SMTPDiag...1 Contents... 2 Microsoft Exchange Server SMTPDiag...3 SMTPDiag Arguments...3 SMTPDiag Results...4 SMTPDiag Tests...5 Copyright...5

More information

Module 7: Automating Administrative Tasks

Module 7: Automating Administrative Tasks Module 7: Automating Administrative Tasks Table of Contents Module Overview 7-1 Lesson 1: Automating Administrative Tasks in SQL Server 2005 7-2 Lesson 2: Configuring SQL Server Agent 7-10 Lesson 3: Creating

More information

CHECK PROCESSING. A Select Product of Cougar Mountain Software

CHECK PROCESSING. A Select Product of Cougar Mountain Software CHECK PROCESSING A Select Product of Cougar Mountain Software Check Processing Copyright Notification At Cougar Mountain Software, Inc., we strive to produce high-quality software at reasonable prices.

More information

Pipeliner CRM Arithmetica Guide Importing Accounts & Contacts Pipelinersales Inc.

Pipeliner CRM Arithmetica Guide Importing Accounts & Contacts Pipelinersales Inc. Importing Accounts & Contacts 205 Pipelinersales Inc. www.pipelinersales.com Importing Accounts & Contacts Learn how to import accounts and contacts into Pipeliner Sales CRM Application. CONTENT. Creating

More information

Unloading Master Data from SAP BI 7.0 using Open Hub Service

Unloading Master Data from SAP BI 7.0 using Open Hub Service Unloading Master Data from SAP BI 7.0 using Open Hub Service April 2008 Author Hermann Daeubler, Senior Program Manager, Microsoft Juergen Daiberl, Technical Evangelist, Microsoft Page 1 of 16 This document

More information

Receive and Forward syslog events through EventTracker Agent. EventTracker v9.0

Receive and Forward syslog events through EventTracker Agent. EventTracker v9.0 Receive and Forward syslog events through EventTracker Agent EventTracker v9.0 Publication Date: July 23, 2018 Abstract The purpose of this document is to help users to receive syslog messages from various

More information

RMH RESOURCE EDITOR USER GUIDE

RMH RESOURCE EDITOR USER GUIDE RMH RESOURCE EDITOR USER GUIDE Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2017, Retail Management Hero. All Rights Reserved. RMHDOCRESOURCE071317 Disclaimer Information

More information

Expression Design Lab Exercises

Expression Design Lab Exercises Expression Design Lab Exercises Creating Images with Expression Design 2 Beaches Around the World (Part 1: Beaches Around the World Series) Information in this document, including URL and other Internet

More information

Implementing and Supporting Windows Intune

Implementing and Supporting Windows Intune Implementing and Supporting Windows Intune Lab 4: Managing System Services Lab Manual Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

ONVIF Server for Aimetis Symphony. Installation and Usage

ONVIF Server for Aimetis Symphony. Installation and Usage ONVIF Server for Aimetis Symphony Installation and Usage Disclaimers and Legal Information Copyright 2015 Aimetis Corp. All rights reserved. This material is for informational purposes only. Aimetis makes

More information

Aimetis Symphony Mobile Bridge. 2.7 Installation Guide

Aimetis Symphony Mobile Bridge. 2.7 Installation Guide Aimetis Symphony Mobile Bridge 2.7 Installation Guide Contents Contents Introduction...3 Installation... 4 Install the Mobile Bridge... 4 Upgrade the Mobile Bridge...4 Network configuration... 4 Configuration...

More information

RMH LABEL DESIGNER. Retail Management Hero (RMH)

RMH LABEL DESIGNER. Retail Management Hero (RMH) RMH LABEL DESIGNER Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2016, Retail Realm. All Rights Reserved. RMHDOCLABEL050916 Disclaimer Information in this document, including

More information

Exclaimer Mail Archiver

Exclaimer Mail Archiver Deployment Guide - Outlook Add-In www.exclaimer.com Contents About This Guide... 3 System Requirements... 4 Software... 4 Installation Files... 5 Deployment Preparation... 6 Installing the Add-In Manually...

More information

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual HOL5 Using Client OM and REST from.net App C#

A SharePoint Developer Introduction. Hands-On Lab. Lab Manual HOL5 Using Client OM and REST from.net App C# A SharePoint Developer Introduction Hands-On Lab Lab Manual HOL5 Using Client OM and REST from.net App C# Information in this document, including URL and other Internet Web site references, is subject

More information

Installation guide. WebChick. Installation guide for use on local PC

Installation guide. WebChick. Installation guide for use on local PC WebChick Installation guide for use on local PC Version 1.0 Agrologic Ltd. Author: Valery M. Published: March 2011 1 Table of Contents Copyright Information... 3 Abstract... 4 Overview:... 4 System Requirements

More information

6/29/ :38 AM 1

6/29/ :38 AM 1 6/29/2017 11:38 AM 1 Creating an Event Hub In this lab, you will create an Event Hub. What you need for this lab An Azure Subscription Create an event hub Take the following steps to create an event hub

More information

Server Installation Guide

Server Installation Guide Server Installation Guide Copyright: Trademarks: Copyright 2015 Word-Tech, Inc. All rights reserved. U.S. Patent No. 8,365,080 and additional patents pending. Complying with all applicable copyright laws

More information

Module 3-1: Building with DIRS and SOURCES

Module 3-1: Building with DIRS and SOURCES Module 3-1: Building with DIRS and SOURCES Contents Overview 1 Lab 3-1: Building with DIRS and SOURCES 9 Review 10 Information in this document, including URL and other Internet Web site references, is

More information

Copyright ATRIL Language Engineering, SL. All rights reserved.

Copyright ATRIL Language Engineering, SL. All rights reserved. Us ergui de Déj àvux2e DI T OR dé j à v u Copyright 1993-2011 ATRIL Language Engineering, SL. All rights reserved. This document is provided for informational purposes only and ATRIL makes no warranties,

More information

Hands-On Lab: HORM. Lab Manual Expediting Power Up with HORM

Hands-On Lab: HORM. Lab Manual Expediting Power Up with HORM Lab Manual Expediting Power Up with HORM Summary In this lab, you will learn how to build a XP embedded images capable of supporting HORM (Hibernate Once Resume Many). You will also learn how to utilize

More information

Android ATC Android Security Essentials Course Code: AND-402 version 5 Hands on Guide to Android Security Principles

Android ATC Android Security Essentials Course Code: AND-402 version 5 Hands on Guide to Android Security Principles Android ATC Android Security Essentials Course Code: AND-402 version 5 Hands on Guide to Android Security Principles Android Security Essentials Course Code: AND-402 version 5 Copyrights 2015 Android ATC

More information

What s New in BUILD2WIN Version 3.2

What s New in BUILD2WIN Version 3.2 What s New in BUILD2WIN Version 3.2 BID2WIN Software, Inc. Published June 13, 2012 Abstract BUILD2WIN version 3.2 includes many exciting new features which add even more power and flexibility to your field

More information

RMH PRINT LABEL WIZARD

RMH PRINT LABEL WIZARD RMH PRINT LABEL WIZARD Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2016, Retail Realm. All Rights Reserved. RMHDOCLABELWIZARD050916 Disclaimer Information in this document,

More information

Windows Server 2012: Manageability and Automation. Module 1: Multi-Machine Management Experience

Windows Server 2012: Manageability and Automation. Module 1: Multi-Machine Management Experience Windows Server 2012: Manageability and Automation Module Manual Author: Rose Malcolm, Content Master Published: 4 th September 2012 Information in this document, including URLs and other Internet Web site

More information

Microsoft Dynamics GP. Inventory Kardex

Microsoft Dynamics GP. Inventory Kardex Microsoft Dynamics GP Inventory Kardex Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

OEM Preinstallation Kit Guide for Microsoft Office 2013

OEM Preinstallation Kit Guide for Microsoft Office 2013 OEM Preinstallation Kit Guide for Microsoft Office 2013 Microsoft Corporation Published: August 2012 Send feedback to Office Resource Kit (feedork@microsoft.com) Abstract This document supports the final

More information

Visual Studio.NET Academic Assignment Manager Source Package

Visual Studio.NET Academic Assignment Manager Source Package Visual Studio.NET Academic Assignment Manager Source Package Visual Studio.NET Academic Assignment Manager Source Package Visual Studio.NET Academic Assignment Manager provides a way for you to create

More information

How To Embed EventTracker Widget to an External Site

How To Embed EventTracker Widget to an External Site How To Embed EventTracker Widget to an External Site Publication Date: March 27, 2018 Abstract This guide will help the user(s) to configure an EventTracker Widget to an External Site like SharePoint.

More information

Integrate Dell FORCE10 Switch

Integrate Dell FORCE10 Switch Publication Date: December 15, 2016 Abstract This guide provides instructions to configure Dell FORCE10 Switch to send the syslog events to EventTracker. Scope The configurations detailed in this guide

More information

Lab 01 Developing a Power Pivot Data Model in Excel 2013

Lab 01 Developing a Power Pivot Data Model in Excel 2013 Power BI Lab 01 Developing a Power Pivot Data Model in Excel 2013 Jump to the Lab Overview Terms of Use 2014 Microsoft Corporation. All rights reserved. Information in this document, including URL and

More information

RMH GENERAL CONFIGURATION

RMH GENERAL CONFIGURATION RMH GENERAL CONFIGURATION Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2016, Retail Realm. All Rights Reserved. RMHDOCGENCONFIGD051216 Disclaimer Information in this document,

More information

Mobile On the Go (OTG) Server

Mobile On the Go (OTG) Server Mobile On the Go (OTG) Server Installation Guide Paramount Technologies, Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com Copyright

More information

2017 WorkPlace Mobile Application

2017 WorkPlace Mobile Application 2017 WorkPlace Mobile Application User Guide Paramount WorkPlace 2017 and Greater Table of Contents OVERVIEW... 3 GETTING STARTED... 3 Communication Architecture... 3 Mobile Device Requirements... 4 Establish

More information

Using the Orchestration Console in System Center 2012 R2 Orchestrator

Using the Orchestration Console in System Center 2012 R2 Orchestrator Using the Orchestration Console in System Center 2012 R2 Orchestrator Microsoft Corporation Published: November 1, 2013 Applies To System Center 2012 - Orchestrator Orchestrator in System Center 2012 SP1

More information

x10data Smart Client 6.5 for Windows Mobile Installation Guide

x10data Smart Client 6.5 for Windows Mobile Installation Guide x10data Smart Client 6.5 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

Integrate Citrix Access Gateway

Integrate Citrix Access Gateway Publication Date: September 3, 2015 Abstract This guide provides instructions to configure Citrix Access Gateway to transfer logs to EventTracker. Scope The configurations detailed in this guide are consistent

More information

The Project Management Software for Outlook, Web and Smartphone

The Project Management Software for Outlook, Web and Smartphone The Project Management Software for Outlook, Web and Smartphone InLoox PM 10.x Configure Microsoft SQL Server for SQL- Authentication An InLoox Whitepaper Published: Juni 2018 Copyright: 2018 InLoox GmbH.

More information

Project management - integrated into Outlook

Project management - integrated into Outlook Project management - integrated into Outlook InLoox PM 6.x update to InLoox PM 7.x An InLoox Whitepaper Published: October 2012 Copyright: 2012 InLoox GmbH. You can find up-to-date information at http://www.inloox.com

More information

Getting Started with Tally.Developer 9 Alpha

Getting Started with Tally.Developer 9 Alpha Getting Started with Tally.Developer 9 Alpha The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions,

More information

Microsoft Exchange 2000 Server Mailbox Folder Structure. Technical Paper

Microsoft Exchange 2000 Server Mailbox Folder Structure. Technical Paper Microsoft Exchange 2000 Server Mailbox Folder Structure Technical Paper Published: April 2002 Table of Contents Introduction...3 Mailbox Creation in Exchange 2000...3 Folder Structure in an Exchange 2000

More information

Microsoft Dynamics GP. Purchase Vouchers

Microsoft Dynamics GP. Purchase Vouchers Microsoft Dynamics GP Purchase Vouchers Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

RMH ADVANCED ITEM AND INVENTORY WIZARDS

RMH ADVANCED ITEM AND INVENTORY WIZARDS RMH ADVANCED ITEM AND INVENTORY WIZARDS Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2016, Retail Realm. All Rights Reserved. RMHDOCWIZARD050916 Disclaimer Information in

More information

What s New in BID2WIN Service Pack 4

What s New in BID2WIN Service Pack 4 What s New in BID2WIN Service Pack 4 BID2WIN Software, Inc. Published: August, 2006 Abstract BID2WIN 2005 Service Pack 4 includes many exciting new features that add more power and flexibility to BID2WIN,

More information

x10data Smart Client 7.0 for Windows Mobile Installation Guide

x10data Smart Client 7.0 for Windows Mobile Installation Guide x10data Smart Client 7.0 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

KwikTag v4.5.0 Release Notes

KwikTag v4.5.0 Release Notes KwikTag v4.5.0 Release Notes The following release notes cover the KwikTag core components as well as the major clients and connectors. System Requirements Internet Explorer 7.0 (or Internet Explorer 8

More information

Port Configuration. Configure Port of EventTracker Website

Port Configuration. Configure Port of EventTracker Website Port Configuration Configure Port of EventTracker Website Publication Date: May 23, 2017 Abstract This guide will help the end user to change the port of the Website, using the Port Configuration tool,

More information

SECURE FILE TRANSFER PROTOCOL. EventTracker v8.x and above

SECURE FILE TRANSFER PROTOCOL. EventTracker v8.x and above SECURE FILE TRANSFER PROTOCOL EventTracker v8.x and above Publication Date: January 02, 2019 Abstract This guide provides instructions to configure SFTP logs for User Activities and File Operations. Once

More information

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters Microsoft Dynamics GP Release 10.0 Integration Guide For Microsoft Retail Management System Headquarters Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

x10data Application Platform v7.1 Installation Guide

x10data Application Platform v7.1 Installation Guide Copyright Copyright 2010 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the

More information

Integrate Veeam Backup and Replication. EventTracker v9.x and above

Integrate Veeam Backup and Replication. EventTracker v9.x and above Integrate Veeam Backup and Replication EventTracker v9.x and above Publication Date: September 27, 2018 Abstract This guide provides instructions to configure VEEAM to send the event logs to EventTracker

More information

Integrating Cisco Distributed Director EventTracker v7.x

Integrating Cisco Distributed Director EventTracker v7.x Integrating Cisco Distributed Director EventTracker v7.x Publication Date: July 28, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This guide provides instructions

More information

DC Detective. User Guide

DC Detective. User Guide DC Detective User Guide Version 5.7 Published: 2010 2010 AccessData Group, LLC. All Rights Reserved. The information contained in this document represents the current view of AccessData Group, LLC on the

More information

KwikTag v4.6.4 Release Notes

KwikTag v4.6.4 Release Notes KwikTag v4.6.4 Release Notes KwikTag v4.6.4 for Web Client - Release Notes a. Internet Explorer 7.0 b. Internet Explorer 8.0 c. Firefox 3.5+ Server Requirements a. KwikTag v4.6.4 New Features: Feature:

More information

Product Update: ET82U16-029/ ET81U EventTracker Enterprise

Product Update: ET82U16-029/ ET81U EventTracker Enterprise Product Update: ET82U16-029/ ET81U16-033 EventTracker Enterprise Publication Date: Oct. 18, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Update: ET82U16-029/ ET81U16-033

More information

Microsoft Dynamics AX Team Server (ID Server) Setup Whitepaper for Microsoft. Dynamics AX 2009.

Microsoft Dynamics AX Team Server (ID Server) Setup Whitepaper for Microsoft. Dynamics AX 2009. Setup Microsoft Dynamics AX 2009 Team Server (ID Server) Setup Whitepaper for Microsoft Dynamics AX 2009 White Paper This document describes how to set up Team Server for Microsoft Dynamics AX 2009. Date:

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

Configuring TLS 1.2 in EventTracker v9.0

Configuring TLS 1.2 in EventTracker v9.0 Configuring TLS 1.2 in EventTracker v9.0 Publication Date: August 6, 2018 Abstract This Guide will help EventTracker Administrators to configure TLS ( Transport Layer Security) protocol 1.2 for EventTracker

More information

Allan Hirt Cluster MVP E mail: Website and Blog:

Allan Hirt Cluster MVP E mail: Website and Blog: Allan Hirt Cluster MVP E mail: allan@sqlha.com Twitter: @SQLHA Website and Blog: http://www.sqlha.com Apps, servers, clients SQL Both sites can connect to the network to allow access Node A Storage replicated

More information

Integrate Symantec Messaging Gateway. EventTracker v9.x and above

Integrate Symantec Messaging Gateway. EventTracker v9.x and above Integrate Symantec Messaging Gateway EventTracker v9.x and above Publication Date: May 9, 2018 Abstract This guide provides instructions to configure a Symantec Messaging Gateway to send its syslog to

More information

Module 3: Managing Groups

Module 3: Managing Groups Module 3: Managing Groups Contents Overview 1 Lesson: Creating Groups 2 Lesson: Managing Group Membership 20 Lesson: Strategies for Using Groups 27 Lesson: Using Default Groups 44 Lab: Creating and Managing

More information

Marketing List Manager 2011

Marketing List Manager 2011 Marketing List Manager 2011 i Marketing List Manager 2011 CRM Accelerators 6401 W. Eldorado Parkway, Suite 106 McKinney, TX 75070 www.crmaccelerators.net Copyright 2008-2012 by CRM Accelerators All rights

More information

Integrate Aventail SSL VPN

Integrate Aventail SSL VPN Publication Date: July 24, 2014 Abstract This guide provides instructions to configure Aventail SSL VPN to send the syslog to EventTracker. Once syslog is being configured to send to EventTracker Manager,

More information

KwikTag v4.5.1 Release Notes

KwikTag v4.5.1 Release Notes KwikTag v4.5.1 Release Notes The following release notes cover the KwikTag core components as well as the major clients and connectors. All previous releases must be applied before installing this release.

More information

Windows Server 2012: Server Virtualization

Windows Server 2012: Server Virtualization Windows Server 2012: Server Virtualization Module Manual Author: David Coombes, Content Master Published: 4 th September, 2012 Information in this document, including URLs and other Internet Web site references,

More information

Aimetis Motion Tracker. 1.1 User Guide

Aimetis Motion Tracker. 1.1 User Guide Aimetis Motion Tracker 1 User Guide Contents Contents Introduction...3 Installation... 4 Requirements... 4 Install Motion Tracker... 4 Open Motion Tracker... 4 Add a license... 4... 6 Configure Motion

More information

Module 5: Integrating Domain Name System and Active Directory

Module 5: Integrating Domain Name System and Active Directory Module 5: Integrating Domain Name System and Active Directory Contents Overview 1 Lesson: Configuring Active Directory Integrated Zones 2 Lesson: Configuring DNS Dynamic Updates 14 Lesson: Understanding

More information

Deploying Windows Server 2003 Internet Authentication Service (IAS) with Virtual Local Area Networks (VLANs)

Deploying Windows Server 2003 Internet Authentication Service (IAS) with Virtual Local Area Networks (VLANs) Deploying Windows Server 2003 Internet Authentication Service (IAS) with Virtual Local Area Networks (VLANs) Microsoft Corporation Published: June 2004 Abstract This white paper describes how to configure

More information

Aimetis Android Mobile Application. 2.x Release Notes

Aimetis Android Mobile Application. 2.x Release Notes Aimetis Android Mobile Application 2.x Release Notes Contents Contents Release 2.10 (July 2018)... 3 Release 2.7.8 (August 2017)... 4 Release 2.7.7 (November 2016)... 5 Release 2.7.6 (October 2016)...6

More information

Integrate Sophos UTM EventTracker v7.x

Integrate Sophos UTM EventTracker v7.x Integrate Sophos UTM EventTracker v7.x Publication Date: April 6, 2015 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This guide provides instructions to configure

More information

Aimetis Symphony. VE510 Metadata Analytic Setup

Aimetis Symphony. VE510 Metadata Analytic Setup Aimetis Symphony VE510 Metadata Analytic Setup Disclaimers and Legal Information Copyright 2015 Aimetis Inc. All rights reserved. This material is for informational purposes only. AIMETIS MAKES NO WARRANTIES,

More information

Exclaimer Outlook Photos 1.0 Release Notes

Exclaimer Outlook Photos 1.0 Release Notes Exclaimer Release Notes Exclaimer UK +44 (0) 1252 531 422 USA 1-888-450-9631 info@exclaimer.com 1 Contents About these Release Notes... 3 Release Number... 3 Hardware... 3 Software... 3 Prerequisites...

More information

Microsoft Dynamics GP. Extender User s Guide Release 9.0

Microsoft Dynamics GP. Extender User s Guide Release 9.0 Microsoft Dynamics GP Extender User s Guide Release 9.0 Copyright Copyright 2005 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user.

More information

How to Use DTM for Windows Vista System Logo Testing: A Step-by-Step Guide

How to Use DTM for Windows Vista System Logo Testing: A Step-by-Step Guide How to Use DTM for Windows Vista System Logo Testing: A Step-by-Step Guide Abstract This paper provides information about how to use the Windows Logo Kit to perform system logo testing for Windows Vista.

More information

Microsoft Dynamics AX 4.0

Microsoft Dynamics AX 4.0 Microsoft Dynamics AX 4.0 Install and Configure a Microsoft Dynamics AX Enterprise Portal Server White Paper Date: June 27, 2006 http://go.microsoft.com/fwlink/?linkid=69531&clcid=0x409 Table of Contents

More information

Enhancement in Network monitoring to monitor listening ports EventTracker Enterprise

Enhancement in Network monitoring to monitor listening ports EventTracker Enterprise Enhancement in Network monitoring to monitor listening ports EventTracker Enterprise Publication Date: Dec. 5, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Update: ET82U16-036/ET82UA16-036

More information

SMB Live. Modernize with Hybrid Cloud. Lab 1: Exploring Windows Server 2012 R2 & Hyper-V

SMB Live. Modernize with Hybrid Cloud. Lab 1: Exploring Windows Server 2012 R2 & Hyper-V SMB Live Modernize with Hybrid Cloud Lab 1: Exploring Windows Server 2012 R2 & Hyper-V Terms of Use 2013 Microsoft Corporation. All rights reserved. Information in this document, including URL and other

More information

User Manual Price List Import

User Manual Price List Import User Manual Price List Import 1 The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions, it should

More information

FileWay User s Guide. Version 3

FileWay User s Guide. Version 3 FileWay User s Guide Version 3 Copyright (c) 2003-2008 Everywhere Networks Corporation, All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Migrate User Data & Customizations to MindManager 2018

Migrate User Data & Customizations to MindManager 2018 Migrate User Data & Customizations to MindManager 2018 September 22, 2017 MIGRATE USER DAT A/CUSTOMIZATIONS TO OTHER V ERSIONS OF MINDM AN AGER This document provides instructions to migrate custom Map

More information

Agent Installation Using Smart Card Credentials Detailed Document

Agent Installation Using Smart Card Credentials Detailed Document Agent Installation Using Smart Card Credentials Detailed Document Publication Date: Sept. 19, 2016 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This document is to

More information

Aimetis Motion Tracker. 1.x User Guide

Aimetis Motion Tracker. 1.x User Guide Aimetis Motion Tracker x User Guide Contents Contents Legal information... 3 Introduction...4 Installation...5 Requirements... 5 Install Motion Tracker...5 Open Motion Tracker... 5 Add a license... 5...

More information

1. Determine the IP addresses of outbound servers

1. Determine the IP addresses of outbound  servers Protecting Domain Names from Spoofing: A Guide for E- Mail Senders Published: February 20, 2004 Microsoft s technical proposal to help deter spoofing is a suggested next step on the road to addressing

More information

Integrate Microsoft ATP. EventTracker v8.x and above

Integrate Microsoft ATP. EventTracker v8.x and above EventTracker v8.x and above Publication Date: August 20, 2018 Abstract This guide provides instructions to configure a Microsoft ATP to send its syslog to EventTracker Enterprise. Scope The configurations

More information

Microsoft Office Groove Server Groove Manager. Domain Administrator s Guide

Microsoft Office Groove Server Groove Manager. Domain Administrator s Guide Microsoft Office Groove Server 2007 Groove Manager Domain Administrator s Guide Copyright Information in this document, including URL and other Internet Web site references, is subject to change without

More information

IDoc based adapterless communication between SAP NetWeaver Application Server (SAP NetWeaver AS) and Microsoft BizTalk Server

IDoc based adapterless communication between SAP NetWeaver Application Server (SAP NetWeaver AS) and Microsoft BizTalk Server Collaboration Technology Support Center Microsoft Collaboration Brief August 2005 IDoc based adapterless communication between SAP NetWeaver Application Server (SAP NetWeaver AS) and Microsoft BizTalk

More information

Integrate Bluecoat Content Analysis. EventTracker v9.x and above

Integrate Bluecoat Content Analysis. EventTracker v9.x and above EventTracker v9.x and above Publication Date: June 8, 2018 Abstract This guide provides instructions to configure a Bluecoat Content Analysis to send its syslog to EventTracker Enterprise. Scope The configurations

More information

Microsoft Office Communicator 2007 R2 Getting Started Guide. Published: December 2008

Microsoft Office Communicator 2007 R2 Getting Started Guide. Published: December 2008 Microsoft Office Communicator 2007 R2 Getting Started Guide Published: December 2008 Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

Exclaimer Mail Disclaimers 1.0 Release Notes

Exclaimer Mail Disclaimers 1.0 Release Notes Exclaimer Release Notes Exclaimer UK +44 (0) 1252 531 422 USA 1-888-450-9631 info@exclaimer.com 1 Contents About these Release Notes... 3 Release Number... 3 System Requirements... 3 Hardware... 3 Software...

More information

Integrate IIS SMTP server. EventTracker v8.x and above

Integrate IIS SMTP server. EventTracker v8.x and above EventTracker v8.x and above Publication Date: May 29, 2017 Abstract This guide helps you in configuring IIS SMTP server and EventTracker to receive SMTP Server events. In this guide, you will find the

More information

WorkPlace Agent Service

WorkPlace Agent Service WorkPlace Agent Service Installation and User Guide WorkPlace 16.00.00.00 + Paramount Technologies Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com

More information

Aimetis Symphony Mobile. 2.7.x. (Mobile Bridge and Mobile Devices) Copyright 2016 Aimetis Corp. 1

Aimetis Symphony Mobile. 2.7.x. (Mobile Bridge and Mobile Devices) Copyright 2016 Aimetis Corp. 1 Aimetis Symphony Mobile (Mobile Bridge and Mobile Devices) 2.7.x Copyright 2016 Aimetis Corp. 1 Disclaimers and Legal Information Copyright 2016 Aimetis Inc. All rights reserved. This material is for informational

More information

Integrating Microsoft Forefront Unified Access Gateway (UAG)

Integrating Microsoft Forefront Unified Access Gateway (UAG) Integrating Microsoft Forefront Unified Access Gateway (UAG) EventTracker v7.x Publication Date: Sep 17, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract This guide

More information

Integrating Imperva SecureSphere

Integrating Imperva SecureSphere Integrating Imperva SecureSphere Publication Date: November 30, 2015 Abstract This guide provides instructions to configure Imperva SecureSphere to send the syslog events to EventTracker. Scope The configurations

More information

Installation and User Guide Worksoft Certify Content Merge

Installation and User Guide Worksoft Certify Content Merge Installation and User Guide Worksoft Certify Content Merge Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Certify Content Merge Installation and

More information

Steel-Belted Radius Installation Instructions for EAP-FAST Security Patch

Steel-Belted Radius Installation Instructions for EAP-FAST Security Patch Security Patch Steel-Belted Radius Installation Instructions for EAP-FAST Security Patch Revision 0.5 22 September 2009 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA

More information

Creating Custom Patches through Packing List Utility

Creating Custom Patches through Packing List Utility Creating Custom Patches through Packing List Utility The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market

More information

EventTracker v7.x. Integrating Cisco Catalyst. EventTracker 8815 Centre Park Drive Columbia MD

EventTracker v7.x. Integrating Cisco Catalyst. EventTracker 8815 Centre Park Drive Columbia MD Integrating Cisco Catalyst EventTracker v7.x Publication Date: Sep 4, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com About this Guide This guide provides instructions to

More information

Deep Dive into Apps for Office in Outlook

Deep Dive into Apps for Office in Outlook Deep Dive into Apps for Office in Outlook Office 365 Hands-on lab In this lab you will get hands-on experience developing Mail Apps which target Microsoft Outlook and OWA. This document is provided for

More information