Motivation: Qgis: Database:

Size: px
Start display at page:

Download "Motivation: Qgis: Database:"

Transcription

1 Motivation: Qgis, is an excellent replacement of traditional GIS(Geographic Information System) like: Arcgis or GE Smallworld, this Qgis pulgin provides a set of features usually included in the cited Software: 1) Versioning: Provides data versioning for tables stored in Postgres. 2) Security defined by an administrator, administered in the server's database (clientserver architecture): i.e., the ability to manage users with different levels of access. Implementing the figure of "System administrator". 3) Centralization: provide the ability to centralize not only the data of the company but also the projects (style). I.e. data and how to display versioned data. Centralization, allows to maintain the scheme of safety, integrity and strategy of crash recovery, backup of data, etc. Qgis: Qgis, is a GIS (geographic information system); It is a great tool, currently considered the most used open source GIS. Provides a Python language development environment. Through the years, Qgis has gain wide acceptance, and build up a set of plugins of importance. Within the data sources that Qgis can work with, there is a set of relational databases with spatial support, such as postgres with postgis extension. Database: Postgres: It is an open source relational database server. PostGIS: It is an extension to the PostgreSQL database to support spatial data. It adds support for geographic objects. Both postgres, and the postgis extension are free and open source.

2 Versioning: A version (trunk Version, alternative Version, or sub alternative Version) is analogous to a paper plane in which features can be inserted, deleted, and modified, and it does not affect in any way, any other Version. The concept of Version, is similar to the concept that has of a paper plane. The creation of a version is analogous to the process of making a photocopy of the main version. But, once the copy is created, the modifications in the original are not transferred to the copy and vice versa. The only way to transfer the changes between two different versions is through the "POST" function. The ability of versioning is very important, since it not only allows to create a timeline showing the evolution of spatial data, but also allows the existence of a set of alternatives, to represent tests, or possible projected changes in the spatial data. This plugin provides the ability of versioning as well as administration of users with security access, and projects. What is FastVersion? Is a plugin that integrates into Qgis, to handle vector data, creating an environment for security administration, versioning and project management. It is multi-user, and most of the functionality is stored in the Postgres database. The architecture is client-server, and the connection of Qgis is direct to the database server.

3 Installation of the PlugIn: The FastVersion PlugIn is in the experimental stage, but it will soon be ready as a stable plugin. To enable display, and install experimental plugins, you must check plugins - > Settings - > Show also experimental plugins. Then find the plugin by name, i.e. "FastVersion" and install it. Once installed the Plugin, the following icons will be visible in Qgis.

4

5 Installation of the FastVersion infrastructure in a Postgres database: When the user tries to login to a database that, does not contain a schema named "versioned", the system will offer to install the plugin in the database. For the installation of the plugin the user, needs to be superuser. Important: Postgres version must be 9.6 or higher. If "OK is pressed, the schema "versioned" will be created. Within this schema a set of tables and functions will be created, to be used further by the plugin. After FastVersion has installed the infrastructure in this database, the administrator needs to import database users in the system, to be able to associate them with versions, projects, etc. Apart from the administrator, new FastVersion users have to be created, on the database server with login permission only. And then import the into the system. Note: If any error appears in the installation process, the versioned schema could have been created, if that s the case, it must be deleted (drop cascade), in order to make a clean installation.

