emerchant API guide MSSQL quick start guide

Size: px
Start display at page:

Download "emerchant API guide MSSQL quick start guide"

Transcription

1 C CU us st toomme er r SUu Pp Pp Oo Rr tt 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 users. Set your user permissions Upload your database Back up your database You ll also find links to further information that will help you make the most of your database. If you have printed this guide you may find it useful to make a note of your database details here. Database server IP address: Database name: Database username: Version 1

2 Introduction SQL databases provide many benefits to the web designer, allowing you to dynamically update your web pages, collect and maintain customer data and allowing customers to contribute to your website with content of their own. In addition many software applications, such as blogs, forums and content management systems require a database to store their information. SQL stands for Structured Query Language, which is a standard interactive programming language used for many popular databases. We offer two types of database: MySQL and Microsoft SQL Server. Most popular web applications require one of these database types. You can find out which database type you need on your chosen application's website. MS SQL is a database designed by Microsoft to be compatible with standard SQL commands. Before you start Microsoft have developed SQL Server Management Studio Express 2008 to help you manage your database easily and quickly. Some of the tasks described within this guide require the installation of this software on your local machine. Through the Graphical User Interface (GUI) you are able to create tables, schema, objects and users. You can also set permissions and run scripts directly on your database. SQL Server Express 2008 is available as a free download at: Page 1 of 23

3 Important: Previous Microsoft database software, such as SQL Server Management Studio Express 2005, Enterprise Manager and Query Analyzer, will not work with MS SQL 2008 databases. However SQL Server Management Studio 2008 has all the features of these early tools, with extra functionality to make administering your database easier than ever before. Fasthosts database management screen From the database management screen you are able to create and edit your databases. Step 1 Log into your Fasthosts control panel and click on the & Web Hosting tab. Step 2 Click on your domain name in your domains list. Step 3 Click on the Databases icon. You will see a list of all MSSQL and MySQL databases associated with the hosting package. Add an MS SQL database to your account When you add a database to your account, it is created on one of our dedicated database servers but you can easily access it from your web space. Step 1 Follow the steps above to navigate to Fasthosts database management screen Page 2 of 23

4 Step 2 Click Add a new database. Step 3 Choose MSSQL Server as the database type, and enter a name for the new database. This name must be unique on our system, so you may be asked to try again if another customer has already chosen that name. Quick tip: The username must be unique, so try using your domain name in the user name. For example, if your domain is myonlineshop.com, then you could call your database myonlineshopdb and the user could be myonlineshopdbuser. Note: Database names are case sensitive. Click Add Database when you ve entered a name for your database. Step 4 Confirm your order, if necessary, by clicking the Order Now button. The database will be added to your package, and you will see an on-screen confirmation message. Find your database Your MS SQL database is hosted on a specialised server optimised for MS SQL databases. To connect to your database you must use the database server s IP address. Page 3 of 23

5 Important: You cannot connect to your database using localhost. Once you have created a database the Database name and IP address are shown on the Database management screen. Follow the steps shown in the section entitled Fasthosts database management screen to view your database details. Add users to your database Once you have added your new database, you need to create at least one user to connect to it. If you'd like to give other people, or software, access to your database, but want to restrict what they can do, create a new database user with different permissions. Step 1 Follow the steps shown in the section entitled Fasthosts database management screen Step 2 In the list of databases, click the database name. Step 3 Click the Add User button. Page 4 of 23

6 Step 4 Choose a username for this user and enter it into the Username text box. Select the Give this user DBO access box if you want this user to be a Database Owner. Database Owners have full permission to add, modify, and remove tables and data within the database. If you do not tick this box you can modify the user s permissions later. You also need to choose a password, and confirm it in the boxes provided. Note: The username must be unique on our system. Click Add Database User to create the new user. You will receive on-screen confirmation that the user has been created. Setting your user permissions It is good practice to create additional users with limited permissions to connect to your database for day to day use. In the following example we have already created a new user, which our website will use to connect to our database with. For this reason, we will limit the access this user will have to our database. Step 1 Open SQL Server Management Studio Express. Step 2 Enter your database IP address in the text box marked Server name. Page 5 of 23

7 Step 3 Select Use SQL Server authentication from the list, enter your database owner (DBO) username and password in the text boxes provided, then click Connect. Step 4 In the left hand Object explorer window, open your database, then double click on the user you want to set permissions on. Important: You should not change the permissions of the DBO user. Step 5 A new window will open. To change the role of the user across the entire database select Page 6 of 23

