Guidelines of the FDZ of the BA at the IAB as to the Use of Remote Data Access and On-site Use with JoSuA

Size: px
Start display at page:

Download "Guidelines of the FDZ of the BA at the IAB as to the Use of Remote Data Access and On-site Use with JoSuA"

Transcription

1 Guidelines of the FDZ of the BA at the IAB as to the Use of Remote Data Access and On-site Use with JoSuA Source: (Version 5.1; January 22nd, 2016) 1

2 Job Submission Application (JoSuA) at FDZ The FDZ uses the software application JoSuA which has been developed by the Institute for the Study of Labor, for Remote execution, Uploads of do-files before on site-use and Return of results after on site-use. Every user gets an account for JoSuA after a use agreement is concluded. Users upload their programs in JoSuA. The results are available in JoSuA as well. Users can upload one job each day. Please do not upload a new program before you have received your previous results for this project. The uploaded programs as well the results are located on a server which is not connected to the FDZ-guest network. Further details about the use of JoSuA are described in the text below. Further information on using JoSuA can be found in the manual: Source: (Version 5.1; January 22nd, 2016) 2

3 Data Usage Procedure (Quick Guide) 1. The FDZ provides project directories and the requested data 2. Evaluation programs must comply with FDZ specifications 3. Data usage 4. The FDZ reviews the result files for data security 5. Return of the reviewed results 6. Publication of results 7. Special arrangement for other software Structure of the Project Directories Each research project receives its own directory (fdzxxx) per FDZ dataset. Different datasets cannot be used together. Each project directory contains the following sub-directories: orig: This directory may only contain all the original data. Apart from the requested data, this may include submitted aggregated data, as the case may be (see Section Transfer of External Aggregated Datasets ). You will be granted read-only permission for this directory. data: This is where all the generated datasets should be stored. Please use this storage space sparingly. A maximum of 30 GB is allowed per directory. If you exceed this maximum, you will not be able to submit new jobs until you have reduced your storage space. prog: This folder contains all the evaluation programs (.do files,.ado files, etc.). By default, the FDZ offers analyses with Stata. If you need any other statistical programs for your evaluation purposes, please contact the FDZ. log: doc: This folder contains all the result files. Stata result files must be in ASCII text format and have the extension.log or.txt. Other formats (especially.smcl ) are not allowed. This folder is meant for PDF documents that were previously submitted via . Creating any other directories or sub-directories is not allowed. Source: (Version 5.1; January 22nd, 2016) 3

4 Organisation of the Evaluation Programs The Master File All programs used during the project must be run from a master file. This file is located in the prog folder and must always be named master.do. Its structure is illustrated in Example 1. Use the Stata global variables $orig, $prog, $data, $log, $doc to access your files. These variables are automatically made available for you during remote execution and on-site use and must not be overwritten. You cannot use cd commands. Never use the set max_memory command. Any previously submitted.ado files must be incorporated via the master file. The master file must contain all evaluation programs relevant during the project. It is important to add a short description of the contents of the respective routines in the master file after every program start command. The evaluation programs must be numbered in the order of running them. If several users are working separately on a project, their programs may be distinguished by adding abbreviations to the file names, e.g. (th01_persdat.do). All files generated by you (result files, analysis datasets, etc.) must be replicable based on your programs and the original data. Program steps that have already been executed and have not changed since the last submission must be commented out in the project history. Source: (Version 5.1; January 22nd, 2016) 4

5 Example 1: Contents of the master.do file * Master file of the project "Project name" * Users: T. Hill (th) and W. Miller (wm) version 13 clear set more off *set linesize 120 *set linesize 255 adopath ++ $prog // so the program will scroll down all the way // for Internal Use mode // for Publication/Presentation mode // storage location of the.ado files // (if needed) *do "$prog/th01_persdat.do" // preparation of individual-level data *do "$prog/th02_betrdat.do" // preparation of establishment data *do "$prog/th03_datxy.do" // merging *do "$prog/th04_analysea.do" // examination of Hypothesis 1 (...) *do "$prog/th05_analyseb.do" // examination of Hypothesis 2 (...) *do "$prog/wm01_datagen.do" // preparation of individual-level data do "$prog/wm02_analysex.do" // examination of Hypothesis 5 (...) do "$prog/wm03_analysey.do" // examination of Hypothesis 6 (...) * Output of a file list in a.log file capture log close log using "$log/dateiliste.log", replace dir $prog\* dir $log\* dir $data\* dir $orig\* log close.ado Files We do not provide.ado files. They cannot be downloaded online, either. If you want to use.ado files, you have to send them to the FDZ mailbox prior to your on-site use. Ado files are saved in the prog folder by the FDZ. If you want to use ado files with JoSuA you need to upload them in JoSuA. Please consider that the uploaded ado files in JoSuA are not available in your project folder for on-site use and the other way round. JoSuA and the FDZ-guest network are located on different servers which are not connected. Using the adopath++ command, the.ado files can then be incorporated into the master.do file and accessed there. Source: (Version 5.1; January 22nd, 2016) 5