6 Login : Qgis has its own autenticación system (via Qgis master password which stored in a local database, sqlite, as encrypted, a set of keys. FastVersion, uses this, to store user security information. The system of authentication built into Qgis natively only requires a key. If the Qgis master password was already established before, you will need it, to create the connection. System administrator: Administrator functions: Convert a table to versioned. Import users from database. Version owner management. Permission to create versions. Permission to create projects. Read and Write permissions management for each version and user. Administration:

7 Users: The administrator can give users, permission to create versions and projects. The "Save" button must be pressed to save changes.

8 Import of Postgres users: Already existing in the postgres database roles should be incorporated within the FastVersion system to be used. The common sequence to add new users, involves the creation of the user in the postgres database, with login permission. Then this user is imported to FastVersion.

9 Version Owner: Each version is owned by only one user. Typically, the user that created the version. By default, the version owner of the version, has right to read and write on it The system administrator can change the owner of any version. Note: The user "postgres", is a superuser in the database, and so, this user should not own any version. The users(version owners) should be created in the Postgres database with only the "CanLogin" permission. The user "postgres" is usually the administrator of the system, and so it has access to all the database. The user "postgres", is a superuser in the database, and so, this user should not own any version.

10 User-Version Permissions: It allows you to manage permissions for each version with respect to each user. By default, the version owner of the version, has right to read and write on it.

11 Convert a table with geometry in a versioned table: Each table that wants to be versioned must be "versioned" schema of the database. When a table is versioned, a set of fields are added (to provide versioning capability). The table to be versioned must meet the following requirements: 1 Must have a field named 'id' bigint type and that is a primary key. 2 Must have a field with name "geom" of the geometry type. 3. The system reserves the following field names, which must not exist before versioning the table:"entity","version","alternative","subalternative","review","deleted"." Th ese fields will be created by plugin. Note: If a table is versioned with existing data, identification field must be named 'id' should be unique, not null, and primary key. Important: Once versioned, the id field is filled in automatically by the system. Warning: direct access to the versioned table could damage the system of versioning. Once a table is versioned, it must be handled only by the pluign, which creates a view for each version with the name and code of the version.

12 Safety test: Performs queries to the database, advising that there must be only one superuser in addition to the FastVersion role system administrator that is automatically created when you install the plugin. Additionally; there are some situations that must be carefully handled: For example: The system administrator could be tempted to make a connection with the QGis- PostgresSQL tool, with the superuser user and password. We recommend no to do so, because this connection will be saved and any other user with access to this machine will have access to any element of the database, and could manipulate sensible data, that should only be managed by the plugin for consistency reasons. Never use the Qgis integrated Postgres-Postgis tool to make a connection.

13 To import a shape file into Postgis, use PostGIS import/export Manager that is installed with the Postgis extension. This is to avoid leaving an open Postgis connection in a Qgis instance, that is a potential flaw to security.

14 Version Manager : Create Trunk Version or Alternative Version: Father: Trunk Version Has Trunk Version sons? No -> Option to create Trunk Version or Alternative Version Yes -> Option to create Alternative Version

15 Create Sub-alternative Version: Father: Alternative Version Option to create Sub-Alternative Version Open Version (Trunk Version, Alternative Version or Sub-alternative Version): Each time a version is opened, a view is created to access it, with its rules and restrictions, the table should not be accessed directly, but through the views created by the plugin, by means of version -> "open"). The views and therefore the name of the layer created for the version, are displayed. They have the following structure [version name] _ [version] _ [alternative] _ [subalternative] The set of layers is grouped into a group that identifies the version. Rename a Version (Trunk Version, Alternative Version or Sub alternative Version): Any version can be renamed. In the version tree it is the first part of the text that precedes the version code of the version.

16 Delete a Version: There are restrictions to remove a Version: It should not have child versions, or lower brothers. It should not have elements that refer to that version (even deleted elements). If Box is checked, when you click on "open" version, the system only retrieves the elements within the "window" or "box". This box limits are taken from the extension of the canvas of the visible map. This option is usually used when the table has millions of elements that produce a delay when you edit. Note: When a version is opened with the box option checked, any element inserted outside the box won t be visible, but in fact is stored in the version, to view all the elements of the version, the box option must be unchecked. The box option behaves as a geographic filter.

17

18 Projects: Qgis stores a set of styles to display the underlying Data. The style, or the set of styles are stored with the project in the postgres database associated with a version and the user who created the project. Projects are associated with a user and version. A project is: a selection of layers in a unique version with a set of defined styles, the data is defined by the version data. Create Select a name for the project, a description, and a date, also the set of tables to be represented as layers. Open, When a project is open, the tables of the project in this version is represented and the style is retrieved from database. If the project is opened twice an error message will be displayed.

19 Delete, It allows to delete the selected project Edit, It allows to edit the selected project, change date to add or subtract the project tables and change its description or name. Save All projects (parameters of the projects and the changes made to the style) are saved. Even the default style of the project is saved. If the project is not saved every change made in the styles of it will be lost.

20 Post Post: The Post function allows to move the work done from one version to another. This function defines two versions: The target version is the version that will be modified (insertion, deletion or modification). The source version is the version from which the information to affect the target version will be obtained. The source version is not affected in any way. 1) The first page indicates the entities existing in the origin, and nonexistent in the objective. 2) The second page indicates the entities that exist in the target, and none existent in the origin. 3) The third page indicates the entities that exist in the source and target, but that a

21 modification has been detected. To do this, it uses a "revision" marker(field), that indicates with a sequential number (beginning with zero) by entity, when it has been modified. That is to say that, when an entity has the same revision number there is no modification conflict. The selected rows are highlighted by using Qgis "zoom to selection" tool.(remember to first select the correct layer) There are three situations called conflicts, and the user can decide what action to take based in the information provided. This functionality is not a Merge process, or consolidation between two versions but a post action, where only the target version is affected.

22 Multiple rows can be selected(use Ctrl-click), and with the respective buttons turn True, or False the modification. It is also important to check Ready when all the decisions have been taken. To commit the post all three ready check boxes in the three pages must be checked. After the commit: To see the effects of the commit, it is necesary to zoom-in, zoom-out, or refresh, to load the changes from database.

23 Generation of the version code trunk version-alternative-subalternative : The system will generate a view for each version, every time the version is opened, the view is recreated Version-The base version is 0.0.0, in the trunk version the next will be 1.0.0, and so on. Alternative-The alternative field has a minimum value of 1, ie the first alternative of version will be Versions or 1.0.1, etc. are impossible. The 1st alternative is 1. The subalternative number for an alternative is always 1. Subalternative- The subalternative field has a minimum value of 2, ie the first subalternative of alternative will be The first sub-alternative is 2. That is, versions 0.1.1, 1.1.1, 2.1.1, are alternatives and not subalternatives. Versions or or 1.0.1, etc. are impossible.