8 the box appropriate to the new role of your user. In this example we will give our website user the db_datareader role. So they can read all the data in the database, but are unable to make changes. There are 9 different roles available, these being: db_owner: Can perform any activity in the database. db_accessadmin: Can add or remove users or SQL Server users in the database. db_datareader: Can see any data from all user tables in the database. db_datawriter: Can add, delete, or change data in all user tables. db_ddladmin: Can make any data definition language commands in the database. db_securityadmin: Can manage statement and object permissions in the database. db_backupoperator: Can back up the database. db_denydatareader: Can deny permission to select data in the database. db_denydatawriter: Can deny permission to change data in the database. Page 7 of 23

9 Quick tip: Permissions errors are often caused by assigning users more than 1 database role. It is good practice to restrict each user to a single role. Now we may want to enable this user to make changes to a particular table within the database. Step 6 To set custom permissions to specific areas of your database, click Securables in the top left corner of the screen. Step 7 Click the Search button to find the objects within your database to set permissions for. In this example we will set the permissions on two tables within the database. Step 8 Select Specific objects then click OK. Step 9 Click Object Types, select the objects that you want to edit and click OK. Step 10 Enter the object names in the text box provided, or click Browse to choose your objects from a list. When you have selected all the tables and objects you want to modify the users permissions for, click OK. Page 8 of 23

10 Step 11 You should now be back on the Securables window, so select the object you want to modify to highlight it, and use the check boxes in the lower pane (on the Explicit tab) to set the permissions for your user Quick tip: You can set specific permissions for columns within a table by clicking the Column Permissions button. Connect to your database Step 1 Open SQL Server Management Studio Express. Step 2 Enter your database IP address in the text box marked Server name. Step 3 Select Use SQL Server authentication from the list, enter your database username and password in the text boxes provided, then click Connect. Page 9 of 23

11 Step 4 Your database can be found in the list titled Object Explorer. Note: Because your database is hosted on a dedicated database server, you will see the names of other user s databases in the list. You will not be able to view or modify any database other than your own, and other users won t have any access to your database and the data held within it. Page 10 of 23

12 Move an existing Database to Fasthosts If you already have an existing database, either with another hosting company, or on a development server on your own network, you can move your existing database to Fasthosts directly using Microsoft SQL Server Management Studio Express The software will allow you to import data directly from another SQL database, a Microsoft Access database, a Microsoft Excel spreadsheet, or a flat text file.. This example will show you how to transfer the data from another Microsoft SQL database. Step 1 Open SQL Server Management Studio Express. Step 2 Connect to your database using the database owner username and password (see the section Connect to your database earlier in this guide for assistance). Step 3 Right-click on your database and select Tasks > Import Data from the popup menu. Step 4 The Import and Export Wizard will open, click Next. Page 11 of 23

13 Step 5 Select SQL Server Native Client 10.0 from the list, and enter the database server and connection details required to connect to the source database. Once you have entered these, select the source Database from the list, then click Next. Step 6 Enter the details of your MSSQL database, as follows: Data source: Select SQL Server Native Client 10.0 from the drop down menu. Server name: Enter the IP address of your MSSQL database. This information is shown within your Fasthosts control panel. Authentication: Select Use SQL Server Authentication and enter your database username and password. This is the same username and password you chose when you created your database. Database: Select your database from the drop down menu. When you've entered the information, click Next. Page 12 of 23

14 Step 7 Select the option Copy data from one or more tables or views and click Next. Step 8 Select the tables you wish to import, and then click Next. Step 9 Click Next, then Finish to import your data. You will receive confirmation that your data has been imported to your database. Back up your Microsoft SQL database Page 13 of 23

15 It is highly recommend that you make regular backups of your database, and this process is easier than ever using SQL Server Management Studio Express Back up your database content Step 1 Open SQL Server Management Studio Express. Step 2 Connect to your database using the database owner username and password (see the section Connect to your database earlier in this guide for assistance). Step 3 Right-click on your database and select Tasks, then Export Data from the popup menus. Important: You will not be able to use the Back up option from this menu. Step 4 The Import/Export wizard will open, click Next. Page 14 of 23

16 Step 5 In the form provided, enter the following details: Data source: Select SQL Server Native Client 10.0 from the drop down menu. Server Name: Enter the IP address of your database server. This is shown within your Fasthosts control panel. Authentication: Select Use SQL Server Authentication, then enter your database username and password. This is the username and password you chose when you created your database. Database: Enter the name of your database from the drop down menu. Click Next once you have entered all the required information. Step 6 You will be asked where to export the database contents to. Select Flat File Destination from the drop down menu and choose a filename and location for your backup. In the example below we have also changed the Locale to English (United Kingdom) and selected the option marked Column names in the first data row. Page 15 of 23