6 Evaluation Programs Result files (including graphs) must have the same file name as the program with which they were generated. For example, 01_PersDat.do will generate the result file 01_PersDat.log. The programs must be documented for the privacy review (see Example 2). Please take the following into account: using interim headlines, such as Preparation of the variables X or Establishment-level aggregation, describing the content/function of loops, creating variable labels for all important variables that were newly formed, using descriptive variable names whenever possible, and quickly describing newly generated variables once again directly before descriptive statistics. Example 2: Content of a program for data evaluation * Write log file: capture log close log using "$log/th04_analysea.log", replace * Program file of the project "Project name" th04_analysea.do * Content: Examination of Hypothesis 1 * Aggregation level: industries by federal state * aggregation to th03_datxy.do * min. 20 establishments per data line * number of individuals per line is specified in Cases clear all * Load original data: use "$data/name of dataset", clear * Analyses [...] * Save generated data: save "$data/neuername", replace log close Source: (Version 5.1; January 22nd, 2016) 6

7 Documentation of Aggregation If the original micro data are aggregated (e.g. at establishment or region level, etc.), this must be described accordingly in the analysis program. If those aggregates are displayed later in the program, the underlying number of cases has to be computed: For each aggregated variable there has to be an additional variable which contains the number of valid cases (individuals and/or establishments) per aggregate (e.g. bysort aggregate: egen N_var1 = count(var1) ). If the aggregate is a ratio, the number of valid cases has to be computed for each subgroup of the aggregate (e.g. number of men in state X and number of women in state X in addition to the ratio of women in state X). All result files generated after an aggregation must contain the following information at the beginning: at which level the aggregation took place, during which step in the program the aggregation took place (also specify in master.do), the minimum number of individuals and establishments per data line (e.g.: cells containing <20 establishments were deleted), and name of the variable that contains the observation count per data line. If the corresponding references to the aggregation are missing from the beginning of the result file, it is possible that too much data gets deleted during the privacy review process. Taking account of the rule of data economy, please reduce the amount of aggregated tables to a minimum. Source: (Version 5.1; January 22nd, 2016) 7