24 General rule: For all notation v(trunk), a(alternative), s(sub alternative): If a = 0 is a trunk version. (?_0_? ) If s = 1 is an alternative Version.(?_?_1 ) If s> 1 is a subalternative Version.(?_?_2 )... (?_?_3 )... (?_?_73 ) The views and therefore the name of the layer created for the version display has the following structure [version name] _ [trunk version] _ [alternative] _ [subalternative] Database: The plugin was developed to work with a postgis server(postgres 9.6 or higher). The system creates one table (the Version table), but also creates a set of functions, views and rules in an schema named versioned to make everything work, they should only be manipulated by the versioning system. When the versioning system is created, version is automatically created.

25 Common errors with table in postgis: If the table is showed twice in QGis postgis source form, is because the srid is not set. This is an example to set the srid: ALTER TABLE schema.table ALTER COLUMN geom type Geometry(MULTILINESTRING, 4326) USING geom::geometry(multilinestring, 4326) Sometimes it is necessary to truncate the table and re insert elements

LearnOSM. PostgreSQL & PostGIS. Installing PostgreSQL and PostGIS. Reviewed

LearnOSM. PostgreSQL & PostGIS. Installing PostgreSQL and PostGIS. Reviewed PostgreSQL & PostGIS Reviewed 2016-09-10 LearnOSM In this chapter we will see how to set up PostgreSQL on Windows and how to create a database in which you can store geographic data. We ll be using the

More information

Poom Malakul Na Ayudhya

Poom Malakul Na Ayudhya DataClient 1.0.6 Manual By Poom Malakul Na Ayudhya pmalakul@gmail.com (Under Development) Page 1 Contents 1. Introduction 2. Installation 2.1. Knowledge Requirements 2.2. Software Requirements 2.3. DataClient

More information

6 Attribute actions to vector layer

6 Attribute actions to vector layer 6 Attribute actions to vector layer QGIS can perform an action based on the attributes of a feature. The actions, for example, running a program with arguments built from the attributes or passing parameters

More information

eha qgis-versioning Documentation Release documentation

eha qgis-versioning Documentation Release documentation eha qgis-versioning Documentation Release documentation February 24, 2016 Contents 1 Introduction 3 1.1 Summary................................................. 3 2 Requirements 5 2.1 Hard requirements............................................

More information

Engage - MS CRM Integration Installation and Setup Guide

Engage - MS CRM Integration Installation and Setup Guide Engage - MS CRM Integration Installation and Setup Guide Published: January 2014 Copyright 2014 Silverpop Systems Table of Contents 1 Introduction... 3 1.1 Engage MS CRM Integration Overview... 3 1.2 Engage

More information

SAFARI General Instructions

SAFARI General Instructions SAFARI General Instructions Open Excel. Click on the Data Tab. Click on From Other Sources. Select From Miscrosoft Query. Select the Database you would like to pull from: Insert your Reflections Password

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Model Builder User Guide Version 1.3 (24 April 2018) Prepared For: US Army Corps of Engineers 2018 Revision History Model

More information

qgis-versioning Documentation Release latest

qgis-versioning Documentation Release latest qgis-versioning Documentation Release latest February 18, 2016 Contents 1 Introductory text 3 2 Requirements 5 3 Plugin functionality 7 4 Selecting features before checkout 17 5 Project contributors 19

More information

Version 1.4 Paribus Discovery for Microsoft Dynamics CRM User Guide

Version 1.4 Paribus Discovery for Microsoft Dynamics CRM User Guide Version 1.4 Paribus Discovery for Microsoft Dynamics CRM User Guide Document Version 1.3 Release Date: September 2011 QGate Software Limited D2 Fareham Heights, Standard Way, Fareham Hampshire, PO16 8XT

More information

2 Creating Vector Layers. 2.1 Creation of tables of PostgreSQL with geometry column for PostGIS

2 Creating Vector Layers. 2.1 Creation of tables of PostgreSQL with geometry column for PostGIS 2 Creating Vector Layers 2.1 Creation of tables of PostgreSQL with geometry column for PostGIS 2.2 Adding columns to tables of PostgreSQL through PostGIS connection from QGIS Premise: PostgreSQL user name=

More information

EditGrid Excel Plus Links

EditGrid Excel Plus Links EditGrid Excel Plus Links...1 Installation...2 Using EditGrid Excel Plus (quick)...3 Warnings:...3 Quick use...3 1. In order to make a link between an Excel file on your PC and an online file on EditGrid...3

More information

5 Extract the information of location from the geometry column of PostgreSQL table