17 Click Next when you are done. Quick tip: This example shows you how to back up your content to a.txt file. If you would like to back up your data to a separate database, select SQL Server Native Client 10.0 from the drop down menu and enter your database details in the text boxes provided. Step 7 Select Copy data from one or more tables or views and click Next. Step 8 Finally, choose which tables or views you want to export and select how you would like the file to be formatted. Once done click Next. Page 16 of 23

18 Step 9 Click Next, then Finish to export your file. You will receive confirmation that your database content has been backed up. Backing up stored procedures and functions Step 1 Open SQL Server Management Studio Express. Step 2 Connect to your database using the database owner username and password (see the section Connect to your database earlier in this guide for assistance). Step 3 Navigate to your stored procedures in the Object Explorer, and then highlight any stored procedures that you want to back up. Quick tip: The information below shows you how to back up stored procedures, but the principle is exactly the same if you want to back up any functions. Step 4 Right-click on Stored Procedures and select Script Stored Procedure as > CREATE To > File from the expanded menu. Page 17 of 23

19 Step 5 Choose a location to save your stored procedure and a file name for this backup. Then click Save. The selected stored procedures will now be saved on your computer. Importing Microsoft SQL database content Step 1 Open SQL Server Management Studio Express. Step 2 Connect to your database using the database owner username and password (see the section Connect to your database earlier in this guide for assistance). Step 3 Right-click on your database and select Tasks > Import Data from the popup menu. Page 18 of 23

20 Step 4 The Import and Export Wizard will open, click Next. Step 5 Choose a data source for the data you wish to import from the Data source list. Page 19 of 23

21 Quick tip: In this example we are importing data from a.txt file on our computer, however if you would like to import content from a separate database, select SQL Server Native Client 10.0 from the drop down menu and enter the connection details for this database in the text boxes provided and skip to step 7. Step 6 Define the formatting of your data source, then click Next. Page 20 of 23

22 Step 7 Enter the details of your MSSQL database, as follows: Destination: Select SQL Server Native Client 10.0 from the drop down menu. Server name: Enter the IP address of your MSSQL database. This information is shown within your Fasthosts control panel. Authentication: Select Use SQL Server Authentication and enter your database username and password. This is the same username and password you chose when you created your database. Database: Select your database from the drop down menu. Page 21 of 23

23 Click Next when you have entered all the required information. Step 8 Select the tables you wish to import, then click Next. Step 9 Click Next, then Finish to import your data. The import process may take a few minutes, and you will receive a confirmation that the data has been successfully imported. Page 22 of 23

24 Further reading Download Microsoft SQL Server Management Studio Express Microsoft SQL Server 2008 Express information Page 23 of 23

Gold. Blog. Prize. Bronze

Gold.   Blog. Prize. Bronze September 10, 2011 Gold Blog Prize Bronze Working with SQL Server since MSSQL 7. Experience with different industries. No cool letters after my name. ;_; Blog Twitter - @Mike_Fal Primary goal Protecting

More information

Perform a Server Move for Junxure

Perform a Server Move for Junxure Perform a Server Move for Junxure These instructions are the recommendations for IT personnel on how to perform a Server Move for the Junxure Database. Junxure Tech Support understands every environment

More information

Microsoft SQL Installation and Setup

Microsoft SQL Installation and Setup This chapter provides information about installing and setting up Microsoft SQL. Encrypted Database Not Supported, page 1 Install and Setup Microsoft SQL Server, page 1 Database Migration Required for

More information

Activant Prophet 21 SQL Server Management

Activant Prophet 21 SQL Server Management SQL Server Administration suite Class 3 of 4 Activant Prophet 21 SQL Server Management This class is designed for Beginner SQL/Prophet 21 Users who are responsible for SQL Administration as it relates

More information

2. Setup. Introduction. 2.1 How Do I Get a Copy of QC-CA.C. 2.2 SQ. Server. Enterprise Data Loader Page 2

2. Setup. Introduction. 2.1 How Do I Get a Copy of QC-CA.C. 2.2 SQ. Server. Enterprise Data Loader Page 2 2. Setup EDL is distributed via the Internet and must be installed in your Windows PC or server using the standard SETUP.EXE program. Perform the following steps: 1. Install EDL on the computer that will

More information

Sql 2008 Copy Table Structure And Database To

Sql 2008 Copy Table Structure And Database To Sql 2008 Copy Table Structure And Database To Another Table Different you can create a table with same schema in another database first and copy the data like Browse other questions tagged sql-server sql-server-2008r2-express.