8 Data Usage Test Data Before sending in your evaluation programs for remote data access, please test them by running master.do on the test data provided on the FDZ website. To this end, define $orig, $data, $prog, $log as appropriate for your test environment before running master.do. Do not write the global definitions in master.do but in the profile.do file. This file is automatically run by Stata. There is no need to access it via master.do. 1 After your tests have been successful, upload your programs in JoSuA in an unchanged state Preparation of On-site Use If you wish to have any prepared evaluation programs (or other files) at your disposal at the FDZ, you should upload them via JoSuA at least three business days prior to the first day of on-site use. Please consider the details in chapter 5 of the JoSuA-Manual ( Please write in the comment field of JoSuA that you need the do-files for on-site use. If you wish to have any (aggregate) data or ado-files at your disposal at the FDZ, you should send them to the FDZ mailbox (iab.fdz@iab.de) at least three business days prior to the first day of onsite use. Please state the date of your on-site use in the . We will confirm receipt of every order via . If you have not received acknowledgement of receipt two business days after sending your , please let us know. We cannot guarantee for files received or uploaded later than that to be available at the start of the on-site use. Please note that we have to specifically examine any transmitted external datasets for data protection reasons before we can make them available to you. Remote Data Access Please use JoSuA for remote data processing ( We do not modify the evaluation programs you upload in JoSuA. They must therefore be transmitted in fully operable condition. We always run your evaluation programs using the most recent Stata release available to us. Your uploaded do-files are downloadable in JoSuA. The FDZ does not forward do-files. Please do not send in a new program before you have received your previous results for this project. If you wish to use external (aggregate) data for your analyses via JoSuA, please send them to the FDZ mailbox (iab.fdz@iab.de). We will confirm the provision of the data via . If you have not received acknowledgement three business days after sending your , please let us know. 1 See also the Stata help: help profile. Source: (Version 5.1; January 22nd, 2016) 8

9 Data Economy Use the storage space in your data directory sparingly. Use the compress command when saving datasets. Delete datasets that were generated in the meantime as soon as you no longer need them (see Example 3). Example 3: Deletion program * Program file to delete data that is no longer needed * 07_delete.do * Write log file: capture log close log using "$log/07_delete.log", replace * Delete files: capture erase "$data\test1.dta" // erase "$data\test*" does NOT work capture erase "$data\test2.dta" [etc.] log close Source: (Version 5.1; January 22nd, 2016) 9

10 Privacy Guidelines The results generated during on-site use or remote data access are reviewed by the FDZ team for compliance with data privacy guidelines and transmitted to the users afterwards. If necessary, individual results will be deleted if they do not comply with our privacy regulations. Detailed information on the guidelines and examples can be found in the FDZ-Methodenreport (06/2012) by Hochfellner et al. (2012) 2. The user pledges not to perform reverse calculations to identify any deleted values. In the event of an infringement, the user will be excluded from any further data usage for up to two years. Moreover, the penalties specified in the contract of use may be applied. Information on any breach of the obligations named above will be passed on to other research data centres. Transfer of External Aggregated Datasets External variables on an aggregated level (e.g. unemployment rates by districts) may be merged to the data if they comply with the FDZ privacy guidelines. Aggregated values must refer to at least 3 observations. It is not possible to merge individual observations. The corresponding variables must be transferred to the FDZ together with a description of the dataset (including variable descriptions, the aggregation level, and a source citation, e.g. an URL). It is not allowed to transmit these datasets in a program file Documentation of the Number of Cases in an analysis During our data privacy review, all values that are based on less than 20 observations (individuals and/or establishments) will be deleted. In order to prevent reverse calculation of deleted values, other values often have to be deleted or rounded as well. Therefore, for all statistical variables or multivariate analyses, the number of cases they are based on must be specified. If the number of cases is missing, we will delete the corresponding results. When displaying means, the minimum, maximum, and standard deviation must also be specified. We need this information to examine the distribution for variables with only two values (such as dummies). When displaying a ratio, the number of valid cases in all subgroups also has to be displayed. When using weights in descriptive analyses, analogue unweighted results must always be specified as well. The weighted and the corresponding unweighted result tables must always be listed one directly below the other. Please also make sure you program your loops accordingly. 2 Hochfellner, Daniela; Müller, Dana; Schmucker, Alexandra; Roß, Elisabeth (2012): Data protection at the Research Data Centre. (FDZ-Methodenreport, 06/2012 (en)), Nuremberg, 25 p. Source: (Version 5.1; January 22nd, 2016) 10

11 Only concerning presentation/publication output in JoSuA: For the data privacy review process, a description of each variable used in a model must be included in front of each multivariate analysis. Only concerning linked employer employee data: Please report both the numbers of individuals and establishments in the descriptive tables. Permitted Output Formats of the Log Stata result files must have the extension.log or.txt. Only these result files will be sent. Results which were saved outside of the log files returned by Stata must be incorporated back into the log file (see Example 4). Example 4: Incorporation in log files * Incorporating results which were returned outside of the log files * Output content of a.csv file in the Stata window type $log/ergebnisse.csv * Output LaTeX code directly in Stata (example) esttab [ ], tex Graphs Stata graphs can sometimes be transformed back into the original data. To avoid this possibility we will only send you Stata graphs that are generated with the "asis" option (see example 5). The formats wmf, eps and png are also allowed. Please generate graphs only if it is not possible to create them on the basis of tables with e.g. Excel on your own. The number of generated graphs should be as low as possible as the effort of disclosure control on graphs is very high. Please provide evidence on how many observations every depicted value is based on. This is possible by displaying the observations either right in the graphs or in tables placed directly before or after the generation of the graphs. Source: (Version 5.1; January 22nd, 2016) 11

12 Example 5: Incorporation in log files * format of graphs graph...,... saving(filename, replace asis) * or graph save filename, replace asis Aggregated Datasets If you wish to receive aggregated datasets as result file, please consult with us about the procedure in advance. The generation of the aggregated data should take place during on-site use. After finishing the aggregated data, the data generating program has to be uploaded in JoSuA with the presentation/publication mode. Please write in the comment field that you want the aggregated data and the respective file name. The regulations for aggregated variables also apply to the documentation of the aggregated datasets. For each project, such a dataset can be forwarded only once. The FDZ will transmit these datasets via . Source: (Version 5.1; January 22nd, 2016) 12

13 Return of the Results On-Site Use After on-site use, the FDZ team will not return the results generated during on-site stay, instead you will start the programs with JoSuA again. Therefore, please make sure that master.do and the other program files are fully operable and upload them in JoSuA from the FDZ server. If you need your results for a presentation or publication, please let your programs run with the presentation/publication mode. If you just need your do-files, write STOP in your master before the do path of do-file commands. Please read the section Return of the reviewed result with JoSuA below to learn more about the further process. Your uploaded do-files are downloadable in JoSuA. The FDZ does not forward do-files. Remote Data Access You will only receive the reviewed result files generated via master.do. The timely return depends on server utilisation and the complexity of computation and review. Please consider this in your planning. Please read the section Return of the reviewed result below to learn more about the further process. Return of the reviewed results with JoSuA Internal use: Uploaded do-files start automatically. The results are available via on-screen display. The FDZ does not review these results, however an automatic check routine will be run. It is not allowed to copy, print, otherwise extract or use these results. Furthermore do not give/send these results to other persons who are not involved in the project. The use of these kinds of results in presentations or publications is an infringement of the data privacy agreement. Make sure to use the internal use mode until you need intermediate result or end results. Presentation/Publication: The FDZ will start your uploaded do-files and will review the results manually for data security. You can download the results in JoSuA and use them for presentations or publications. We do not modify the evaluation programs you uploadin JoSuA. They must therefore be transmitted in fully operable condition. Please upload only do-files that are relevant for the presentation or publication. All other results should be viewed via the onscreen internal use mode. It is not allowed to perform reverse calculations to identify any deleted values. Therefore the results of the internal use mode will not be available anymore after results of the publication/presentation mode are provided in JoSuA. Please do not upload a new program before you have received your previous results for this project. Source: (Version 5.1; January 22nd, 2016) 13

14 Please keep in mind that some Stata-commands are forbidden in general with the internal use mode to protect data privacy. Exceptions are not possible. But in case of relevant results, which cannot be produce with other Stata-commands, you have the possibility to use the presentation/publication mode. Publication of Results The data and documentation must be properly cited in publications according to the specifications on the FDZ website ( Please send a specimen copy to the FDZ. Source: (Version 5.1; January 22nd, 2016) 14

15 Special arrangement for other software By default, the FDZ offers analyses with Stata. If you need any other statistical programs for your evaluation purposes, please contact the FDZ. All analysis and data preparation which are possible in Stata should be executed in Stata. Furthermore write a command to select the other software in the do-file. Only Stata is possible with JoSuA. If you use other software packages you need to send the dofiles to iab.fdz@iab.de. Please consider the following details: In order to process your orders, we need you to state the project specifications in the subject line of every (see Example 6). Newly sent files will overwrite existing files if they have the same file name. Please already point out in the subject line under Other what must be taken into consideration when working with the programs (e.g. after on-site use at ). Please note that we will send orders back unprocessed if any relevant information is missing from the subject line or the format requirements have not been complied with. Please do not send in a new program before you have received your previous results for this project. Please do not use JoSuA in the publication/presentation mode in this period. Example 6: Subject line DAFE Project number Required memory Expected running time End date of contract Other fdz###, # GB, # hours/days, yyyy-mm-dd, [Other] yyyy-mm-dd = date in year-month-day format Examples: fdz041, 3 gb, 14 h, fdz041, 3 gb, 14 h, , after on-site use at fdz041, 3 gb, 14 h, , Matlab fdz041, 3 gb, 14 h, , after on-site use at , Matlab Source: (Version 5.1; January 22nd, 2016) 15

IMF Tune v7.0 Backup, Restore, Replication

IMF Tune v7.0 Backup, Restore, Replication IMF Tune v7.0 Backup, Restore, Replication Contents WinDeveloper IMF Tune v7.0 Backup, Restore, Replication... 3 1. IMFTBak Requirements... 3 2. Using IMFTBak... 3 3. Backing-Up Configuration Settings...

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

RenderStorm Cloud Render (Powered by Squidnet Software): Getting started.

RenderStorm Cloud Render (Powered by Squidnet Software): Getting started. Version 1.0 RenderStorm Cloud Render (Powered by Squidnet Software): Getting started. RenderStorm Cloud Render is an easy to use standalone application providing remote access, job submission, rendering,

More information

Using Flow Control with the HEAD Recorder

Using Flow Control with the HEAD Recorder 03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Contents. Using Web Access... 1. Managing Shared Folders... 28. Managing Account Settings... 36. Index... 39

Contents. Using Web Access... 1. Managing Shared Folders... 28. Managing Account Settings... 36. Index... 39 Contents Using Web Access... 1 Using the Sign In Page... 1 Signing In to Seagate Global Access... 2 Creating a Seagate Global Access Account... 2 If You Forget Your Password... 5 Viewing Central Axis Details...

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Xerox EX Print Server, Powered by Fiery, for the Xerox 700 Digital Color Press. Printing from Windows

Xerox EX Print Server, Powered by Fiery, for the Xerox 700 Digital Color Press. Printing from Windows Xerox EX Print Server, Powered by Fiery, for the Xerox 700 Digital Color Press Printing from Windows 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices

More information

Using Stat/Transfer on the Linux/UNIX Systems

Using Stat/Transfer on the Linux/UNIX Systems 2011-2012 Using Stat/Transfer on the Linux/UNIX Systems Stanford University provides Linux computing resources, which can be accessed through the Stanford University Network (SUNet). The Stanford UNIX

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

ELearning in Sakai. My Workspace. Main page. Refresh Button. Schedule. Resources. Announcements. Worksite Setup

ELearning in Sakai. My Workspace. Main page. Refresh Button. Schedule. Resources. Announcements. Worksite Setup ELearning in Sakai My Workspace Main page Refresh Button Schedule Resources Announcements Worksite Setup Administrative Message Tabs Calendar c Information Announcements Navigation All of your courses

More information

MTS Remote Drive Service. Quick Start Guide

MTS Remote Drive Service. Quick Start Guide MTS Remote Drive Service Quick Start Guide Signing In to Remote Drive service through My Internet Account To sign in to use the service, you need to be a registered user with a user name and password.

More information

PMES Dashboard User Manual

PMES Dashboard User Manual PMES Dashboard User Manual December 2013 Authors Javier Álvarez Barcelona Supercomputing Center Introduction This document describes the different functionalities of the PMES Dashboard. Principally, the

More information

WWA FTP/SFTP CONNECTION GUIDE KNOW HOW TO CONNECT TO WWA USING FTP/SFTP

WWA FTP/SFTP CONNECTION GUIDE KNOW HOW TO CONNECT TO WWA USING FTP/SFTP WWA FTP/SFTP CONNECTION GUIDE KNOW HOW TO CONNECT TO WWA USING FTP/SFTP Table OF Contents WWA FTP AND SFTP CONNECTION GUIDE... 3 What is FTP:... 3 What is SFTP:... 3 Connection to WWA VIA FTP:... 4 FTP

More information

CGS 1550 File Transfer Project Revised 3/10/2005

CGS 1550 File Transfer Project Revised 3/10/2005 CGS 1550 File Transfer Project Revised 3/10/2005 PURPOSE: The purpose of this project is to familiarize students with the three major styles of FTP client, which are: Pure (FTP only), character-based,

More information

Release Notes. Asset Control and Contract Management Solution 6.1. March 30, 2005

Release Notes. Asset Control and Contract Management Solution 6.1. March 30, 2005 Release Notes Asset Control and Contract Management Solution 6.1 March 30, 2005 Contents SECTION 1 OVERVIEW...4 1.1 Document Purpose... 4 1.2 Background... 4 1.3 Documentation... 4 SECTION 2 UPGRADING

More information

Fiery EX4112/4127. Printing from Windows

Fiery EX4112/4127. Printing from Windows Fiery EX4112/4127 Printing from Windows 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45083884 01 April 2009 CONTENTS 3 CONTENTS

More information

ASUS WebStorage Client-based for Windows [Advanced] User Manual

ASUS WebStorage Client-based for Windows [Advanced] User Manual ASUS WebStorage Client-based for Windows [Advanced] User Manual 1 Welcome to ASUS WebStorage, your personal cloud space Our function panel will help you better understand ASUS WebStorage services. The

More information

RGK60 RGK50 RGAM10 RGAM20 RGAM4 Generator set control units

RGK60 RGK50 RGAM10 RGAM20 RGAM4 Generator set control units I123 GB 1207 RGK60 RGK50 RGAM10 RGAM20 RGAM4 Generator set control units CUSTOMIZATION SOFTWARE MANUAL List of contents Introduction... 2 Main window... 3 Device model selection... 3 Transmission of data

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

http://docs.trendmicro.com/en-us/smb/hosted-email-security.aspx

http://docs.trendmicro.com/en-us/smb/hosted-email-security.aspx Trend Micro Incorporated reserves the right to make changes to this document and to the product described herein without notice. Before installing and using the product, review the readme files, release

More information

Novell Filr 1.0.x Mobile App Quick Start

Novell Filr 1.0.x Mobile App Quick Start Novell Filr 1.0.x Mobile App Quick Start February 2014 Novell Quick Start Novell Filr allows you to easily access all your files and folders from your desktop, browser, or a mobile device. In addition,

More information

LOG MANAGEMENT Update Log Setup Screen Update Log Options Use Update Log to track edits, adds and deletes Accept List Cancel

LOG MANAGEMENT Update Log Setup Screen Update Log Options Use Update Log to track edits, adds and deletes Accept List Cancel Log Management - Page 22-1 LOG MANAGEMENT There are various log options throughout ZonePro. A log file is a file that store information about changes that have been made while using ZonePro. Log files

More information

TOSHIBA GA-1310. Printing from Windows

TOSHIBA GA-1310. Printing from Windows TOSHIBA GA-1310 Printing from Windows 2009 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45081979 04 February 2009 CONTENTS 3 CONTENTS

More information

Configuration Guide. Installation and. BlackBerry Enterprise Server Resource Kit. Version: 5.0 Service Pack: 4

Configuration Guide. Installation and. BlackBerry Enterprise Server Resource Kit. Version: 5.0 Service Pack: 4 BlackBerry Enterprise Server Resource Kit Version: 5.0 Service Pack: 4 Installation and Configuration Guide Published: 2012-10-15 SWD-20121015115608883 Contents 1 Overview... 5 BlackBerry Enterprise Server

More information

Contents. Welcome to the Priority Zoom System Version 17 for Windows. This document contains instructions for installing the system.

Contents. Welcome to the Priority Zoom System Version 17 for Windows. This document contains instructions for installing the system. Welcome to the Priority Zoom System Version 17 for Windows. This document contains instructions for installing the system. Contents 1. Introduction... 2 2. Installing the Server... 2 3. Installing a Client...

More information

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT Navigate to https://portal.priorityonenet.com/ and log in to the PriorityOne portal account. If you would like your web browser to keep you

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Online Backup Client User Manual Mac OS

Online Backup Client User Manual Mac OS Online Backup Client User Manual Mac OS 1. Product Information Product: Online Backup Client for Mac OS X Version: 4.1.7 1.1 System Requirements Operating System Mac OS X Leopard (10.5.0 and higher) (PPC

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

1 The Gigalog S board send regularly its data by ftp to the database. The board may also send information about the board, like the GPS position.

1 The Gigalog S board send regularly its data by ftp to the database. The board may also send information about the board, like the GPS position. Controlord Internet customer database Overview The database keeps data gathered from GigaLog data loggers and send to it by FTP. The user interface allows to display this data of the database graphically.

More information

Job Scheduler User Guide IGSS Version 11.0

Job Scheduler User Guide IGSS Version 11.0 Job Scheduler User Guide IGSS Version 11.0 The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained therein.

More information

FTP Server Connection Guide TRIP and Cross-content

FTP Server Connection Guide TRIP and Cross-content FTP Server Connection Guide TRIP and Cross-content page 1/16 Table of Contents 1 Introduction...3 2 System Requirements...4 3 General policy about customer folders...5 4 FTP Server...6 4.1 Server Overview...6

More information

USM Web Content Management System

USM Web Content Management System University of Southern Maine USM Web Content Management System USM Web CMS Technical Development Group 4/26/2011 Content o Introduction o Login o User Roles o Group Member o Group Publisher o Group Admin

More information

microsd Card Functionality

microsd Card Functionality microsd Card Functionality MicroSD Card Table of Contents TABLE OF CONTENTS...2 INTRODUCTION...3 INSERTING THE MICRO SD CARD...3 SYSTEM MENU REMOVABLE MEDIA...4 FLASH FILENAME FORMAT...5 SAVING AND LOADING

More information

Student User Guide. Introduction to the Module Management System (MMS) in Philosophy. Logging in; Submitting work; Logging out

Student User Guide. Introduction to the Module Management System (MMS) in Philosophy. Logging in; Submitting work; Logging out Student User Guide Introduction to the Module Management System (MMS) in Philosophy Logging in; Submitting work; Logging out Revised Oct 2008 (version 3.1P) University of St Andrews MMS Student Guide MMS

More information

OpenIMS 4.2. Document Management Server. User manual

OpenIMS 4.2. Document Management Server. User manual OpenIMS 4.2 Document Management Server User manual OpenSesame ICT BV Index 1 INTRODUCTION...4 1.1 Client specifications...4 2 INTRODUCTION OPENIMS DMS...5 2.1 Login...5 2.2 Language choice...5 3 OPENIMS

More information

Using Impatica for Power Point

Using Impatica for Power Point Using Impatica for Power Point What is Impatica? Impatica is a tool that will help you to compress PowerPoint presentations and convert them into a more efficient format for web delivery. Impatica for

More information

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On Remote Drive PC Client software User Guide -Page 1 of 27- PRIVACY, SECURITY AND PROPRIETARY RIGHTS NOTICE: The Remote Drive PC Client software is third party software that you can use to upload your files

More information

Network Detective Client Connector

Network Detective Client Connector Network Detective Copyright 2014 RapidFire Tools, Inc. All Rights Reserved. v20140801 Overview The Network Detective data collectors can be run via command line so that you can run the scans on a scheduled

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 37.0, Summer 16 @salesforcedocs Last updated: July 12, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Exchange Brick-level Backup and Restore

Exchange Brick-level Backup and Restore WHITEPAPER BackupAssist Version 4 Exchange Mailbox Add-on www.backupassist.com 2 Contents 1. Introduction and Overview... 3 1.1 What does the Exchange Mailbox Add-on do?... 3 1.2 Who needs the Exchange

More information

PMOD Installation on Linux Systems

PMOD Installation on Linux Systems User's Guide PMOD Installation on Linux Systems Version 3.7 PMOD Technologies Linux Installation The installation for all types of PMOD systems starts with the software extraction from the installation

More information

Online Sharing User Manual

Online Sharing User Manual Online Sharing User Manual June 13, 2007 If discrepancies between this document and Online Sharing are discovered, please contact backupfeedback@verizon.net. Copyrights and Proprietary Notices The information

More information

Sophos Endpoint Security and Control How to deploy through Citrix Receiver 2.0

Sophos Endpoint Security and Control How to deploy through Citrix Receiver 2.0 Sophos Endpoint Security and Control How to deploy through Citrix Receiver 2.0 Product version: 9.5 Document date: November 2010 Contents 1 About this guide...3 2 Overview...4 3 System requirements...5

More information

Model 288B Charge Plate Graphing Software Operators Guide

Model 288B Charge Plate Graphing Software Operators Guide Monroe Electronics, Inc. Model 288B Charge Plate Graphing Software Operators Guide P/N 0340175 288BGraph (80207) Software V2.01 100 Housel Ave PO Box 535 Lyndonville NY 14098 1-800-821-6001 585-765-2254

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

STIDistrict SQL 2000 Database Management Plans

STIDistrict SQL 2000 Database Management Plans STIDistrict SQL 2000 Database Management Plans Overview STI recommends that users create SQL database maintenance plans to maintain the integrity of the STIDistrict database. Database maintenance plans

More information

LevelOne MUS-1001. 1GB Smart Flash. User Manual V1.0.0-0610

LevelOne MUS-1001. 1GB Smart Flash. User Manual V1.0.0-0610 LevelOne MUS-1001 1GB Smart Flash User Manual V1.0.0-0610 CONTENT CHAPTER 1 INTRODUCTION...4 1.1 About this Manual...4 1.2 Support Services...5 CHAPTER 2 PRODUCT OVERVIEW...6 2.1 Package Contents...6 2.2

More information

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20

Introweb Remote Backup Client for Mac OS X User Manual. Version 3.20 Introweb Remote Backup Client for Mac OS X User Manual Version 3.20 1. Contents 1. Contents...2 2. Product Information...4 3. Benefits...4 4. Features...5 5. System Requirements...6 6. Setup...7 6.1. Setup

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

Basics of STATA. 1 Data les. 2 Loading data into STATA

Basics of STATA. 1 Data les. 2 Loading data into STATA Basics of STATA This handout is intended as an introduction to STATA. STATA is available on the PCs in the computer lab as well as on the Unix system. Throughout, bold type will refer to STATA commands,

More information

Application Note: FTP Server Setup on computers running Windows-XP For use with 2500P-ACP1

Application Note: FTP Server Setup on computers running Windows-XP For use with 2500P-ACP1 Application Note: FTP Server Setup on computers running Windows-XP For use with 2500P-ACP1 The CTI 2500P-ACP1 is capable of transferring data files to a remote FTP Server. This document provides information

More information

Online Backup Client User Manual

Online Backup Client User Manual For Mac OS X Software version 4.1.7 Version 2.2 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by other means.

More information

1 Minimum system requirements

1 Minimum system requirements Metrohm AG CH-9101 Herisau Switzerland Phone +41 71 353 85 85 Fax +41 71 353 89 01 info@metrohm.com www.metrohm.com Installation MagIC Net 2.x 1 Minimum system requirements Operating system RAM Memory

More information

User manual BS1000 LAN base station

User manual BS1000 LAN base station 1/18 Contents 1.Introduction 2.Package of the LAN Base Station 3.Software installation 4.Installation of the Receiver 5.Sensor operation 6.Software operation Introduction The BS1000 is a receiver station

More information

TABLE OF CONTENTS. race result 11 Introduction

TABLE OF CONTENTS. race result 11 Introduction INTRODUCTION. TABLE OF CONTENTS 1. First Steps... 3 2. race result 11 Demo... 4 2.1. How to Open an Event... 4 2.2. How to Navigate in race result 11... 5 2.3. Participants Window... 6 2.4. Output Window...

More information

Time Matters and Billing Matters Administration Guide

Time Matters and Billing Matters Administration Guide Time Matters and Billing Matters Administration Guide Version 14.1 2015 LexisNexis. All rights reserved. Copyright and Trademark LexisNexis, Lexis, and the Knowledge Burst logo are registered trademarks

More information

How to Setup, Install & Run a Website on your Local Computer. For WordPress - on an Offline Server - WAMP

How to Setup, Install & Run a Website on your Local Computer. For WordPress - on an Offline Server - WAMP How to Setup, Install & Run a Website on your Local Computer For WordPress - on an Offline Server - WAMP Index: Determine Operating System Status Download WAMP Server Download Latest WordPress Installing

More information

OneDrive for Business User Guide

OneDrive for Business User Guide OneDrive for Business User Guide Contents About OneDrive for Business and Office 365... 2 Storing University Information in the Cloud... 2 Signing in... 2 The Office 365 Interface... 3 The OneDrive for

More information

Installing GFI MailEssentials

Installing GFI MailEssentials Installing GFI MailEssentials Introduction to installing GFI MailEssentials This chapter shows you how to install and configure GFI MailEssentials. GFI MailEssentials can be installed in two ways: Installation

More information

Sophos Mobile Control as a Service Startup guide. Product version: 3.5

Sophos Mobile Control as a Service Startup guide. Product version: 3.5 Sophos Mobile Control as a Service Startup guide Product version: 3.5 Document date: August 2013 Contents 1 About this guide...3 2 What are the key steps?...4 3 First login...5 4 Change your administrator

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

PDSI Users Manual Version 2.0

PDSI Users Manual Version 2.0 PDSI Users Manual Version 2.0 Nathan Wells National Agricultural Decision Support System http://nadss.unl.edu University of Nebraska-Lincoln nwells@cse.unl.edu July 15, 2003 Contents Introduction... 3

More information

New Features in Primavera P6 EPPM 16.1

New Features in Primavera P6 EPPM 16.1 New Features in Primavera P6 EPPM 16.1 COPYRIGHT & TRADEMARKS Copyright 2016, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca!

Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! Quick Start Guide Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! How to Setup a File Server with Cerberus FTP Server FTP and SSH SFTP are application protocols

More information

Using Microsoft Expression Web to Upload Your Site

Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Web Site This article briefly describes how to use Microsoft Expression Web to connect to your Web server

More information

08/2012. Technical and organisational measures for remote access to the micro data of the Research Data Centre of the Federal Employment Agency

08/2012. Technical and organisational measures for remote access to the micro data of the Research Data Centre of the Federal Employment Agency 08/2012 Technical and organisational measures for remote access to the micro data of the Research Data Centre of the Federal Employment Agency Joerg Heining, Stefan Bender Technical and organisational

More information

BlackBerry Enterprise Server Resource Kit

BlackBerry Enterprise Server Resource Kit BlackBerry Enterprise Server Resource Kit Version: 5.0 Service Pack: 3 Installation Guide Published: 2011-06-20 SWD-1701641-0620052345-001 Contents 1 Overview... 3 Options for downloading the BlackBerry

More information

Introduction to RStudio

Introduction to RStudio Introduction to RStudio (v 1.3) Oscar Torres-Reyna otorres@princeton.edu August 2013 http://dss.princeton.edu/training/ Introduction RStudio allows the user to run R in a more user-friendly environment.

More information

SPAMfighter Mail Gateway

SPAMfighter Mail Gateway SPAMfighter Mail Gateway User Manual Copyright (c) 2009 SPAMfighter ApS Revised 2009-05-19 1 Table of contents 1. Introduction...3 2. Basic idea...4 2.1 Detect-and-remove...4 2.2 Power-through-simplicity...4

More information

Configuring the BIG-IP system for FirePass controllers

Configuring the BIG-IP system for FirePass controllers Deployment Guide Configuring the BIG-IP System with FirePass Controllers for Load Balancing and SSL Offload Configuring the BIG-IP system for FirePass controllers Welcome to the Configuring the BIG-IP

More information

Quick Reference Guide Course Homepage Management (Faculty)

Quick Reference Guide Course Homepage Management (Faculty) Quick Reference Guide Course Homepage Management (Faculty) Table of Contents View Faculty Schedule... 3 Print Faculty Schedule... 3 Create Course Homepage... 3 Add a New Activity to the Course Homepage...

More information

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

Remote Network Accelerator

Remote Network Accelerator Remote Network Accelerator Evaluation Guide LapLink Software 10210 NE Points Drive Kirkland, WA 98033 Tel: (425) 952-6000 www.laplink.com LapLink Remote Network Accelerator Evaluation Guide Page 1 of 19

More information

Managing Software and Configurations

Managing Software and Configurations 55 CHAPTER This chapter describes how to manage the ASASM software and configurations and includes the following sections: Saving the Running Configuration to a TFTP Server, page 55-1 Managing Files, page

More information

Made Easy Windows Sync App Tutorial

Made Easy Windows Sync App Tutorial Investor Storage Newsletter Made Easy Windows Sync App Tutorial The aim of this tutorial is simply to demonstrate how to set up Synchronization using the Storage Made Easy Sync App that is installed as

More information

Miller s School Software Quick Start Guide.

Miller s School Software Quick Start Guide. Miller s School Software Quick Start Guide. Introduction The Digital Undergrad software is part of the Miller s Remote Suite and can be downloaded from the Miller s website. The Digital Undergrad software

More information

Creating Web Pages with Microsoft FrontPage

Creating Web Pages with Microsoft FrontPage Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short

More information

Getting Started Guide

Getting Started Guide Page 2 of 9 Introduction This guide is designed to provide you with the information you need to complete your Payment Gateway account set up and begin processing live payment transactions. As a quick overview,

More information

German Record Linkage Center

German Record Linkage Center German Record Linkage Center Microdata Computation Centre (MiCoCe) Workshop Nuremberg, 29 April 2014 Johanna Eberle FDZ of BA at IAB Agenda Basic information on German RLC Services & Software Projects

More information

Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process

Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process This Application Note provides instructions on how to backup and restore JDSU PathTrak Video Monitoring data. Automated

More information

Field Manager Mobile Worker User Guide for RIM BlackBerry 1

Field Manager Mobile Worker User Guide for RIM BlackBerry 1 Vodafone Field Manager Mobile Worker User Guide for RIM BlackBerry APPLICATION REQUIREMENTS Supported devices listed here o http://support.vodafonefieldmanager.com Application requires 600 KB of application

More information

Online Tools of Service Package A

Online Tools of Service Package A Page 1/5 Online Tools of Service Package A Tool 1 Call-for-Skeleton Programme Programme Committee Members have the opportunity to generate a Skeleton Programme with preliminary sessions. They provide session

More information

RMFT Outlook Add-In User Guide

RMFT Outlook Add-In User Guide RMFT Outlook Add-In User Guide Software Version 2.5 November 23, 2011 RepliWeb, Inc., 6441 Lyons Road, Coconut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954) 337-6424 E-mail: info@repliweb.com, Support:

More information

ECONOMICS 351* -- Stata 10 Tutorial 2. Stata 10 Tutorial 2

ECONOMICS 351* -- Stata 10 Tutorial 2. Stata 10 Tutorial 2 Stata 10 Tutorial 2 TOPIC: Introduction to Selected Stata Commands DATA: auto1.dta (the Stata-format data file you created in Stata Tutorial 1) or auto1.raw (the original text-format data file) TASKS:

More information

User's Guide DylosLogger Software Version 1.6

User's Guide DylosLogger Software Version 1.6 User's Guide DylosLogger Software Version 1.6 The DylosLogger software allows users of Dylos Air Quality Monitors equipped with PC interface to easily record, download, and graph data. The COM port is

More information

ADVANCED GUIDE TO REFWORKS

ADVANCED GUIDE TO REFWORKS LEARNING AND INFORMATION SERVICES ADVANCED GUIDE TO REFWORKS 1. Advanced searching 2. My List 3. Adding attachments 4. Importing from RSS feeds 5. Deleting duplicate references 6. Sharing references 7.

More information

Symantec LiveUpdate Administrator. Getting Started Guide

Symantec LiveUpdate Administrator. Getting Started Guide Symantec LiveUpdate Administrator Getting Started Guide Symantec LiveUpdate Administrator Getting Started Guide The software described in this book is furnished under a license agreement and may be used

More information

Capture Pro Software FTP Server System Output

Capture Pro Software FTP Server System Output Capture Pro Software FTP Server System Output Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible

More information

Installing, Uninstalling, and Upgrading Service Monitor

Installing, Uninstalling, and Upgrading Service Monitor CHAPTER 2 Installing, Uninstalling, and Upgrading Service Monitor This section contains the following topics: Preparing to Install Service Monitor, page 2-1 Installing Cisco Unified Service Monitor, page

More information

CNC Transfer. Operating Manual

CNC Transfer. Operating Manual Rank Brothers Ltd CNC Transfer Operating Manual Manufactured by: Rank Brothers Ltd 56 High Street, Bottisham, Cambridge CB25 9DA, England Tel: +44 (0)1223 811369 Fax: +44 (0)1223 811441 Website: http://www.rankbrothers.co.uk/

More information

Aspen Gradebook - Teacher

Aspen Gradebook - Teacher Aspen Gradebook - Teacher Gradebook Setup You can use the teacher Gradebook in Staff View to enter and track assignments, and grades in your course sections. To begin using the gradebook you ll need to

More information

Quarterly Wage Reporting System QWRS. User s Manual

Quarterly Wage Reporting System QWRS. User s Manual Quarterly Wage Reporting System QWRS Visual Basic Version 3.0.0 User s Manual STATE OF HAWAII DEPARTMENT OF LABOR & INDUSTRIAL RELATIONS UNEMPLOYMENT INSURANCE DIVISION September 2006 Table of Contents

More information