5 Extract the information of location from the geometry column of PostgreSQL table 5 Extract the information of location from the geometry column of PostgreSQL table Open QGIS and load PostGIS layer buildings and the raster layer Tai_wide_G (optional just to show the basemap). 1 Click

More information

Hands-on: Using ArcGIS and QGIS. GIS Mapping for Linguistic Research Jennifer Cramer University of Kentucky

Hands-on: Using ArcGIS and QGIS. GIS Mapping for Linguistic Research Jennifer Cramer University of Kentucky Hands-on: Using ArcGIS and QGIS GIS Mapping for Linguistic Research Jennifer Cramer University of Kentucky Hands on! I think last week went well! Like last week, I ll do a quick run through of the assignment,

More information

Install Free GIS Software on Your PC

Install Free GIS Software on Your PC Install Free GIS Software on Your PC 1. Cygwin & GRASS 6.2.3 2. FWTools1.3.4 3. AVCE00-2.0.0-WIN32 4. PostgreSQL-8.2.6 including PostGIS 5. Quantum GIS 0.9.1 6. ODBC setting 7. Expat 2.0.1 (Option) 8.

More information

Lesson 2 Installing and Using Quantum GIS (QGIS)

Lesson 2 Installing and Using Quantum GIS (QGIS) Lesson 2 Installing and Using Quantum GIS (QGIS) Use file Explorer to open County QGIS portable hard drive provided. The program execute (.exe) will be at the bottom of the list. Double click on the file.

More information

Key Terms. Attribute join Target table Join table Spatial join

Key Terms. Attribute join Target table Join table Spatial join Key Terms Attribute join Target table Join table Spatial join Lect 10A Building Geodatabase Create a new file geodatabase Map x,y data Convert shape files to geodatabase feature classes Spatial Data Formats

More information

Starting the QGIS Program. Exercise 1: Exploring QGIS

Starting the QGIS Program. Exercise 1: Exploring QGIS Exercise 1: Exploring QGIS In this exercise you will learn how to open maps, manipulate layers, add spatial data, change symbols, and navigate within QGIS. You will also learn to repair broken data links.

More information

Manual Trigger Sql Server Example Update Column Value

Manual Trigger Sql Server Example Update Column Value Manual Trigger Sql Server Example Update Column Value Is it possible to check a column value, then before insert or update change can you direct me to a simple tutorial for trigger, user3400838 Jun 30

More information

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 These documents are based on and developed from information published in the LTS Online Help Collection (www.uwec.edu/help) developed by the University of Wisconsin Eau Claire

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.0 NOTICE: Copyright Pitney Bowes 2017. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS 1 INTRODUCTION TO EASIK EASIK is a Java based development tool for database schemas based on EA sketches. EASIK allows graphical modeling of EA sketches and views. Sketches and their views can be converted

More information

Online Backup Manager v7 Office 365 Exchange Online Backup & Restore Guide for Windows

Online Backup Manager v7 Office 365 Exchange Online Backup & Restore Guide for Windows Online Backup Manager v7 Office 365 Exchange Online Backup & Restore Guide for Windows Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited.

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.3 NOTICE: Copyright Pitney Bowes 2019. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

Introduction to the Dimensionally Extended 9 Intersection Model (DE-9IM) in PostgreSQL/PostGIS Tutorial

Introduction to the Dimensionally Extended 9 Intersection Model (DE-9IM) in PostgreSQL/PostGIS Tutorial Introduction to the Dimensionally Extended 9 Intersection Model (DE-9IM) in PostgreSQL/PostGIS Tutorial Germán Carrillo gcarrillo@uni-muenster.de geotux_tuxman@linuxmail.org Objectives Following this tutorial

More information

USER GUIDE SOCIAL TENURE DOMAIN MODEL VERSION 1.0. S e c u r i n g l a n d a n d p r o p e r t y r i g h t s f o r a l l.

USER GUIDE SOCIAL TENURE DOMAIN MODEL VERSION 1.0. S e c u r i n g l a n d a n d p r o p e r t y r i g h t s f o r a l l. SOCIAL TENURE DOMAIN MODEL In the context of Participatory Enumeration and Settlement Upgrading USER GUIDE VERSION 1.0 UN-Habitat/GLTN 2014 S e c u r i n g l a n d a n d p r o p e r t y r i g h t s f o

More information

Administration. STILOG IST, all rights reserved

Administration. STILOG IST, all rights reserved 2 Table of Contents I. Admin Center... 1 1. ACCESS... 1 Starting the Admin Center application... 1 2. General Settings... 2 Home page... 3 Client... 4 Application... 5 VPPortal... 6 3. Password Configuration...

More information

Creating electrical designs

Creating electrical designs Creating electrical designs 27.09.2018-34 TABLE OF CONTENTS Table of contents... 2 Introduction... 4 What you learn with this content... 5 Starting G-Electrical... 6 Interface... 6 Drawing area (1)...

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

Administering Your Microsoft SQL Server Geodatabase

