LOADING DATA INTO TENANT TABLES

Size: px
Start display at page:

Download "LOADING DATA INTO TENANT TABLES"

Transcription

1 LOADING DATA INTO TENANT TABLES Fellow and OpenEdge Evangelist Document Version 1.0 December 2011 December, 2011 Page 1 of 10

2 DISCLAIMER Certain portions of this document contain information about Progress Software Corporation s plans for future product development and overall business strategies. Such information is proprietary and confidential to Progress Software Corporation and may be used by you solely in accordance with the terms and conditions specified in the PSDN Online ( Terms of Use ( Progress Software Corporation reserves the right, in its sole discretion, to modify or abandon without notice any of the plans described herein pertaining to future development and/or business development strategies. Any reference to third party software and/or features is intended for illustration purposes only. Progress Software Corporation does not endorse or sponsor such third parties or software. In the earlier videos in this series, and the white paper on Defining Tenants, Domains, and Users, I set up tenants, domains, and users for the sportsmt sample database. Now I m finally going to load some data into the database for different tenants, and see the effect of all the work done so far, when users in different domains for different tenants connect to the database. In the videos and the screenshots in this and later papers, I've switched from running OpenEdge Management to just running OpenEdge Explorer. This is just to emphasize that the Database Administration Console features I'm showing you work the same in both products. Selecting the sportsmt database connection link in the Admin Console brings up the list of options in the list frame to the left, including Tenants: I select EastSports, and then Edit tenant, to show you something very important: December, 2011 Page 2 of 10

3 In a previous session I chose the delay allocation option for some of the tenants when I created them, to show you how you can move individual objects around between areas, if you don t want them all to wind up in the default areas defined for the tenant. I could have chosen to force allocation of those partitions when I committed the tenant creation, but I chose not to. The important thing to realize is that at some point you have to allocate those paritions before you can store data into them; they don t get allocated automatically. You can go back into the Edit tenant operation and allocate partitions at any time before you load data into them. Under the Tools menu is an item labeled Allocate partitions: If I select that, and confirm that it s going to allocate parititions that were set to delayed, the EastSports partitions are allocated and I can load data into the table instances for that tenant. There is also an API in ABL that gives you access to your December, 2011 Page 3 of 10

4 tenants, and you can use the built-in Allocate() method to allocate partitions at runtime, but that API is beyond the scope of what I m doing here, which is to show you how to do things in the tools. In any case, I also have to go in and do the same thing for the WestSports and SouthSports tenants, which were also created with delayed allocation. After completing that, the next task is to load the application data into the database from all the individual OpenEdge 10 databases it was dumped from. There are several ways this can be done, and other options are shown later in this series, but here I want to allow a database administrator for each tenant to load the data for that tenant, so I need to create some more users. Keep in mind that this simple example doesn't reflect the security requirements of a real application. An application user connected using the blank Userid wouldn't normally be allowed to define administrator users for various tenants. In any case, the new users are all named Admin. This also helps reinforce the fact that you can have multiple instances of the same username in a database, because it s the combination of the userid and domain name that uniquely identifies a user. The first Admin user is for the EastSportsUser domain, and the password is Admin as well. The screenshot below shows the first of four new Admin users: Each of the four Admin users will be in charge of loading and managing one tenant s data in the new combined database. Below I ve created all four Admin users, one for each domain: December, 2011 Page 4 of 10

5 Since I made changes to the data security in an earlier session to show how to set security based on a domain, I need to undo at least one of those settings, where I disallowed Can-Write access to the Order table for everyone in the WestSportsUser domain. I need to change that setting in the Edit data security operation or my Admin user won t be able to load the data: Once that s taken care of, I can show how to get data into the database. I just do this with some simple ABL statements in a procedure window. First I open a little procedure named loadstate.p to load all the state names and state codes into the State table. You can see that it just inputs from a.d file where I dumped the State table out of one of my four OpenEdge 10 databases; they would all have had the same data for this table, of course, and now in my new multi-tenant database I only need one copy of that data: December, 2011 Page 5 of 10

6 input from State.d. repeat: create state. import state.state state.statename state.region. end. Remember that I left the State table as a shared table, so it works the same as it did in the old databases. That is, all users, no matter what tenant they re associated with, can see the same State data. In principle any user with the right privileges can load that data. There s no need to be logged in using a domain for a particular tenant. I can just run the procedure using the blank userid I connected to the database with, since that hasn t been disallowed, even though once again, the blank userid should never be allowed to do this in a real application. After executing loadstate.p I can verify the results, simply by typing FOR EACH State: DISPLAY State. This confirms that any user in any domain, or in my case in no specific domain, can see the State table: Now I start doing the multi-tenant data loading. One of the simplest ways to establish a userid is to use the ABL SETUSERID function. In a multi-tenant OpenEdge 11 database, the Userid needs to be qualified with the user s domain unless you re just accessing shared and default tenant data through the blank domain. To get started, I re-establish my user identity using the Admin userid for the EastSportsUser domain, which of course is for the EastSports tenant: MESSAGE SETUSERID( Admin@EastSportsUser, Admin) VIEW-AS ALERT-BOX. The MESSAGE statement just displays yes if the Userid and password combination is valid. Keep in mind that I set up these security domains, each of which has its own encrypted domain access code, which in principle adds a level of security to the whole user authentication process. But here I didn t have to specify the domain access code. Why is that? December, 2011 Page 6 of 10

7 If you use the SETUSERID method, or for that matter if you use the ABL CONNECT statement or use U and P to connect to the database from the command line, OpenEdge retrieves the domain access code from the domain record based on the domain name you used, and creates the security credentials for you. This is a very important security consideration. If you use the _User schema table and the _oeusertable authentication system in your database, then users can connect to the database in all these ways that effectively bypass the additional level of security provided by the domain access code. In a later video and paper I show how to set up the security credentials yourself, using the CLIENT-PRINCIPAL built-in object that is part of the new OpenEdge security mechanism, and which lets you take advantage of the domain access code to enhance the security of your database. When I execute this one line of ABL, the MESSAGE statement displays the return value from SETUSERID, which confirms that I connected successfully: Now I can load data into the EastSports tenant partitions. The code to do that is in a procedure called loadeastsports.p, which inputs data from a Customer.d in an EastSports sub-directory, then another.d for the Order table, and one for the OrderLine table. I deal with loading Item records in a later video, because I m going to do something special with those. You can also see below that the procedure disables triggers for LOAD of all these tables (I could have left off the statement for the Item table, since I m not loading it here). As you might expect, there are Create trigger procedures for the tables that assign a key, the customer number or order number, to the next available value from a sequence. Since I m loading existing records that already have keys from another database, I don t need the triggers. And also, I haven t actually created the sequences those triggers use yet, because once again there s something special to be said about sequences in a multi-tenant database that I ll save until later: DISABLE TRIGGERS FOR LOAD OF Customer. DISABLE TRIGGERS FOR LOAD OF Order. DISABLE TRIGGERS FOR LOAD OF ITEM. input from EastSports/Customer.d. repeat: December, 2011 Page 7 of 10

8 create cust. import cust.custnum cust.name cust.address cust.postalcode. end. input from EastSports/Order.d. repeat: create order. import order.custnum order.ordernum order.orderdate order.shipdate. end. input from EastSports/OrderLine.d. repeat: create orderline. import orderline.ordernum orderline.linenum orderline.itemnum orderline.qty. end. The Customer.d below shows the ten Customer records loaded into the new database from the old EastSports copy of the database: 1 "Lift Line Skiing" "276 North Street" "02114" 2 "Urpon Frisbee" "Rattipolku 3" "45360" 3 "Hoops Croquet Co." "Suite 415" "02111" 4 "Go Fishing Ltd" "Unit 2" "HA8 7BN" 5 "Match Point Tennis" "66 Homer Ave" "75431" 6 "Fanatical Athletes" "20 Bicep Bridge Rd" "AB9 2YY" 7 "Aerobics valine KY" "Peltolantie 2" "1234" 8 "Game Set Match" "Box 60" "851 14" 9 "Pihtiputaan Pyora" "Putikontie 2" "44800" 10 "Just Joggers Limited" "Fairwind Trading Est" "BL0 9ND". PSC filename=customer records= ldbname=sportsmt timestamp=2011/09/12-10:57:45 numformat=44,46 dateformat=mdy-1950 map=no-map cpstream=ibm Remember that the backstory for these examples is that there were four separate OpenEdge 10 sports databases, one for each of the clients, like EastSports. EastSports had just 10 Customers, with CustNum values of 1 through 10. So I have a separate set of.d files for each of my four clients, dumped from each of their databases. The data I just loaded will only be visible to userids that connect using a domain for the EastSports tenant. To load the next set of data, I reconnect to the database using the Admin id for WestSports, and execute a similar procedure called loadwestsports.p. All the data from the WestSports database.d s goes into the WestSports tenant partitions. Once that s complete, I keep going for NorthSports and SouthSports. Once all that is complete, I can reconnect as an ordinary user in the EastSportsUser domain, my first user JoeEast: SETUSERID( JoeEast@EastSportsUser, Joe ). December, 2011 Page 8 of 10

9 I just need to type FOR EACH Customer: DISPLAY Customer to see the EastSports customers. I have loaded four sets of Customer data into the database, but Joe only sees the data in the EastSports data partitions: Next I can change users, to JimWest in the WestSportsUser domain: SETUSERID( JimWest@WestSportsUser, Jim ). When I re-execute the same FOR EACH Customer code block, I see the four Customers that were in the WestSports Customer table. Note that I have overlapping customer numbers, as well. Since the index data is stored in separate partitions for each tenant, I can have a separate unique index for each tenant for the same table: December, 2011 Page 9 of 10

10 So now that I have created a multi-tenant OpenEdge 11 database; created tenants, domains, and users for those domains; enabled tables for multi-tenancy; and allocated the partitions for the multi-tenant table instances; I was able to load data into each tenant that is seen only by users who connect using that tenant s domain. In the next paper I go into more detail about how you can set up security credentials to maximize the security of your database. December, 2011 Page 10 of 10

CREATING AND USING THE CLIENT-PRINCIPAL

CREATING AND USING THE CLIENT-PRINCIPAL CREATING AND USING THE CLIENT-PRINCIPAL Fellow and OpenEdge Evangelist Document Version 1.0 December 2011 December, 2011 Page 1 of 9 DISCLAIMER Certain portions of this document contain information about

More information

CALLING AN OPENEDGE WEB SERVICE

CALLING AN OPENEDGE WEB SERVICE CALLING AN OPENEDGE WEB SERVICE Fellow and OpenEdge Evangelist Document Version 1.0 August 2011 August, 2011 Page 1 of 16 DISCLAIMER Certain portions of this document contain information about Progress

More information

USING APPSERVER SUPPORT IN OPENEDGE ARCHITECT

USING APPSERVER SUPPORT IN OPENEDGE ARCHITECT USING APPSERVER SUPPORT IN OPENEDGE ARCHITECT Fellow and OpenEdge Evangelist Document Version 1.0 August 2010 September, 2010 Page 1 of 17 DISCLAIMER Certain portions of this document contain information

More information

DEFINING AN ABL FORM AND BINDING SOURCE

DEFINING AN ABL FORM AND BINDING SOURCE DEFINING AN ABL FORM AND BINDING SOURCE Fellow and OpenEdge Evangelist Document Version 1.0 November 2009 Using Visual Designer and GUI for.net Defining an ABL Form and Binding Source December, 2009 Page

More information

BUILDING AND USING WEB APPLICATIONS

BUILDING AND USING WEB APPLICATIONS BUILDING AND USING WEB APPLICATIONS Fellow and OpenEdge Evangelist Document Version 1.0 July 2010 August, 2011 Page 1 of 21 DISCLAIMER Certain portions of this document contain information about Progress

More information

UPDATING DATA WITH.NET CONTROLS AND A PROBINDINGSOURCE

UPDATING DATA WITH.NET CONTROLS AND A PROBINDINGSOURCE UPDATING DATA WITH.NET CONTROLS AND A PROBINDINGSOURCE Fellow and OpenEdge Evangelist Document Version 1.0 March 2010 April, 2010 Page 1 of 17 DISCLAIMER Certain portions of this document contain information

More information

Introduction to Multi-tenancy. Gus Bjorklund October 2013

Introduction to Multi-tenancy. Gus Bjorklund October 2013 Introduction to Multi-tenancy Gus Bjorklund October 2013 Introduction The session explores the upcoming inbuilt multi-tenancy capabilities included in the OpenEdge 11 RDBMS. Learn how multi-tenant support

More information

USING THE OEBPM API. John Sadd Fellow and OpenEdge Evangelist Document Version 1.0 May May, 2012 Page 1 of 15

USING THE OEBPM API. John Sadd Fellow and OpenEdge Evangelist Document Version 1.0 May May, 2012 Page 1 of 15 USING THE OEBPM API Fellow and OpenEdge Evangelist Document Version 1.0 May 2012 May, 2012 Page 1 of 15 DISCLAIMER Certain portions of this document contain information about Progress Software Corporation

More information

MultiTenancy - An Overview For Techies

MultiTenancy - An Overview For Techies MultiTenancy - An Overview For Techies Timothy D. Kuehn Senior OpenEdge Consultant timk@tdkcs.ca tim.kuehn@gmail.com Ph 519-576-8100 Cell: 519-781-0081 MultiTenancy for Developers PUG Challenge 2013 -

More information

Progress OpenEdge Multi-tenant Database

Progress OpenEdge Multi-tenant Database Progress OpenEdge Multi-tenant Database Workshop Gus Björklund, Instructor gus@progress.com Introduction This workshop is intended to introduce you to the inbuilt multi-tenant capabilities of the OpenEdge

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

Top n performance tips Adam Backman, White Star Software

Top n performance tips Adam Backman, White Star Software Top n performance tips Adam Backman, White Star Software Abstract: Performance is a vital component of user satisfaction. There are few issues more visible than poor system performance. This presentation

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

Avaya Web Conferencing Administrator's Guide

Avaya Web Conferencing Administrator's Guide Avaya Web Conferencing Administrator's Guide Version 4.1.20 October 2008 Document number 04-603073 2008 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information

More information

ServiceNow Deployment Guide

ServiceNow Deployment Guide ServiceNow Deployment Guide (For Eureka release and forward) Okta Inc. 301 Brannan Street, 3 rd Floor San Francisco, CA, 94107 info@okta.com 1-888-722-7871 Contents Overview... 3 Active Directory Integration...

More information

DES MOINES CORPORATE GAMES MANAGER GUIDE FOR COMPANY ADMINISTRATORS

DES MOINES CORPORATE GAMES MANAGER GUIDE FOR COMPANY ADMINISTRATORS DES MOINES CORPORATE GAMES MANAGER GUIDE FOR COMPANY ADMINISTRATORS Table of Contents Table of Contents... 1 Getting Started... 2 Activating Your User Account... 2 Understanding Your Corporate Games Manager

More information

Horizontal Table Partitioning

Horizontal Table Partitioning Horizontal Table Partitioning Dealing with a manageable slice of the pie. Richard Banville Fellow, OpenEdge Development August 7, 2013 Agenda OverviewFunctionalityUsageSummary 2 Agenda 1 Overview 2 Feature

More information

BLUEPRINT REQUIREMENTS CENTER 2010 BLUEPRINT TEAM REPOSITORY VERSION 2. Administrator s Guide

BLUEPRINT REQUIREMENTS CENTER 2010 BLUEPRINT TEAM REPOSITORY VERSION 2. Administrator s Guide BLUEPRINT REQUIREMENTS CENTER 2010 BLUEPRINT TEAM REPOSITORY VERSION 2 September 2010 Contents Introduction... 2 Repository Configuration Files... 3 User Administration... 5 Appendix A. Instructions for

More information

Chime for Lync High Availability Setup

Chime for Lync High Availability Setup Chime for Lync High Availability Setup Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation

More information

Pianola User Guide for Club Managers How to manage your bridge club using Pianola

Pianola User Guide for Club Managers How to manage your bridge club using Pianola Pianola User Guide for Club Managers How to manage your bridge club using Pianola Pianola Admin User Guide Page 1 Contents Thank you for using Pianola. This user guide covers the main features of Pianola.

More information

NetBackup 7.6 Replication Director A Hands On Experience

NetBackup 7.6 Replication Director A Hands On Experience NetBackup 7.6 Replication Director A Hands On Experience Description Through this hands on lab you can test drive Replication Director and experience for yourself this easy to use, powerful feature. Once

More information

Multi-Tenancy in vrealize Orchestrator. vrealize Orchestrator 7.4

Multi-Tenancy in vrealize Orchestrator. vrealize Orchestrator 7.4 Multi-Tenancy in vrealize Orchestrator vrealize Orchestrator 7.4 Multi-Tenancy in vrealize Orchestrator You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

NetApp Cloud Volumes Service for AWS

NetApp Cloud Volumes Service for AWS NetApp Cloud Volumes Service for AWS AWS Account Setup Cloud Volumes Team, NetApp, Inc. March 29, 2019 Abstract This document provides instructions to set up the initial AWS environment for using the NetApp

More information

MANAGEMENT AND CONFIGURATION MANUAL

MANAGEMENT AND CONFIGURATION MANUAL MANAGEMENT AND CONFIGURATION MANUAL Page 1 of 31 Table of Contents Overview... 3 SYSTEM REQUIREMENTS... 3 The Administration Console... 3 CHAT DASHBOARD... 4 COMPANY CONFIGS... 4 MANAGE LEARNING... 7 MANAGE

More information

Centrify for Dropbox Deployment Guide

Centrify for Dropbox Deployment Guide CENTRIFY DEPLOYMENT GUIDE Centrify for Dropbox Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as a critical component of

More information

User Guide. Version R92. English

User Guide. Version R92. English AuthAnvil User Guide Version R92 English October 9, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

Set Up Rules Palette

Set Up Rules Palette Oracle Insurance Policy Administration Set Up Rules Palette Installation Instructions Step 3 Version 9.5.0.0 Documentation Part Number: E23638_01 June 2012 Copyright 2009, 2012 Oracle and/or its affiliates.

More information

Convert Your JavaScript Buttons for Lightning Experience

Convert Your JavaScript Buttons for Lightning Experience Convert Your JavaScript Buttons for Lightning Experience Version 1, 1 @salesforcedocs Last updated: January 8, 2019 Copyright 2000 2019 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

ONLINE BOOKING GUIDE

ONLINE BOOKING GUIDE ONLINE BOOKING GUIDE Table of Contents OVERVIEW & LOGGING IN... 2 SET UP & EDIT YOUR PROFILE... 4 BOOKING PREFERENCES TENNIS... 5 TENNIS BOOKINGS... 6 MAKE A BOOKING TENNIS... 6 MAKE A BOOKING SQUASH...

More information

W W W. M A X I M I Z E R. C O M

W W W. M A X I M I Z E R. C O M W W W. M A X I M I Z E R. C O M Notice of Copyright Published by Maximizer Software Inc. Copyright 2018 All rights reserved Registered Trademarks and Proprietary Names Product names mentioned in this document

More information

MOVE BEYOND GPO FOR NEXT-LEVEL PRIVILEGE MANAGEMENT

MOVE BEYOND GPO FOR NEXT-LEVEL PRIVILEGE MANAGEMENT MOVE BEYOND GPO FOR NEXT-LEVEL PRIVILEGE MANAGEMENT DON T USE A HAMMER MOVE BEYOND GPO FOR NEXT-LEVEL TO TURN A SCREW PRIVILEGE MANAGEMENT The first stage of privilege management Most organizations with

More information

The inspection tool lets you inspect a document for metadata, like author information, headers and footers, and other information that may be hidden

The inspection tool lets you inspect a document for metadata, like author information, headers and footers, and other information that may be hidden 7 8 The inspection tool lets you inspect a document for metadata, like author information, headers and footers, and other information that may be hidden in your document before you post it in a public

More information

OpenEdge 11.5 Table Partitioning Workshop

OpenEdge 11.5 Table Partitioning Workshop OpenEdge 11.5 Table Partitioning Workshop Page 1 of 45 Table of Contents Preface... 3 Setting up your environment... 5 Preparing database for table partitioning... 7 Creating partition policy (LIST partition)...

More information

IBM Atlas Suite Users Guide: Data Source Maintenance with IIM. for IBM Atlas Suite v6.0

IBM Atlas Suite Users Guide: Data Source Maintenance with IIM. for IBM Atlas Suite v6.0 IBM Atlas Suite Users Guide: Data Source Maintenance with IIM for IBM Atlas Suite v6.0 IBM Atlas Suite Users Guide: Data Source Maintenance with IIM This edition applies to version 6.0 of IBM Atlas Suite

More information

VMware AirWatch and Office 365 Application Data Loss Prevention Policies

VMware AirWatch and Office 365 Application Data Loss Prevention Policies VMware AirWatch and Office 365 Application Data Loss Prevention Policies Workspace ONE UEM v9.5 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2

Distributed Transactions and PegaRULES Process Commander. PegaRULES Process Commander Versions 5.1 and 5.2 Distributed Transactions and PegaRULES Process Commander PegaRULES Process Commander Versions 5.1 and 5.2 Copyright 2007 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products

More information

GradeConnect.com. User Manual

GradeConnect.com. User Manual GradeConnect.com User Manual Version 2.0 2003-2006, GradeConnect, Inc. Written by Bernie Salvaggio Edited by Charles Gallagher & Beth Giuliano Contents Teachers...5 Account Basics... 5 Register Your School

More information

Progress OpenEdge. > Getting Started. in the Amazon Cloud.

Progress OpenEdge. > Getting Started. in the Amazon Cloud. Progress OpenEdge w h i t e p a p e r > Getting Started with Progress OpenEdge in the Amazon Cloud Part II: Your First AMI Instance Table of Contents Table of Contents.........................................

More information

DOOR Digital Open Object Repository User Manual v1.0 July 23, 2006

DOOR Digital Open Object Repository User Manual v1.0 July 23, 2006 DOOR Digital Open Object Repository User Manual v1.0 July 23, 2006-1 - TABLE OF CONTENT 1. INTRODUCTION...4 2. DOOR: STAND ALONE VERSION...5 2.1. Authentications and accounts...5 2.1.1. Supported authentication

More information

PeoplePassword Documentation v6.0

PeoplePassword Documentation v6.0 PeoplePassword Documentation v6.0 Instructions to Configure and Use PeoplePassword v6.0, LLC Contents Overview... 3 Getting Started... 3 Components of PeoplePassword... 3 Core Components... 3 Optional

More information

Netsweeper Reporter Manual

Netsweeper Reporter Manual Netsweeper Reporter Manual Version 2.6.25 Reporter Manual 1999-2008 Netsweeper Inc. All rights reserved. Netsweeper Inc. 104 Dawson Road, Guelph, Ontario, N1H 1A7, Canada Phone: +1 519-826-5222 Fax: +1

More information

Hands-on Lab: Operations Manager for z/vm Lab Exercises. March 2015 SHARE Session #16472

Hands-on Lab: Operations Manager for z/vm Lab Exercises. March 2015 SHARE Session #16472 Hands-on Lab: Operations Manager for z/vm Lab Exercises March 2015 SHARE Session #16472 Copyright IBM Corp. 2013, 2015 Page 1 March 2015 Reference information for all Operations Manager labs: You each

More information

WebSphere V6 Network Deployment: HTTP Session Persistence using DB2 Type-2 Driver

WebSphere V6 Network Deployment: HTTP Session Persistence using DB2 Type-2 Driver Chapter 11 Extension WebSphere V6 Network Deployment: HTTP Session Persistence using DB2 Type-2 Driver In the printed version of the book, we gave step by step instructions on how to configure database

More information

ServiceNow Okta Identity Cloud for ServiceNow application Deployment Guide Okta Inc.

ServiceNow Okta Identity Cloud for ServiceNow application Deployment Guide Okta Inc. ServiceNow Okta Identity Cloud for ServiceNow application Deployment Guide Okta Identity Cloud for ServiceNow Configuring the Okta Application from the ServiceNow App Store Okta Inc. 301 Brannan Street

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP USER GUIDE HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.5 Product release date: August 2018 Document edition: First Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This

More information

White Paper. Fabasoft Folio Thin Client Support. Fabasoft Folio 2017 R1

White Paper. Fabasoft Folio Thin Client Support. Fabasoft Folio 2017 R1 White Paper Fabasoft Folio Thin Client Support Fabasoft Folio 2017 R1 Copyright Fabasoft R&D GmbH, Linz, Austria, 2018. All rights reserved. All hardware and software names used are registered trade names

More information

Configuring Directories in an ICVERIFY Master / Substation Setup

Configuring Directories in an ICVERIFY Master / Substation Setup Configuring Directories in an ICVERIFY Master / Substation Setup An ICVERIFY, Inc. Technical Document June 16, 2006 Disclaimer: The information contained herein is intended to apply to the ICVERIFY, Inc.

More information

Authentication CS 4720 Mobile Application Development

Authentication CS 4720 Mobile Application Development Authentication Mobile Application Development System Security Human: social engineering attacks Physical: steal the server itself Network: treat your server like a 2 year old Operating System: the war

More information

DEPLOYMENT ROADMAP May 2015

DEPLOYMENT ROADMAP May 2015 DEPLOYMENT ROADMAP May 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may

More information

Web Console Setup & User Guide. Version 7.1

Web Console Setup & User Guide. Version 7.1 Web Console Setup & User Guide Version 7.1 1 Contents Page Number Chapter 1 - Installation and Access 3 Server Setup Client Setup Windows Client Setup Mac Client Setup Linux Client Setup Interoperation

More information

For Volunteers An Elvanto Guide

For Volunteers An Elvanto Guide For Volunteers An Elvanto Guide www.elvanto.com Volunteers are what keep churches running! This guide is for volunteers who use Elvanto. If you re in charge of volunteers, why not check out our Volunteer

More information

RED IM Integration with Bomgar Privileged Access

RED IM Integration with Bomgar Privileged Access RED IM Integration with Bomgar Privileged Access 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

QuickBooks 2008 Software Installation Guide

QuickBooks 2008 Software Installation Guide 12/11/07; Ver. APD-1.2 Welcome This guide is designed to support users installing QuickBooks: Pro or Premier 2008 financial accounting software, especially in a networked environment. The guide also covers

More information

Mission Guide: Google Apps

Mission Guide: Google Apps Mission Guide: Google Apps Your Mission: Use F-Response to access Google Drive Apps for Business (G Suite) Using F-Response to connect to Google Drive Apps for Business and collect their contents Important

More information

Laserfiche Avante 9.2 Frequently Asked Questions. White Paper

Laserfiche Avante 9.2 Frequently Asked Questions. White Paper Laserfiche Avante 9.2 Frequently Asked Questions White Paper September 2014 Table of Contents Laserfiche Avante Basics... 3 What s the difference between a Laserfiche Avante installation and a Laserfiche

More information

Microsoft Dynamics GP Web Client Installation and Administration Guide For Service Pack 1

Microsoft Dynamics GP Web Client Installation and Administration Guide For Service Pack 1 Microsoft Dynamics GP 2013 Web Client Installation and Administration Guide For Service Pack 1 Copyright Copyright 2013 Microsoft. All rights reserved. Limitation of liability This document is provided

More information

FlexNAS/NetServ as iscsi Target

FlexNAS/NetServ as iscsi Target FlexNAS/NetServ as iscsi Target Revision History Version Comments V.0 First Edition. Contents What is iscsi...... Add iscsi target on NAStorage.......... ~ Connect to iscsi target (Windows 7)..... 5 ~

More information

BroadVision. InfoExchange Portal. InfoExchange Portal. Administrator s Guide

BroadVision. InfoExchange Portal. InfoExchange Portal. Administrator s Guide BroadVision InfoExchange Portal InfoExchange Portal Administrator s Guide Version 6.0.0 BroadVision, Inc. 585 Broadway Redwood City, CA 94063 (650) 261-5100 InfoExchange Portal Administrator s Guide Copyright

More information

User Guide HelpSystems Insite 1.6

User Guide HelpSystems Insite 1.6 User Guide HelpSystems Insite 1.6 Copyright Copyright HelpSystems, LLC. HelpSystems Insite, OPAL, OPerator Assistance Language, Robot ALERT, Robot AUTOTUNE, Robot CLIENT, Robot CONSOLE, Robot CORRAL, Robot

More information

Microsoft Intune App Protection Policies Integration. VMware Workspace ONE UEM 1811

Microsoft Intune App Protection Policies Integration. VMware Workspace ONE UEM 1811 Microsoft Intune App Protection Policies Integration VMware Workspace ONE UEM 1811 Microsoft Intune App Protection Policies Integration You can find the most up-to-date technical documentation on the VMware

More information

Introduction to Security in Laserfiche 8.3 and later. White Paper

Introduction to Security in Laserfiche 8.3 and later. White Paper Introduction to Security in Laserfiche 8.3 and later White Paper November 2013 Table of Contents Authentication and Authorization... 4 Authentication... 4 Windows Accounts and LDAP... 5 Laserfiche Trustees...

More information

Instructions 1. Elevation of Privilege Instructions. Draw a diagram of the system you want to threat model before you deal the cards.

Instructions 1. Elevation of Privilege Instructions. Draw a diagram of the system you want to threat model before you deal the cards. Instructions 1 Elevation of Privilege Instructions Draw a diagram of the system you want to threat model before you deal the cards. Deal the deck to 3 6 players. Play starts with the 3 of Tampering. Play

More information

TIMESIMPLICITY EMPLOYEE GUIDE V1(0317D)

TIMESIMPLICITY EMPLOYEE GUIDE V1(0317D) Contents TimeSimplicity employee scheduling simplified.... 3 Login... 3 Published url... 3 Username:... 3 Password... 3 Company Code... 3 Employee Portal... Error! Bookmark not defined. Month... 4 Request

More information

ThinPoint Quick Installation Guide - 1 -

ThinPoint Quick Installation Guide - 1 - ThinPoint Quick Start Guide ThinPoint Quick Installation Guide - 1 - ThinPoint Quick Start Guide (Fourth Edition, April 2008) Published by: NetLeverage Pty. Ltd. Suite 17, 17 International Business Centre

More information

Directions for Setting up Remote Desktop Connection for PC:

Directions for Setting up Remote Desktop Connection for PC: Directions for Setting up Remote Desktop Connection for PC: BEFORE YOU BEGIN, MAKE SURE YOU HAVE: COMPUTER NAME USERNAME TEMPORARY PASSWORD 1 4/19/2016 Creating a Shortcut to your Concourse Hosting remote

More information

ACCELERATOR 8.0 CISCO JABBER INTEGRATION GUIDE

ACCELERATOR 8.0 CISCO JABBER INTEGRATION GUIDE ACCELERATOR 8.0 CISCO JABBER INTEGRATION GUIDE April 2017 Tango Networks, Inc. phone: +1 469-920-2100 2801 Network Blvd, Suite 200 fax: +1 469-920-2099 Frisco, TX 75034 USA www.tango-networks.com 2004-2017

More information

Metalogix Essentials for Office Creating a Backup

Metalogix Essentials for Office Creating a Backup Metalogix Essentials for Office 365 2.1 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

Figure 1 - The password is 'Smith'

Figure 1 - The password is 'Smith' Using the Puppy School Booking system Setting up... 1 Your profile... 3 Add New... 4 New Venue... 6 New Course... 7 New Booking... 7 View & Edit... 8 View Venues... 10 Edit Venue... 10 View Courses...

More information

New Visions Online Application. Table of Contents

New Visions Online Application. Table of Contents New Visions Online Application http://apps.gstboces.org/nvapply/ Table of Contents About... 2 Logging In... 6 Changing your Account Settings... 7 Student Instructions... 8 Counselor Instructions... 10

More information

Cisco NAC Profiler UI User Administration

Cisco NAC Profiler UI User Administration CHAPTER 14 Topics in this chapter include: Overview, page 14-1 Managing Cisco NAC Profiler Web User Accounts, page 14-2 Enabling RADIUS Authentication for Cisco NAC Profiler User Accounts, page 14-7 Changing

More information

AAD Connect setup guide

AAD Connect setup guide AAD Connect setup guide Version 1.0 (11-07-2017) Nick Boszhard (2AT) Contents Introduction... 3 Step 1: Run the AAD Connect tool... 4 Step 2: Select your setup type... 5 Step 3: Install required components...

More information

User Guide. Version R94. English

User Guide. Version R94. English AuthAnvil User Guide Version R94 English March 8, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated

More information

Ekran System v.6.1 Troubleshooting

Ekran System v.6.1 Troubleshooting Ekran System v.6.1 Troubleshooting Quick Access to Log Files Table of Contents Quick Access to Log Files... 3 Database/Server... 4 Database/Server Related Issues... 4 Database/Server Related Error Messages...

More information

Installing Dolphin on Your PC

Installing Dolphin on Your PC Installing Dolphin on Your PC Note: When installing Dolphin as a test platform on the PC there are a few things you can overlook. Thus, this installation guide won t help you with installing Dolphin on

More information

Installation User Guide SMART ACCESS 2.0

Installation User Guide SMART ACCESS 2.0 Installation User Guide SMART ACCESS 2.0 Date: 05 March 2013 Version: 2.0 Table of Contents 1. OVERVIEW... 3 2. INSTALLATION PROCEDURE... 4 2.1. IIS INSTALLATION:... 5 2.2. REPORTSERVER 2008 SP1 INSTALLATION:...

More information

Installation Guide. Version Last updated: November. tryfoexnow.com 1 of 3

Installation Guide. Version Last updated: November. tryfoexnow.com 1 of 3 Installation Guide Version 3.1.0 @FOEXplugins Last updated: November tryfoexnow.com 1 of 3 FOEX Installation Guide, version 3.1.0 Copyright 2017, FOEX GmbH. All rights reserved. Authors: Peter Raganitsch,

More information

Ion Client User Manual

Ion Client User Manual Ion Client User Manual Table of Contents About Ion Protocol...3 System Requirements... 4 Hardware (Client)... 4 Hardware (Server Connecting to)... 4 Software (Ion Client)... 4 Software (Server Connecting

More information

Office 365 for IT Pros

Office 365 for IT Pros Office 365 for IT Pros Fourth edition Performing a Cutover migration to Exchange Online Published by Tony Redmond, Paul Cunningham, Michael Van Horenbeeck, and Ståle Hansen. Copyright 2015-2017 by Tony

More information

RefChatter Interface (updated December 2014)

RefChatter Interface (updated December 2014) RefChatter Interface (updated December 2014) URL: https://refchatter.net/webclient Login Screen: Sign in with your username and password. 1 Queue Selection: Select / unselect queues and click Begin Staffing

More information

5.0 Admin Guide. Remote Request System Admin Guide. Toll Free Phone:

5.0 Admin Guide. Remote Request System Admin Guide.     Toll Free Phone: 5.0 Admin Guide Remote Request System Admin Guide www.goteamworks.com Email: support@goteamworks.com Toll Free Phone: 866-892-0034 Copyright 2012-2013 by TeamWORKS Solutions, Inc. All Rights Reserved Table

More information

User's Guide c-treeace SQL Explorer

User's Guide c-treeace SQL Explorer User's Guide c-treeace SQL Explorer Contents 1. c-treeace SQL Explorer... 4 1.1 Database Operations... 5 Add Existing Database... 6 Change Database... 7 Create User... 7 New Database... 8 Refresh... 8

More information

Databases in Azure Practical Exercises

Databases in Azure Practical Exercises Databases in Azure Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the

More information

WordPress Tutorial for Beginners with Step by Step PDF by Stratosphere Digital

WordPress Tutorial for Beginners with Step by Step PDF by Stratosphere Digital WordPress Tutorial for Beginners with Step by Step PDF by Stratosphere Digital This WordPress tutorial for beginners (find the PDF at the bottom of this post) will quickly introduce you to every core WordPress

More information

ForeScout CounterACT. Configuration Guide. Version 4.1

ForeScout CounterACT. Configuration Guide. Version 4.1 ForeScout CounterACT Network Module: VPN Concentrator Plugin Version 4.1 Table of Contents About the VPN Concentrator Plugin... 3 What to Do... 3 Requirements... 3 CounterACT Requirements... 3 Supported

More information

XFINITY Welcome Packet

XFINITY Welcome Packet XFINITY Welcome Packet Welcome! Your building comes with a fast, reliable property-wide WiFi network as well as access to our popular XFINITY TV video streaming service for university students. In the

More information

Configuring Role-Based Access Control

Configuring Role-Based Access Control Configuring Role-Based Access Control This chapter includes the following sections: Role-Based Access Control, page 1 User Accounts for Cisco UCS Manager, page 1 User Roles, page 3 Privileges, page 4 User

More information

Burning CDs in Windows XP

Burning CDs in Windows XP B 770 / 1 Make CD Burning a Breeze with Windows XP's Built-in Tools If your PC is equipped with a rewritable CD drive you ve almost certainly got some specialised software for copying files to CDs. If

More information

Omni-Channel for Administrators

Omni-Channel for Administrators Omni-Channel for Administrators Salesforce, Summer 18 @salesforcedocs Last updated: August 16, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Safe AutoLogon Password Server

Safe AutoLogon Password Server Safe AutoLogon Password Server Product Overview White Paper Software version: 8.0 www.wmsoftware.com Contents Introduction... 1 Safe AutoLogon... 1 A Complete Solution: Safe AutoLogon + Safe AutoLogon

More information

FAMCare Connect Admin Guide

FAMCare Connect Admin Guide 2011-2012 FAMCare Connect Admin Guide 2011-2012 The FAMCare Connect Administrator Guide will help a FAMCare administrator setup and configure the system. Contents How to Define Security Needs... 3 Security

More information

Reference manual Integrated database authentication

Reference manual Integrated database authentication BUSINESS SOFTWARE Reference manual Integrated database authentication Installation and configuration ii This document is intended for Agresso Business World Consultants and customer Super Users, and thus

More information

SMEC ASSET MANAGEMENT SYSTEM PMS Version 5.5. System Administrator s Guide

SMEC ASSET MANAGEMENT SYSTEM PMS Version 5.5. System Administrator s Guide SMEC ASSET MANAGEMENT SYSTEM PMS Version 5.5 System Administrator s Guide January 2015 PREPARATION, REVIEW AND AUTHORISATION Revision # Date Prepared by Reviewed by Approved for Issue by 1 21-Jan-2015

More information

VMware Horizon Migration Tool User Guide

VMware Horizon Migration Tool User Guide VMware Horizon Migration Tool User Guide Version 3.0.0 August 2017 VMware End User Computing 1/31 @2017 VMware, Inc. All rights reserved. @2017 VMware, Inc. All rights reserved. This product is protected

More information

Setting Up Scan to CIFS on MB400/MC300/C Series

Setting Up Scan to CIFS on MB400/MC300/C Series Introduction Setting Up Scan to CIFS on MB400/MC300/C3520-30 Series Scanning to CIFS is the term that we use to represent Scan to Network. This basically involves scanning a document from the ADF/Flatbed

More information

IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS. VMware Identity Manager.

IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS. VMware Identity Manager. IMPLEMENTING SINGLE SIGN-ON (SSO) TO KERBEROS CONSTRAINED DELEGATION AND HEADER-BASED APPS VMware Identity Manager February 2017 V1 1 2 Table of Contents Overview... 5 Benefits of BIG-IP APM and Identity

More information

QuickStart Guide for Managing Computers. Version

QuickStart Guide for Managing Computers. Version QuickStart Guide for Managing Computers Version 10.6.0 copyright 2002-2018 Jamf. All rights reserved. Jamf has made all efforts to ensure that this guide is accurate. Jamf 100 Washington Ave S Suite 1100

More information

CTC Accounts Active Directory Synchronizer User Guide

CTC Accounts Active Directory Synchronizer User Guide i Contents Overview... 3 System Requirements... 4 Additional Notes... 5 Installation and Configuration... 6 Running the Synchronizer Interactively... 7 Automatic Updates... 7 Logging In... 8 Options...

More information

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur.

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur. Automatic Logon Autologon This feature allows you to pre-configure a list of IP addresses that will be able to connect and log on without any User ID, Password or Domain prompting when using the Georgia

More information

METDaemon Quick Start Guide

METDaemon Quick Start Guide METDaemon Quick Start Guide METDaemon Quick Start Guide Copyright 2004 On Time Support This manual, as well as the software described in it, is furnished under license and may be used or copied only in

More information