More information

The INSERT INTO Method

The INSERT INTO Method Article: Transferring Data from One Table to Another Date: 20/03/2012 Posted by: HeelpBook Staff Source: Link Permalink: Link SQL SERVER TRANSFERRING DATA FROM ONE TABLE TO ANOTHER Every DBA needs to transfer

More information

CREATING CUSTOMER MAILING LABELS

CREATING CUSTOMER MAILING LABELS CREATING CUSTOMER MAILING LABELS agrē has a built-in exports to make it easy to create a data file of customer address information, but how do you turn a list of names and addresses into mailing labels?

More information

Developing SQL Databases

Developing SQL Databases Developing SQL Databases Getting Started Overview Database development is more than just creating a table with rows and columns. This course introduces features and technologies for developing a database.

More information

Installation Instructions MSSQL

Installation Instructions MSSQL 2015 Installation Instructions MSSQL Ross Drew LA Design Systems 1/1/2015 Table of Contents Summary... 3 Install MS SQL Server... 3 Use Existing MS SQL Server... 3 Restore the LADS Sample Database... 3

More information

Reliable High-Speed Connection to Publication Database for Synchronization

Reliable High-Speed Connection to Publication Database for Synchronization PCS Axis v1.9 Client/Server New Installation with Replication May 2015 Introduction American Innovations (AI) is pleased to announce version 1.9 of our Pipeline Compliance System Axis software (PCS Axis

More information

MAGIC THipPro - SQL Server Installation - using the example of

MAGIC THipPro - SQL Server Installation - using the example of MAGIC THipPro - SQL Server Installation - using the example of Express Wolfgang Peters 1 Installation of the SQL Server Configuration of the SQL Server Create SQL User Create empty database Install SQL

More information

Basic database tasks using SQL 2005 and Controller 8.x

Basic database tasks using SQL 2005 and Controller 8.x Basic database tasks using SQL 2005 and Controller 8.x Overview This document will demonstrate how to perform standard Controller 8 tasks that involve SQL 2005 database. NOTES: To use Controller 8 with

More information

Installation and Getting Started

Installation and Getting Started SECTION 1 AL Installation and Getting Started RI LESSON 1: Moving Data with the Import and Export Wizard TE LESSON 2: Installing SQL Server Integration Services MA LESSON 3: Installing the Sample Databases

More information

Copyright Tools4ever B.V. All rights reserved.

Copyright Tools4ever B.V. All rights reserved. Copyright Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means without the written permission of Tools4ever. DISCLAIMER

More information

LiNC-NXG for Windows 8 Professional, Windows 7 Professional, Vista Business Edition and XP Professional

LiNC-NXG for Windows 8 Professional, Windows 7 Professional, Vista Business Edition and XP Professional LiNC-NXG for Windows 8 Professional, Windows 7 Professional, Vista Business Edition and XP Professional Installation Guide for LiNC-NXG 33-10067-001 REV: C PCSC 3541 Challenger Street Torrance, CA 90503

More information

Installation of Actiheart Data Analysis Suite:

Installation of Actiheart Data Analysis Suite: Installation of Actiheart Data Analysis Suite: Currently software is only compatible with XP platform and version 6 of Java. Installation requires: - Windows XP platform - MySQL installation - Folders:

More information

Quest Knowledge Portal Installation Guide

Quest Knowledge Portal Installation Guide Quest Knowledge Portal 2.11 Installation Guide 2018 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is

More information

Setup and Reconfiguration Guide

Setup and Reconfiguration Guide EPIC Setup and Reconfiguration Guide VM-0001-07 Copyright Data Interchange Plc Peterborough, England, 2012. All rights reserved. No part of this document may be disclosed to third parties or reproduced,

More information

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support SQL Server Deployment Installation Manual Call a Hygiena representative for more information or support 1.805.388.8007 Why SQL Server? Performance Quicker performance with reporting due to querying Security

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

Database Creation & Setup for SQL Server

Database Creation & Setup for SQL Server Database Creation & Setup for SQL Server INSTALLATION MANUAL D000480 rev 4.0 TRADEMARK NOTICE Bentley and the "B" Bentley logo are registered or non-registered trademarks of Bentley Systems, Inc. or Bentley

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

DOCUMENT REVISION HISTORY

DOCUMENT REVISION HISTORY DOCUMENT REVISION HISTORY Rev. No. Changes Date 000 New Document 10 Jan. 2011 001 Document Revision: 06 Jun. 2011 - Addition of section on MYSQL backup and restore. 002 Document Revision: 22 Jul. 2011

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

WebsitePanel User Guide

WebsitePanel User Guide WebsitePanel User Guide User role in WebsitePanel is the last security level in roles hierarchy. Users are created by reseller and they are consumers of hosting services. Users are able to create and manage

More information

Millennium Expert/Enterprise Installation Guide Version Table of Contents

Millennium Expert/Enterprise Installation Guide Version Table of Contents Millennium Expert/Enterprise Installation Guide Version 5.0.3599 Table of Contents Section Page Installing Microsoft SQL Server 2 Installing Millennium Server software 9 Installing Millennium Databases

More information

Querying with Transact-SQL

Querying with Transact-SQL Querying with Transact-SQL Getting Started with Azure SQL Database / SQL Server Overview Transact-SQL is an essential skill for database professionals, developers, and data analysts working with Microsoft

More information

Using Attix5 Pro with EFS

Using Attix5 Pro with EFS Using Attix5 Pro with EFS Windows has a built-in Encrypting File System (EFS), which is a component of NTFS. It allows users to encrypt files on disk, so that only they, and users who they provide keys

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

APS Installation Documentation

APS Installation Documentation APS Installation Documentation Sites Using APS in Conjunction with SunSystems: SunSystems must be installed on the system so that connections with APS can be set up. Installation Sequence 1. Go to Adventist

More information

Knowledge Portal 2.6. Installation and Configuration Guide

Knowledge Portal 2.6. Installation and Configuration Guide Knowledge Portal 2.6 Installation and Configuration Guide 2012 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

DefendX Software Control-Audit for Hitachi Installation Guide

DefendX Software Control-Audit for Hitachi Installation Guide DefendX Software Control-Audit for Hitachi Installation Guide Version 4.1 This guide details the method for the installation and initial configuration of DefendX Software Control-Audit for NAS, Hitachi

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

A guide to setting up and using your NOW: Pensions Trust bureau microsite. Bureau user guide v2 PM /5

A guide to setting up and using your NOW: Pensions Trust bureau microsite. Bureau user guide v2 PM /5 A guide to setting up and using your NOW: Pensions Trust bureau microsite Bureau user guide v2 PM00050.0815/5 0 Bureau Site Management initial set up and data maintenance Contents: Step 1 Logging in for

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide Copyright 2009 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other

More information

CDR Database Copy or Migration to Another Server

CDR Database Copy or Migration to Another Server CDR Database Copy or Migration to Another Server Document ID: 66974 Introduction Prerequisites Requirements Components Used Conventions Background Supported Data Sources Topology Copy the CDR Database

More information

MYOB Advanced Business

MYOB Advanced Business MYOB Advanced Business On-Premise Installation Last Updated: 24 November 2014 Contents Introduction 1 Pre-Requisites 1 Web Browsers... 1 Server Hardware and Software... 1 Database Hardware and Software...

More information

SYNTHESYS.NET INTERACTION STUDIO Database Output Actions

SYNTHESYS.NET INTERACTION STUDIO Database Output Actions SYNTHESYS.NET INTERACTION STUDIO Database Output Actions Synthesys.Net Database Output Action 1 DATABASE OUTPUT ACTION DATABASE OUTPUT ACTION WIZARD...3 Database Output Name... 3 Settings... 3 Output Type...

More information

DOCUMENT TRACKING INSTALLATION GUIDE

DOCUMENT TRACKING INSTALLATION GUIDE DOCUMENT TRACKING INSTALLATION GUIDE DOCUMENT TRACKING INSTALLATION GUIDE This document walks through the steps necessary for installing the program. TO INSTALL DTS: You should have administrator rights

More information

One Schema In Sql Server 2005 Management >>>CLICK HERE<<<

One Schema In Sql Server 2005 Management >>>CLICK HERE<<< One Schema In Sql Server 2005 Management Studio 2008 Database As a database increases in size full database backups take more time to finish and require more When you specify a back up task by using SQL

More information

NTP Software File Auditor for Hitachi

NTP Software File Auditor for Hitachi NTP Software File Auditor for Hitachi Installation Guide Version 3.3 This guide details the method for the installation and initial configuration of NTP Software File Auditor for NAS, Hitachi Edition,

More information

Sql Server 2005 Transfer Schema Ownership

Sql Server 2005 Transfer Schema Ownership Sql Server 2005 Transfer Schema Ownership Applies To: SQL Server 2014, SQL Server 2016 Preview Before dropping a database user that owns securables, you must first drop or transfer ownership of those Beginning

More information

SQL Server Express Installation Guide

SQL Server Express Installation Guide SQL Server Express Installation Guide For SQL Server Express 2014 Last Updated 12/22/2016 All user guides are available for download on our support site at www.1-stepsoftware.com. This publication is the

More information

WhatsUp Gold 2016 Installation and Configuration Guide

WhatsUp Gold 2016 Installation and Configuration Guide WhatsUp Gold 2016 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup 1 Installation Overview 1 Overview 1 Security considerations 2 Standard WhatsUp

More information

Managing the CaseMap Admin Console User Guide

Managing the CaseMap Admin Console User Guide Managing the CaseMap Admin Console User Guide CaseMap Server, Version 2.3 Accessing the CaseMap Admin Console Registering CaseMap Servers Registering SQL Servers Setting Up Roles and Users Managing SQL

More information

Application Notes for Installing and Configuring Avaya Control Manager Enterprise Edition in a High Availability mode.

Application Notes for Installing and Configuring Avaya Control Manager Enterprise Edition in a High Availability mode. Application Notes for Installing and Configuring Avaya Control Manager Enterprise Edition in a High Availability mode. Abstract This Application Note describes the steps required for installing and configuring

More information

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x ABSTRACT An often requested feature in reporting is the development of simple Dashboard reports that summarize project information in

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

DOCUMENT TRACKING INSTALLATION GUIDE

DOCUMENT TRACKING INSTALLATION GUIDE DOCUMENT TRACKING INSTALLATION GUIDE DOCUMENT TRACKING INSTALLATION GUIDE This document walks through the steps necessary for installing the program. TO INSTALL DTS: You should have administrator rights

More information

Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn

Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn Module 2: Managing Your Resources Lesson 5: Configuring System Settings and Properties Learn Welcome to Module 2, Lesson 5. In this lesson, you will learn how to use the Administration Console to configure

More information

MASSTRANSIT DATABASE ANALYSIS. Using Microsoft Excel And ODBC To Analyze MySQL Data

MASSTRANSIT DATABASE ANALYSIS. Using Microsoft Excel And ODBC To Analyze MySQL Data MASSTRANSIT DATABASE ANALYSIS Using Microsoft Excel And ODBC To Analyze MySQL Data AUTHOR: PETE CODY petecody@grouplogic.com 31 May 2007 Document Revision History: Date: Author: Comment: 19 Apr 2007 PMC

More information

Database Setup in IRI Workbench 1

Database Setup in IRI Workbench 1 Database Setup in IRI Workbench Two types of database connectivity are required by the IRI Workbench. They are: Microsoft Open Database Connectivity (ODBC) for data movement between the database and IRI

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Three days; Instructor-Led Introduction This three-day instructor-led course teaches students how to implement

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

Sage X3 Intelligence Financial Reporting. Installation and Upgrade Guide

Sage X3 Intelligence Financial Reporting. Installation and Upgrade Guide Financial Reporting Installation and Upgrade Guide The software described in this document is protected by copyright, and may not be copied on any medium except as specifically authorized in the license

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide 2013 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other trademarks

More information

HOW TO USE THE EXPORT FEATURE IN LCL

HOW TO USE THE EXPORT FEATURE IN LCL HOW TO USE THE EXPORT FEATURE IN LCL In LCL go to the Go To menu and select Export. Select the items that you would like to have exported to the file. To select them you will click the item in the left

More information

Guide to Installing DYNAMICS Security Pack

Guide to Installing DYNAMICS Security Pack Guide to Installing DYNAMICS Security Pack Introduction The Security Pack feature of DYNAMICS 7 is designed to assist labs that require compliance with 21 CFR Part 11 of the Code of Federal Regulations.

More information

Database Table Schema Sql Server 2008 R2 Management Studio

Database Table Schema Sql Server 2008 R2 Management Studio Database Table Schema Sql Server 2008 R2 Management Studio Requires CREATE VIEW permission in the database and ALTER permission on the schema in which the view is being Using SQL Server Management Studio.

More information

Quick Start Guide. Microinvest Barcode Printer Pro

Quick Start Guide. Microinvest Barcode Printer Pro Quick Start Guide Microinvest Barcode Printer Pro 2016 Microinvest Barcode Printer Pro provides barcode printing functionality specifically designed to account for new orders and existing entries in the

More information

Oracle Application Express Users Guide

Oracle Application Express Users Guide www.oracle.com/academy Oracle Application Express Users Guide Contents Topic: 1. Introduction 2 2. Logging in to Oracle Application Express 2 3. Oracle Application Express Components 3 4. Using SQL Commands

More information

Installation Guide. Last Revision: Oct 03, Page 1-

Installation Guide. Last Revision: Oct 03, Page 1- Installation Guide Last Revision: Oct 03, 2005 -Page 1- Contents Before You Begin... 2 Installation Overview... 2 Installation for Microsoft Windows 2000, Windows 2003, and Windows XP Professional... 3

More information

Junxure Code Upgrade Instructions

Junxure Code Upgrade Instructions Junxure Code Upgrade Instructions If at any time you run into an issue with the following process, call or email Junxure Support (866-586-9873, opt 1 or support@junxure.com) and we will assist you with

More information

Setting up a database for multi-user access

Setting up a database for multi-user access BioNumerics Tutorial: Setting up a database for multi-user access 1 Aims There are several situations in which multiple users in the same local area network (LAN) may wish to work with a shared BioNumerics

More information

Business Process Procedures

Business Process Procedures Business Process Procedures 14.40 MICROSOFT EXCEL TIPS Overview These procedures document some helpful hints and tricks while using Microsoft Excel. Key Points This document will explore the following:

More information

Ticket Mail Merge Instructions for MS Word 2007 and 2010

Ticket Mail Merge Instructions for MS Word 2007 and 2010 Before starting the mail merge process make sure both the ticket template merge document and bidder number excel file are saved to your computer. These files are located on the volunteer resource site

More information

Some (semi-)advanced tips for LibreOffice

Some (semi-)advanced tips for LibreOffice Some (semi-)advanced tips for LibreOffice by Andy Pepperdine Introduction We cover several tips on special things in Writer and Calc and anything else that turns up. Although I use LibreOffice, these should

More information

CDR Database Copy or Migration to Another Server

CDR Database Copy or Migration to Another Server CDR Database Copy or Migration to Another Server Document ID: 66974 Contents Introduction Prerequisites Requirements Components Used Conventions Background Supported Data Sources Topology Copy the CDR

More information

Shelter Pro Installation Guide SQL Server Backend. Server Side Requirements Overview. Shelter Pro Installation Guide SQL Server Backend Page 1

Shelter Pro Installation Guide SQL Server Backend. Server Side Requirements Overview. Shelter Pro Installation Guide SQL Server Backend Page 1 Server Side Requirements Overview This document describes how to install the Shelter Pro as a client/server application with Microsoft SQL Server as the backend database engine. This overview section gives

More information

ELODEA USER'S GUIDE HOW TO SETUP, CONFIGURE AND USE ELODEA

ELODEA USER'S GUIDE HOW TO SETUP, CONFIGURE AND USE ELODEA ELODEA USER'S GUIDE HOW TO SETUP, CONFIGURE AND USE ELODEA Table of Contents 1. Introduction... 2 2. Understanding Elodea... 3 2.1. Deployment approaches... 4 2.2. Feeds and subscriptions... 7 3. System

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

Visualizing Venice Historic Environment Record (Geospatial Database)

Visualizing Venice Historic Environment Record (Geospatial Database) Visualizing Venice Historic Environment Record (Geospatial Database) Table of Contents Introduction... 2 Getting Started opening the sources interface... 3 Searching for a Record... 4 Adding a New Source

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

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

Follow all of the steps indicated below for each process. Some steps may require IT assistance.

Follow all of the steps indicated below for each process. Some steps may require IT assistance. The instructions provided below are for upgrading EnergyCAP Enterprise from Release 6.0 to Release 6.1SP1. The version number of EnergyCAP 6.1 is 6.1.60.xx. (xx will correspond to the current build, and

More information

Universal Archiving Module. Installation Guide

Universal Archiving Module. Installation Guide Universal Archiving Module Installation Guide 1 Sisukord 1. GENERAL REQUIREMENTS... 3 2. INSTALLING MICROSOFT SQL EXPRESS SERVER... 3 3. INSTALLING MICROSOFT SQL SERVER MANAGEMENT STUDIO... 13 4. INSTALLING

More information

NTP Software Defendex (formerly known as NTP Software File Auditor) for NetApp

NTP Software Defendex (formerly known as NTP Software File Auditor) for NetApp NTP Software Defendex (formerly known as NTP Software File Auditor) for NetApp Installation Guide This guide provides a short introduction to the installation and initial configuration of NTP Software

More information

IBM Security SiteProtector System SecureSync Guide

IBM Security SiteProtector System SecureSync Guide IBM Security IBM Security SiteProtector System SecureSync Guide Version 3.0 Note Before using this information and the product it supports, read the information in Notices on page 45. This edition applies

More information

GETTING STARTED. A Step-by-Step Guide to Using MarketSight

GETTING STARTED. A Step-by-Step Guide to Using MarketSight GETTING STARTED A Step-by-Step Guide to Using MarketSight Analyze any dataset Run crosstabs Test statistical significance Create charts and dashboards Share results online Introduction MarketSight is a

More information

QTD and Supporting Files Installation Instructions

QTD and Supporting Files Installation Instructions QTD and Supporting Files Installation Instructions April 2017 Quality Training Systems www.qualitytrainingsystems.com support@qualitytrainingsystems.com 2017, Quality Training Systems Contents Introduction...

More information

PST for Outlook Admin Guide

PST for Outlook Admin Guide PST for Outlook 2013 Admin Guide Document Revision Date: Sept. 25, 2015 PST Admin for Outlook 2013 1 Populating Your Exchange Mailbox/Importing and Exporting.PST Files Use this guide to import data (Emails,

More information

Server Manager User and Permissions Setup

Server Manager User and Permissions Setup Login and Security Once you successfully create your company databases, the next step is to define the groups and users that can access the TRAVERSE data and the functionality they will have within the

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

More information

Sedao Ltd. Content User Manual. User Manual to cover all basic functions of Content Manager version 1.5.4

Sedao Ltd. Content User Manual. User Manual to cover all basic functions of Content Manager version 1.5.4 Sedao Ltd Content User Manual User Manual to cover all basic functions of Content Manager version 1.5.4 Contents Introduction... 2 Installing Sedao content manager... 2 Starting Sedao Content Manager...

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

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

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled,

Copyright SolarWinds. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified, decompiled, APM Migration Introduction... 3 General Requirements... 3 Database Requirements... 3 Stopping APM Services... 4 Creating and Restoring Orion Database Backups... 4 Creating a Database Backup File with Database

More information

Quick Guide to Installing and Setting Up MySQL Workbench

Quick Guide to Installing and Setting Up MySQL Workbench Quick Guide to Installing and Setting Up MySQL Workbench If you want to install MySQL Workbench on your own computer: Go to: http://www.mysql.com/downloads/workbench/ Windows Users: 1) You will need to

More information

Banner XE Faculty Grading

Banner XE Faculty Grading Banner XE Faculty Grading Instructions Logging into the application: 1. Log into DrexelOne (http://one.drexel.edu) 2. Select Faculty at the top of the Welcome page 3. Select More BannerWeb Faculty Services

More information

Winshuttle STUDIO 11 TRANSACTION Developer Advanced Training 1. Copyright ADSOTECH Scandinavia Oy

Winshuttle STUDIO 11 TRANSACTION Developer Advanced Training 1. Copyright ADSOTECH Scandinavia Oy Winshuttle STUDIO 11 TRANSACTION Developer Advanced Training 1 1 Copyright ADSOTECH Scandinavia Oy 2016 2014 I Contents Winshuttle Studio 11 TRANSACTION Developer Basic Training User Interface Creating

More information

Setup Guide. Page 0

Setup Guide. Page 0 Email Setup Guide Page 0 Table of Contents Mailbox Setup Guide... 2 Before you Start... 2 Desktop Mail Clients... 3 Outlook 2016 setup... 3 Outlook 2013 setup... 7 Outlook 2010 setup... 12 Windows 10 Mail

More information

Microsoft Access 2010

Microsoft Access 2010 www.jwalkonline.org/main michael@jwalkonline.org @MichaelJWalk Microsoft Access 2010 Part 3 Michael J. Walk It's about control: use advanced features of Access to control data entry, automate processes,

More information

Shopping Cart: Queries, Personalizations, Filters, and Settings

Shopping Cart: Queries, Personalizations, Filters, and Settings Shopping Cart: Queries, Personalizations, Filters, and Settings on the Shopping Cart Home Page Use this Job Aid to: Learn how to organize the Shopping Cart home page so that it is easier to use. BEFORE

More information

Microsoft Office 365 for Education

Microsoft Office 365 for Education Microsoft Office 365 for Education Microsoft Office 365 for Education is the online version of Microsoft Office, which allows storage and true collaboration on the Cloud. Works on any device i.e. iphone,

More information

Sedao Ltd. QuickChange PROject. User Manual for QuickChange PROject version 2.1.5

Sedao Ltd. QuickChange PROject. User Manual for QuickChange PROject version 2.1.5 Sedao Ltd QuickChange PROject User Manual for QuickChange PROject version 2.1.5 Contents What is QuickChange PROject?... 2 Simple Artwork Creation... 5 Creating a project... 7 QuickChange PROject Template

More information

BW C SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr User Guide

BW C SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr User Guide BW C SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr User Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr User Guide Safyr 7.1 This product is subject to the license agreement

More information