Administering Your Microsoft SQL Server Geodatabase Esri International User Conference San Diego, California Technical Workshops July 25, 2012 Administering Your Microsoft SQL Server Geodatabase Thomas Dunn and Shannon Shields Topics for this presentation

More information

LiteSpeed for SQL Server 6.1. Configure Log Shipping

LiteSpeed for SQL Server 6.1. Configure Log Shipping LiteSpeed for SQL Server 6.1 Configure Log Shipping 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Newaygo County Web Map

Newaygo County Web Map Newaygo County Web Map Address/Parcel/Parcel Owner Search Map Overview Zoom Back to default extent Use your current location if allowable Widget Panel At the top of the map is a search function used for

More information

B I Z I N S I G H T Release Notes. BizInsight 7.3 December 23, 2016

B I Z I N S I G H T Release Notes. BizInsight 7.3 December 23, 2016 B I Z I N S I G H T 7. 3 Release Notes BizInsight 7.3 December 23, 2016 Copyright Notice makes no representations or warranties with respect to the contents of this document and specifically disclaims

More information

FileLoader for SharePoint

FileLoader for SharePoint End User's Guide FileLoader for SharePoint v. 2.0 Last Updated 6 September 2012 3 Contents Preface 4 FileLoader Users... 4 Getting Started with FileLoader 5 Configuring Connections to SharePoint 7 Disconnecting

More information

Symbio Manual. Administrator Role

Symbio Manual. Administrator Role Symbio Manual Administrator Role Version date: November 18 2018 Ploetz + Zeller GmbH Symbio Manual - Administrator Role 2 Content 1 Introduction 9 1.1 About this document 9 1.2 Before you start 9 1.3 Support

More information

D2M2 - GIS USER'S MANUAL

D2M2 - GIS USER'S MANUAL D2M2 - GIS USER'S MANUAL USACE ERDC, July 2012 1 Content Overview of D2M2... 3 User Interface... 4 Menus... 4 File Menu... 4 Edit Menu... 5 View Menu... 5 Layer Menu... 6 Analysis Menu... 6 Tools Menu...

More information

Users and roles. Contents

Users and roles. Contents Users and roles Help bits Contents Overview... 3 Users... 4 Operation... 5 Users tab... 6 Creating a new user... 9 Role tab... 10 Editing a role... 11 Creating a new role... 11 Role deletion... 12 Privacy

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

PURPOSE PROCESS SETTINGS

PURPOSE PROCESS SETTINGS : Annual Data Setup PURPOSE The Annual Data Setup feature of Galileo allows Agency-level users to transfer assessment and form data from one program year to another. This means that forms do not have to

More information

Manual Trigger Sql Server Updating Column In Same Table

Manual Trigger Sql Server Updating Column In Same Table Manual Trigger Sql Server Updating Column In Same Table Print 'Trigger Fired, Updated name Entered Successfully Into tmp Table.' end. sql-server SQL Server trigger doesn't fire when a record is inserted

More information

Low Cost and Free Public Health Mapping Tools

Low Cost and Free Public Health Mapping Tools Low Cost and Free Public Health Mapping Tools Quantum GIS - QGIS 1) Download and Install a) QGIS can be quickly and easily installed on Windows, Macs and Linux from installers found here: http://hub.qgis.org/projects/quantum-gis/wiki/download

More information

FileLoader for SharePoint

FileLoader for SharePoint Administrator s Guide FileLoader for SharePoint v. 2.0 Last Updated 6 September 2012 Contents Preface 3 FileLoader Users... 3 Getting Started with FileLoader 4 Configuring Connections to SharePoint 8

More information

STARCOUNTER. Technical Overview

STARCOUNTER. Technical Overview STARCOUNTER Technical Overview Summary 3 Introduction 4 Scope 5 Audience 5 Prerequisite Knowledge 5 Virtual Machine Database Management System 6 Weaver 7 Shared Memory 8 Atomicity 8 Consistency 9 Isolation

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

One Identity Manager Administration Guide for Connecting to SharePoint

One Identity Manager Administration Guide for Connecting to SharePoint One Identity Manager 8.0.2 Administration Guide for Connecting to Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Manually Defining Constraints in Enterprise Data Manager

Manually Defining Constraints in Enterprise Data Manager Manually Defining Constraints in Enterprise Data Manager 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

emerchant API guide MSSQL quick start guide

emerchant API guide MSSQL quick start guide C CU us st toomme er r SUu Pp Pp Oo Rr tt www.fasthosts.co.uk emerchant API guide MSSQL quick start guide This guide will help you: Add a MS SQL database to your account. Find your database. Add additional

More information

Sparqube Lookup Column

Sparqube Lookup Column Sparqube Lookup Column Contents Overview... 2 Features... 3 Setup... 4 Requirements... 4 Installation... 4 Licensing... 4 Configuration... 9 Lookup column types... 9 Adding Sparqube Lookup Classic to SharePoint

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 10.3 Last Updated: August 2012 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

2 Working with an Enterprise GeoDatabase

2 Working with an Enterprise GeoDatabase 2 Working with an Enterprise GeoDatabase DISCLAIMER STATEMENT 2015 - World Food Programme Information presented in this training document may be considered public information and may be reproduced, distributed

More information

Building Vector Layers

Building Vector Layers Building Vector Layers in QGIS Introduction: Spatially referenced data can be separated into two categories, raster and vector data. This week, we focus on the building of vector features. Vector shapefiles

More information

Today Learning outcomes LO2

Today Learning outcomes LO2 2015 2016 Phil Smith Today Learning outcomes LO2 On successful completion of this unit you will: 1. Be able to design and implement relational database systems. 2. Requirements. 3. User Interface. I am

More information

LHCb Conditions Database Graphical User Interface

LHCb Conditions Database Graphical User Interface LHCb Conditions Database Graphical User Interface Introduction v0r3 This document is a description of the current features of the coolui program which allows to browse and edit a conditions database. It

More information

ArcGIS for Server Michele Lundeen

ArcGIS for Server Michele Lundeen ArcGIS for Server 10.1 Michele Lundeen Summary Vision Installation and Configuration Architecture Publishing Functional Enhancements Cloud Migration and Best Practices Powerful GIS capabilities Delivered

More information

Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2

Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2 Using Spatial Data in a Desktop GIS; QGIS 2.8 Practical 2 Practical 2 Learning objectives: To work with a vector base map within a GIS and overlay point data. To practise using Ordnance Survey mapping

More information

COMOS. Lifecycle 3D Integration Operation. COMOS PDMS Integration 1. Material management 2. COMOS 3D viewing 3. References 4.

COMOS. Lifecycle 3D Integration Operation. COMOS PDMS Integration 1. Material management 2. COMOS 3D viewing 3. References 4. 1 Material management 2 COMOS Lifecycle COMOS 3D viewing 3 References 4 Operating Manual 03/2017 V 10.2.1 A5E37098336-AB Legal information Warning notice system This manual contains notices you have to

More information

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri Introduction to Geodatabase and Spatial Management in ArcGIS Craig Gillgrass Esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? - What can I do with it? Query Layers

More information

'phred dist acd.tar.z'

'phred dist acd.tar.z' Phred is free for academic use but does require registration and for you to obtain a licence. Please visit http://www.phrap.org/consed/consed.html#howtoget and follow the instructions. A copy of the Phred

More information

Business Insight Authoring

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

More information

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface One Identity Manager 8.0 Administration Guide for Connecting to a Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Enterprise Reporting -- APEX

Enterprise Reporting -- APEX Quick Reference Enterprise Reporting -- APEX This Quick Reference Guide documents Oracle Application Express (APEX) as it relates to Enterprise Reporting (ER). This is not an exhaustive APEX documentation

More information

The Event Visualization Tool (evis) User's Guide. For use with QGIS version 1.2.0

The Event Visualization Tool (evis) User's Guide. For use with QGIS version 1.2.0 For use with QGIS version 1.2.0 1 Table of Contents 1. 2. 3. 4. 5. 6. 7. 8. About evis... 3 Conventions used in this guide... 3 Installing the evis plugin... 3 Event Browser... 4 4.1. Launch the Event

More information

Introduction to Quantum GIS

Introduction to Quantum GIS Connecting To PostgreSQL / PostGIS Dr. Arthur J Lembo Jr., Eric Flint, John O'Brien, Alex Nohe 3/19/2013 Quantum GIS is a fully functional and modern Open Source desktop GIS package. This introduction

More information

October Where is it now? Working Papers and CaseView. For the Engagement team

October Where is it now? Working Papers and CaseView. For the Engagement team October 2015 Where is it now? Working Papers and CaseView For the Engagement team CaseWare Technical Support For customers with a support contract, if you have any queries, please contact our technical

More information

Compare and Merge Track Changes

Compare and Merge Track Changes Compare and Merge Track Changes Course Description The document you have been working on for a couple of weeks is finally finished. Before sending the document to its final destination to be published,

More information

Enterprise Architect. User Guide Series. File Based Projects

Enterprise Architect. User Guide Series. File Based Projects Enterprise Architect User Guide Series File Based Projects In Sparx Systems Enterprise Architect, quickly create a new file-based repository as a.eap file (Access database) or.feap file (Firebird repository),

More information

Getting Started with the Web Client

Getting Started with the Web Client Getting Started with the Web Client Getting Started with the Web Client The OmniVista Web Client for OmniVista 3.3 provides users access to basic versions of the OmniVista Locator, Notifications, and Topology

More information

Using PostGIS and QGIS for the Management and Geovisualization of American Community Survey Data

Using PostGIS and QGIS for the Management and Geovisualization of American Community Survey Data Using PostGIS and QGIS for the Management and Geovisualization of American Community Survey Data Lee Hachadoorian Visiting Assistant Professor Dartmouth College Lee.Hachadoorian@gmail.com http://github.com/leehach/census-postgres

More information

System Administration. User Guide

System Administration. User Guide System Administration User Guide Westpac Banking Corporation 2008 This document is copyright protected. Apart from any fair dealing for the purpose of private study, research criticism or review as permitted

More information

Introduction to QGIS: Instructor s Notes

Introduction to QGIS: Instructor s Notes 2016 Introduction to QGIS: Instructor s Notes Created by: MARK DE BLOIS, CEO / FOUNDER, UPANDE LIMITED WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR INTERNATIONAL DEVELOPMENT (DFID) Module

More information

Enterprise Architect. User Guide Series. File Based Projects. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. File Based Projects. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series File Based Projects Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents File Based Projects 3 Copy a Base Project 6 Sharing File Based

More information

MICROSOFT OneNote 2013

MICROSOFT OneNote 2013 Q U I C K R E F E R E N C E G U I D E MICROSOFT OneNote 2013 Microsoft OneNote 2013 is the perfect place to gather and organize your ideas, thoughts, lists, plans, timelines, and references into one file.

More information

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

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

More information

Logicmaker User s Guide alpha

Logicmaker User s Guide alpha Logicmaker User s Guide alpha Copyright 2016 Vizrt. All rights reserved. No part of this software, documentation or publication may be reproduced, transcribed, stored in a retrieval system, translated

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 0.1 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics... 3 3. Loading the data into RDMS Databases... 3 Oracle...

More information

Staking Sheet Software Release Version September 2006

Staking Sheet Software Release Version September 2006 MapView Software Corrected spatial queries to allow for queried entities to contain GUID field types in their data table. (CR 411300) Corrected attachments to display only with the entity to which the

More information

Jira Connector Option - v18

Jira Connector Option - v18 Jira Connector Option - v18 Copyright 2019 ONEPOINT Projects GmbH. All rights reserved. ONEPOINT Projects, Enterprise Edition, Version 18 ONEPOINT Informationslosungen and the ONEPOINT Logo are registered

More information

Contents Overview... 5 Configuring Project Management Bridge after Installation... 9 The Project Management Bridge Menu... 14

Contents Overview... 5 Configuring Project Management Bridge after Installation... 9 The Project Management Bridge Menu... 14 Portfolio Management Bridge for Primavera P6 User's Guide June 2015 Contents Overview... 5 Basic Principles and Concepts... 5 Managing Workflow... 7 Top-Down Management... 7 Project-Based Management...

More information

One Identity Manager Target System Synchronization Reference Guide

One Identity Manager Target System Synchronization Reference Guide One Identity Manager 8.0.1 Target System Synchronization Reference Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Restoring data from a backup

Restoring data from a backup Restoring data from a backup The following topics explain how to find a backup to restore and then perform a restore: Finding a backup to restore on page 98 Restoring to the original location on page 101

More information

MicroStation. FDO Reader USER S MANUAL. [Företagets adress]

MicroStation. FDO Reader USER S MANUAL. [Företagets adress] MicroStation FDO Reader USER S MANUAL [Företagets adress] MicroStation FDO Reader - User s Manual, 2018-10-27 copyright, 2018 ringduvevägen 13, 132 47 saltsjö-boo e-mail: consulting@surell.se, web: www.surell.se

More information

TWO-FACTOR AUTHENTICATION Version 1.1.0

TWO-FACTOR AUTHENTICATION Version 1.1.0 TWO-FACTOR AUTHENTICATION Version 1.1.0 User Guide for Magento 1.9 Table of Contents 1..................... The MIT License 2.................... About JetRails 2FA 4................. Installing JetRails

More information

Yale Software Library

Yale Software Library Yale Software Library http://www.yale.edu/its/software/ For assistance contact the ITS Help Desk 203-432-9000, helpdesk@yale.edu Creating Virtual Disks - PGP Desktop (Macintosh) Virtual Disks are encrypted

More information

Creating databases using SQL Server Management Studio Express

Creating databases using SQL Server Management Studio Express Creating databases using SQL Server Management Studio Express With the release of SQL Server 2005 Express Edition, TI students and professionals began to have an efficient, professional and cheap solution

More information

Tasktop Sync - Cheat Sheet

Tasktop Sync - Cheat Sheet Tasktop Sync - Cheat Sheet 1 Table of Contents Tasktop Sync Server Application Maintenance... 4 Basic Installation... 4 Upgrading Sync... 4 Upgrading an Endpoint... 5 Moving a Workspace... 5 Same Machine...

More information

Structural Engineering Library

Structural Engineering Library Structural Engineering Library Version 6 ENERCALC, INC Structural Engineering Library Version 6.0 by Michael D. Brooks, S.E., P.E. A product of ENERCALC, INC. CLOUD VERSION : Structural Engineering Library

More information

SQL Server Course Administering a SQL 2016 Database Infrastructure. Length. Prerequisites. Audience. Course Outline.

SQL Server Course Administering a SQL 2016 Database Infrastructure. Length. Prerequisites. Audience. Course Outline. SQL Server Course - 20764 Administering a SQL 2016 Database Infrastructure Length 5 days Prerequisites Basic knowledge of the Microsoft Windows operating system and its core functionality. Working knowledge

More information

3.2 Circle Charts Line Charts Gantt Chart Inserting Gantt charts Adjusting the date section...

3.2 Circle Charts Line Charts Gantt Chart Inserting Gantt charts Adjusting the date section... / / / Page 0 Contents Installation, updates & troubleshooting... 1 1.1 System requirements... 2 1.2 Initial installation... 2 1.3 Installation of an update... 2 1.4 Troubleshooting... 2 empower charts...

More information

ER/Studio Enterprise Portal User Guide

ER/Studio Enterprise Portal User Guide ER/Studio Enterprise Portal 1.1.1 User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

Introduction to QGIS: Student Workbook

Introduction to QGIS: Student Workbook 2016 Introduction to QGIS: Student Workbook Created by: MARK DE BLOIS, CEO / FOUNDER, UPANDE LIMITED WITH SUPPORT FROM THE WORLD BANK AND THE UK DEPARTMENT FOR INTERNATIONAL DEVELOPMENT (DFID) Module 3:

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

Nintex Reporting 2008 Help

Nintex Reporting 2008 Help Nintex Reporting 2008 Help Last updated: Thursday, 24 December 2009 1 Using Nintex Reporting 2008 1.1 Chart Viewer Web Part 1.2 Importing and Exporting Reports 1.3 Import Nintex report page 1.4 Item Level

More information

Chapter 1 : Getting Started with Integrity... Chapter 2 : Interface Layout... Chapter 3 : Navigation... Chapter 4 : Printing...

Chapter 1 : Getting Started with Integrity... Chapter 2 : Interface Layout... Chapter 3 : Navigation... Chapter 4 : Printing... .0 User s Manual Table of Contents Chapter : Getting Started with Integrity... Chapter : Interface Layout... Chapter : Navigation... Chapter : Printing... Chapter : Quick Search and Results Pane... Results

More information

Symbio Manual. Administrator Role

Symbio Manual. Administrator Role Symbio Manual Administrator Role Version date: November 18 2018 Ploetz + Zeller GmbH Symbio Manual - Administrator Role 2 Content 1 Introduction 9 1.1 About this document 9 1.2 Before you start 9 1.3 Support

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Browse/Generate User Guide Version 1.3 (23 April 2018) Prepared For: US Army Corps of Engineers 2018 1 Browse/Generate User

More information

StoragePoint RestorePoint for StoragePoint

StoragePoint RestorePoint for StoragePoint StoragePoint RestorePoint for StoragePoint July 27, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright 2018 Copyright International GmbH All rights reserved. No part or section of the contents

More information

"'' zoo 250. MYINSIGHT Dosh boards & Reports. Release Notes

'' zoo 250. MYINSIGHT Dosh boards & Reports. Release Notes 300 250. "'' zoo 150 10 974 575 645 941 802 715 557 MYINSIGHT Dosh boards & Reports Release Notes 1Chapter 1 VERSION HISTORY Date Changes Version number 7-12-2015 Transformation to DITA. Update for myinsight

More information

Version 1.5 Paribus Discovery for Saleslogix User Guide

Version 1.5 Paribus Discovery for Saleslogix User Guide Version 1.5 Paribus Discovery for Saleslogix User Guide Document Version 1.3 Release Date: July 2014 QGate Software Limited D2 Fareham Heights, Standard Way, Fareham Hampshire, PO16 8XT United Kingdom

More information

Imagine. Create. Discover. User Manual. TopLine Results Corporation

Imagine. Create. Discover. User Manual. TopLine Results Corporation Imagine. Create. Discover. User Manual TopLine Results Corporation 2008-2009 Created: Tuesday, March 17, 2009 Table of Contents 1 Welcome 1 Features 2 2 Installation 4 System Requirements 5 Obtaining Installation

More information

Table of Contents EXCEL ADD-IN CHANGE LOG VERSION (OCT )... 3 New Features... 3

Table of Contents EXCEL ADD-IN CHANGE LOG VERSION (OCT )... 3 New Features... 3 Table of Contents EXCEL ADD-IN CHANGE LOG... 3 VERSION 3.6.0.4 (OCT 10 2013)... 3... 3 Multiple account support... 3 Defining queries for multiple accounts... 4 Single sign on support... 4 Setting up SSO

More information

NEW SKILLS Begin to learn how to add data in QGIS. Exploration of some of the vector and raster analysis capabilities of QGIS

NEW SKILLS Begin to learn how to add data in QGIS. Exploration of some of the vector and raster analysis capabilities of QGIS Lab 3 VECTOR AND RASTER MODELING Last modified 7 May 2014 NEW SKILLS Begin to learn how to add data in QGIS. Exploration of some of the vector and raster analysis capabilities of QGIS 1. In this exercise

More information