Manage Multiple SQL Server Installations and Databases with OSQL

Size: px
Start display at page:

Download "Manage Multiple SQL Server Installations and Databases with OSQL"

Transcription

1 Page 1 of 5 Home Articles Books FAQs Book Excerpts Careers Tools Forum Back About Advertise Link to Us Write for Us Free Newsletter A Manage Multiple SQL Server Installations and Databases with OSQL by Randy Dyess At one point in time I was tasked with running over 70 databases on more than a dozen servers without any of the costly third-party tools that exist to accomplish such tasks, and I often get asked how can you handle such large numbers of databases. This is a short article that will show you how to use the handy OSQL command line utility, provided with SQL Server, to execute repetitive tasks against large numbers of databases or to manage large numbers of servers. The OSQL command line utility allows you to execute Transact-SQL statements, system procedures, and script files against multiple servers and databases by using ODBC connections to those servers and databases. The syntax of the OSQL utility allows you to specify which server, database, login, password, input file, output file, as well as formatting functions you want to run with your SQL script. By creating a small BAT file containing this information for the servers and database you manage and creating a SQL script file, you can easily perform repetitive SQL tasks with one or two mouse clicks. OSQL Syntax OSQL [-?] [-L] [ { {-U login_id [-P password]} -E } [-S server_name[\instance_name]] [-H wksta_name] [-d db_name] [-l time_out] [-t time_out] [-h headers] [-s col_separator] [-w column_width] [-a packet_size] [-e] [-I] [-D data_source_name] [-c cmd_end] [-q "query"] [-Q "query"] [-n] [-m error_level] [-r {0 1}] [-i input_file] [-o output_file] [-p] [-b] [-u] [-R] [-O]

2 Page 2 of 5 ] OSQL Parameters -? used to display the syntax for OSQL switches. -L -U -P will list the locally configures servers and the names of the servers broadcasting on your network. login_id is the user login to use for the connection to the server and database and is case sensitive. password is the password for the login_id specified. If -P is not used then OSQL will prompt for a password, and if -P is not specified then OSQL will use a NULL value as the password. -P is case sensitive. Another option is to set a password for OSQL by using the OSQLPASSWORD environment variable at the command line. C:\>SET OSQLPASSWORD=password. This will allow you to not specify the password and cause OSQL to check for the environment variable before it uses the NULL value which allows you to keep from having to hard code the password into the batch file. -E will cause OSQL to use a trusted connection. -S server_name[\instance_name] will specify the server and in the case of SQL Server 2000 instances the SQL Server instance you want to connect to. Connecting to just the server name will cause OSQL to try to connect to the default instance of SQL Server. -H wksta_name is a workstation name that will be stored in the sysprocesses system table with a default of the current computer name. -d db_name specifies which database to use for the SQL statement. -l -t -h -s -w -a time_out specifies the number of seconds to wait before OSQL login times out with a default of 8 seconds. time_out specifies the number of seconds before a command times out with a default of never. headers specifies the number of rows to print between column headings with a default of all rows after the column headings. A -1 will specify that no headers be printed: note that if -1 is used do not include a space between -h and -1 (-h-1). col_separator will specify the column-separator character with a default of a blank space. To use characters that have special meaning to the operating system ( ; & < >), enclose the character in double quotation marks ("). column_width will allow you to set the screen width for output with a default of 80 characters. When an output line has reached its maximum screen width, it is broken into multiple lines. packet_size will allow you to request a different-sized packet with a default size of the server default. Valid values are 512 through Increased packet size can enhance performance on larger script execution where the amount of SQL statements between GO commands is substantial. -e will echo the input into the output file.

3 Page 3 of 5 -I will set the QUOTED_IDENTIFIER connection option on. -D data_source_name will connect to an ODBC data source that is defined using the ODBC driver for Microsoft SQL Server and will use the options specified in the data source. This option does not work with data sources defined for other drivers. -c cmd_end will specify the command terminator. "query" will execute a query when OSQL is started but will not exit OSQL when the query completes. You can use %variables, or environment % variables% in a batch file by setting the variable beforehand. -q SET table = sysobjects OSQL /q "Select * from %table%" Make sure you use double quotation marks around the query and single quotation marks around anything embedded in the query. -Q -n -m -r {0 1} -i "query" will execute a query and exit OSQL. Like -q use double quotation marks around the query and single quotation marks around anything embedded in the query. will remove the numbering and the prompt symbol (>) from input lines. I use this parameter to keep anything from being written to an output file if no errors occurs, so all I have to do is look for the output files to be 0 in size to know the statement completed correctly. error_level will customize the display of error messages. The message number, state, and error level are displayed for errors of the specified severity level or higher. Nothing is displayed for errors of levels lower than the specified level. Use -1 to specify that all headers are returned with messages, even informational messages. If using -1, there must be no space between the parameter and the setting (-m-1, not -m -1). will redirect the message output to the screen. If a parameter is not specified or if 0 is specified then only error messages with a severity level 11 or higher are redirected. If you specify 1, all message output (including "print") is redirected. input_file will identify the file that contains a batch of SQL statements or stored procedures. The less than (<) comparison operator can be used in place of -i. -o output_file will identify the file that receives output from OSQL. The greater than (>) comparison operator can be used in place of -o. -p will print performance statistics. -b -u -R will specifies that OSQL exits and returns a DOS ERRORLEVEL value when an error occurs. The value returned to the DOS ERRORLEVEL variable is 1 when the SQL Server error message has a severity of 10 or greater; otherwise, the value returned is 0. will specify that output_file is stored in Unicode format, regardless of the format of the input_file. will specify that the SQL Server ODBC driver use client settings when converting currency, date, and time data to character data. will specify that certain OSQL features be deactivated to match the behavior of earlier versions of ISQL.

4 Page 4 of 5 -O These features are: --EOF batch processing --Automatic console width scaling --Wide messages -O will also set the default DOS ERRORLEVEL value to -1. Putting It All Together Using OSQL can be as made as fancy as you want it to be, but I find that the creation of two simple files will allow me to accomplish most the tasks I've needed to in a quick manner against numerous databases. The first thing you need to do is to create your batch file or files based on the database groupings you want to run statement against. Using a simple text editor, create the file with your parameters and save the file with a.bat extension. You can create this batch file to use a text file as the input file which will keep you from having to adjust parameters each time you want to run the batch process. A sample of what I do can be found in the following example: OSQL -Usa -Ppassword -Sserver1 -ddatabase1 -n -ic:\osql_scripts\sql_scripts\sqlscript.sql -oc:\osql_scripts\output\osqloutput_db1.txt OSQL -Usa -Ppassword -Sserver2 -ddatabase2 -n -ic:\osql_scripts\sql_scripts\sqlscript.sql -oc:\osql_scripts\output\osqloutput_db2.txt What I usually do is create and test the SQL script in Query Analyzer and then save that script to a file named sqlscript.sql (I actually have several files with different names for different groupings of databases). When you execute the.bat file, it will start up OSQL, connect to each defined server, execute a USE statement for the database defined, and execute the SQL command contained in the SQL script file creating a separate output file for each connection. Learning to format the output to a form that is readable takes some practice, but I usually use OSQL to find the location of the data I am interested in and then run the query in Query Analyzer so I can format the data in a quick and easy manner. Summary Taking the time to create OSQL bat files for groups of servers and/or databases and using these files to manage your environment for repetitive tasks will pay off as you find yourself only needing a few minutes to create a database object or run a query against dozens of databases located on dozens of servers. So keep asking for the expensive toys some think they need to mange multiple databases, but until your company agrees to your request, save yourself a lot of time and frustration by figuring out how you can use OSQL to manage your environment.

5 Page 5 of 5 Copyright 2002 by Randy Dyess, All rights Reserved TransactSQL.Com Sponsored Links Do You Backpack? Visit WorldClassGear.Com for gear reviews! Get full access to 5 years worth of SQL Server content. Click here! Quickly Move Data From One Database to Another with insertxpress DbNetGrid: Database-driven web reports & applications in minutes Running out of disk space? Reduce database backups with SQL LiteSpeed! Do You Climb for Fun? Visit WorldClassGear.Com for gear reviews! About Advertise Who We Are Link to Us Write for Us Authors Subscribe to Newsletter Privacy Policy Copyright Disclaimer SQL-Server-Performance.Com All Rights Reserved

-Ctrust the server certificate This switch is used by the client to configure it to implicitly trust the server

-Ctrust the server certificate This switch is used by the client to configure it to implicitly trust the server GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 Phn: 0403-063-991 Fax: none ABN: 54-008-044-906 ACN: 008-044-906 Eml: support@gosoftware.com.au Web: www.gosoftware.com.au SQLcmd Information

More information

Introduction. 1. Deactivating Anti-Executable Enterprise. 2. Updating the virus definitions 3. Reactivating Anti-Executable Enterprise.

Introduction. 1. Deactivating Anti-Executable Enterprise. 2. Updating the virus definitions 3. Reactivating Anti-Executable Enterprise. Introduction The process of updating virus definitions on workstations protected by Faronics Anti-Executable Enterprise involves three fundamental steps: 1. Deactivating Anti-Executable Enterprise. 2.

More information

System Environment of the Database Engine

System Environment of the Database Engine Chapter 15 System Environment of the Database Engine In This Chapter c System Databases c Disk Storage c Utilities and the DB Command c Policy-Based Management 406 Microsoft SQL Server 2012: A Beginner

More information

Introduction. 1. Deactivating Anti-Executable. 2. Updating the virus definitions. 3. Reactivating Anti-Executable.

Introduction. 1. Deactivating Anti-Executable. 2. Updating the virus definitions. 3. Reactivating Anti-Executable. Introduction The process of updating virus definitions on workstations protected by Faronics Anti-Executable Enterprise involves three fundamental steps: 1. Deactivating Anti-Executable. 2. Updating the

More information

Run Stored Procedure Command Line Sql Server 2008

Run Stored Procedure Command Line Sql Server 2008 Run Stored Procedure Command Line Sql Server 2008 The dtexec command prompt utility is used to configure and execute SQL and catalog.start_execution (SSISDB Database) stored procedures to create. Removes

More information

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the DB2 on Campus Lecture Series. Today we are going to talk about tools and scripting. And this is part 2 of 2

More information

Running TCL Scripts on an IDENTIKEY Appliance. Creation date: 24/06/2016 Last Review: 26/07/2016 Revision number: 2

Running TCL Scripts on an IDENTIKEY Appliance. Creation date: 24/06/2016 Last Review: 26/07/2016 Revision number: 2 KB 160094 Running TCL Scripts on an IDENTIKEY Appliance Creation date: 24/06/2016 Last Review: 26/07/2016 Revision number: 2 Document type: How To Security status: EXTERNAL Summary Executing a TCL script

More information

Advanced Batch Files. Ch 11 1

Advanced Batch Files. Ch 11 1 Advanced Batch Files Ch 11 1 Overview Quick review of batch file commands learned in earlier chapters. Ch 11 2 Overview Advanced features of these commands will be explained and used. Ch 11 3 Overview

More information

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s Chapter 9 Turning Data into Information with SQL Server Reporting Services In This Chapter Configuring SQL Server Reporting Services with Reporting Services Configuration Manager Designing reports Publishing

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008.

PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008. PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008. Outline. How cookies work. Cookies in PHP. Sessions. Databases. Cookies. Sometimes it is useful to remember a client when it comes

More information

Click OK in the confirmation window. The selected workstations restart in the Thawed state.

Click OK in the confirmation window. The selected workstations restart in the Thawed state. Introduction The process of updating virus pattern files on workstations protected by Deep Freeze Enterprise involves three fundamental steps: 1. Rebooting the workstations into a Thawed state so the updates

More information

Manual Backup Sql Server 2000 Command Line Restore

Manual Backup Sql Server 2000 Command Line Restore Manual Backup Sql Server 2000 Command Line Restore Overview Creating command line backups is very straightforward. There are basically two commands that allow you to create backups, BACKUP DATABASE. Under

More information

Sage Estimating (SQL) v17.13

Sage Estimating (SQL) v17.13 Sage Estimating (SQL) v17.13 Sage 100 Contractor (SQL) Integration Guide December 2017 This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage,

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

Figure 1-1. When we finish Part 2, our server will be ready to have workstations join the domain and start sharing files. Now here we go!

Figure 1-1. When we finish Part 2, our server will be ready to have workstations join the domain and start sharing files. Now here we go! 1 of 18 9/6/2008 4:05 AM Configuring Windows Server 2003 for a Small Business Network, Part 2 Written by Cortex Wednesday, 16 August 2006 Welcome to Part 2 of the "Configuring Windows Server 2003 for a

More information

Manual Backup Sql Server 2000 Command Line Restore Database

Manual Backup Sql Server 2000 Command Line Restore Database Manual Backup Sql Server 2000 Command Line Restore Database Overview Creating command line backups is very straightforward. There are basically two commands that allow you to create backups, BACKUP DATABASE.

More information

Introduction. This white paper provides technical information on how to approach these steps with CA s etrust Antivirus.

Introduction. This white paper provides technical information on how to approach these steps with CA s etrust Antivirus. Introduction The process of updating virus definitions on workstations protected by Deep Freeze Enterprise involves three fundamental steps: 1. Rebooting the workstations into a Thawed state so the updates

More information

Windows Script Host Fundamentals

Windows Script Host Fundamentals O N E Windows Script Host Fundamentals 1 The Windows Script Host, or WSH for short, is one of the most powerful and useful parts of the Windows operating system. Strangely enough, it is also one of least

More information

MySQL On Crux Part II The GUI Client

MySQL On Crux Part II The GUI Client DATABASE MANAGEMENT USING SQL (CIS 331) MYSL ON CRUX (Part 2) MySQL On Crux Part II The GUI Client MySQL is the Structured Query Language processor that we will be using for this class. MySQL has been

More information

Focus Group Analysis

Focus Group Analysis Focus Group Analysis Contents FOCUS GROUP ANALYSIS... 1 HOW CAN MAXQDA SUPPORT FOCUS GROUP ANALYSIS?... 1 IMPORTING FOCUS GROUP TRANSCRIPTS... 1 TRANFORMING AN ALREADY IMPORTED TEXT INTO A FOCUS GROUP

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

Checklist for Testing of Web Application

Checklist for Testing of Web Application Checklist for Testing of Web Application Web Testing in simple terms is checking your web application for potential bugs before its made live or before code is moved into the production environment. During

More information

sqamethods Approach to Building Testing Automation Systems

sqamethods Approach to Building Testing Automation Systems sqamethods Approach to Building Testing Automation Systems By Leopoldo A. Gonzalez leopoldo@sqamethods.com BUILDING A TESTING AUTOMATION SYSTEM...3 OVERVIEW...3 GOALS FOR AN AUTOMATION SYSTEM...3 BEGIN

More information

Currently, ADBC is a Windows only feature and requires Open Database Connectivity (ODBC) provided by Microsoft.

Currently, ADBC is a Windows only feature and requires Open Database Connectivity (ODBC) provided by Microsoft. Introduction The Acrobat Database Connectivity (ADBC) plug-in provides some basic JavaScript properties and methods for connecting to a database. These can be used to obtain information about the databases

More information

Controlling Switch Access with Passwords and Privilege Levels

Controlling Switch Access with Passwords and Privilege Levels Controlling Switch Access with Passwords and Privilege Levels Finding Feature Information, page 1 Restrictions for Controlling Switch Access with Passwords and Privileges, page 1 Information About Passwords

More information

CrossCheck Travel (CCT) Ver 3.1 Quick Upgrade Instructions

CrossCheck Travel (CCT) Ver 3.1 Quick Upgrade Instructions CrossCheck Travel (CCT) Ver 3.1 Quick Upgrade Instructions The following steps contain summarized instructions for the installation of the CCT V3.1 Server and Workstation Patches. There are three main

More information

FAQ MONA FAQ-ENG LOGIN RELATED QUESTIONS 2 2. DESKTOP RELATED QUESTIONS 2 3. SOFTWARE RELATED QUESTIONS 5 4. OTHER QUESTIONS 8 1(8)

FAQ MONA FAQ-ENG LOGIN RELATED QUESTIONS 2 2. DESKTOP RELATED QUESTIONS 2 3. SOFTWARE RELATED QUESTIONS 5 4. OTHER QUESTIONS 8 1(8) BV/REG/MONA MONA FAQ-ENG 2016-07-12 1(8) FAQ This document aims to answer frequently asked questions from MONA users in brief and easy terms. If you do not find the answer to your question, please feel

More information

The QMF Family Newsletter 1 st Quarter 2012 Edition

The QMF Family Newsletter 1 st Quarter 2012 Edition The QMF Family Newsletter 1 st Quarter 2012 Edition In this Issue QMF Classic perspective Latest Tip using the ISPF editor with QMF queries and procedures A message from the developers of QMF Want to see

More information

Controlling Switch Access with Passwords and Privilege Levels

Controlling Switch Access with Passwords and Privilege Levels Controlling Switch Access with Passwords and Privilege Levels Finding Feature Information, page 1 Restrictions for Controlling Switch Access with Passwords and Privileges, page 1 Information About Passwords

More information

Webshop Plus! v Pablo Software Solutions DB Technosystems

Webshop Plus! v Pablo Software Solutions DB Technosystems Webshop Plus! v.2.0 2009 Pablo Software Solutions http://www.wysiwygwebbuilder.com 2009 DB Technosystems http://www.dbtechnosystems.com Webshos Plus! V.2. is an evolution of the original webshop script

More information

Administrator s Guide

Administrator s Guide Administrator s Guide 1995 2011 Open Systems Holdings Corp. All rights reserved. No part of this manual may be reproduced by any means without the written permission of Open Systems, Inc. OPEN SYSTEMS

More information

Sage Fixed Assets Reporting. User Guide

Sage Fixed Assets Reporting. User Guide Sage Fixed Assets Reporting User Guide This is a publication of Sage Software, Inc. Copyright 2016 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names

More information

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP Date: 18/04/2013 Procedure: How to disable or Stop Auto CHKDSK During Windows Startup Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 HOW TO DISABLE OR STOP AUTO CHKDSK DURING

More information

4.6.5 Data Sync User Manual.

4.6.5 Data Sync User Manual. 4.6.5 Data Sync User Manual www.badgepass.com Table of Contents Table of Contents... 2 Configuration Utility... 3 System Settings... 4 Profile Setup... 5 Setting up the Source Data... 6 Source Filters...

More information

Administration guide. PRISMAdirect Configuration

Administration guide. PRISMAdirect Configuration Administration guide PRISMAdirect Configuration Copyright 2016, Océ All rights reserved. No part of this work may be reproduced, copied, adapted, or transmitted in any form or by any means without written

More information

Microsoft Office Illustrated Introductory, Building and Using Queries

Microsoft Office Illustrated Introductory, Building and Using Queries Microsoft Office 2007- Illustrated Introductory, Building and Using Queries Creating a Query A query allows you to ask for only the information you want vs. navigating through all the fields and records

More information

USING DIRECT DATABASE DRIVERS

USING DIRECT DATABASE DRIVERS USING DIRECT DATABASE 1 DRIVERS Overview 2 S-PLUS Commands for Importing and Exporting 3 Dialogs for Importing and Exporting 6 Import From Database 6 Export to Database 10 How Direct Data Sources are Stored

More information

P6 Professional Reporting Guide Version 18

P6 Professional Reporting Guide Version 18 P6 Professional Reporting Guide Version 18 August 2018 Contents About the P6 Professional Reporting Guide... 7 Producing Reports and Graphics... 9 Report Basics... 9 Reporting features... 9 Report Wizard...

More information

What is SQL? Toolkit for this guide. Learning SQL Using phpmyadmin

What is SQL? Toolkit for this guide. Learning SQL Using phpmyadmin http://www.php-editors.com/articles/sql_phpmyadmin.php 1 of 8 Members Login User Name: Article: Learning SQL using phpmyadmin Password: Remember Me? register now! Main Menu PHP Tools PHP Help Request PHP

More information

Link Management o View all trackers o Add new tracker o Search/Edit/Delete trackers

Link Management o View all trackers o Add new tracker o Search/Edit/Delete trackers Autoresponder Management o View Statistics o View all autoresponders View messages Edit properties Delete Account Form Codes Broadcast Test Delete Leads o Add new autoresponder o Message Scheduler o Archives

More information

Failover Solutions in WhatsUp Professional 2006

Failover Solutions in WhatsUp Professional 2006 Failover Solutions in WhatsUp Professional 2006 Unlike previous versions of WhatsUp, WhatsUp Professional/Premium 2006 has failover solutions built into the functionality of the base application. While

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 2

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 2 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 2 Contents Renaming a Data Expression... 3 Copying a Data Expression... 3 Deleting a Data Expression... 3 Renaming a Data Connection... 4 Moving

More information

Table Conversion Guide Release 9.2

Table Conversion Guide Release 9.2 [1]JD Edwards EnterpriseOne Tools Table Conversion Guide Release 9.2 E53571-01 October 2015 Describes Oracle's JD Edwards EnterpriseOne Table Conversion tool and how it is used to convert tables and copy

More information

Dynamics ODBC REFERENCE Release 5.5a

Dynamics ODBC REFERENCE Release 5.5a Dynamics ODBC REFERENCE Release 5.5a Copyright Manual copyright 1999 Great Plains Software, Inc. All rights reserved. This document may not, in whole or in any part, be copied, photocopied, reproduced,

More information

Copy Table From One Database To Another Sql

Copy Table From One Database To Another Sql Copy Table From One Database To Another Sql Server 2000 SQL 2000 Copy rows of data from one table to another in the same database "Server: Msg 107, Level 16, State 3, Line 1 The column prefix 'PartsSales'

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

Install Guide DataStax

Install Guide DataStax DataStax ODBC driver for Apache Cassandra and DataStax Enterprise with CQL connector DataStax Version 2.5.7 June 1, 2018 Copyright 2018 Simba Technologies Inc. All Rights Reserved. Information in this

More information

CONTROL-M/Agent for UNIX and Microsoft Windows

CONTROL-M/Agent for UNIX and Microsoft Windows CONTROL-M/Agent for UNIX and Microsoft Windows Windows Administrator Guide Supporting CONTROL-M/Agent for Windows version 6.2.01 September 15, 2005 Contacting BMC Software You can access the BMC Software

More information

Web Services Configuration Guide

Web Services Configuration Guide Web Services Configuration Guide Freezerworks 2017 PO Box 174 Mountlake Terrace, WA 98043 www.freezerworks.com support@freezerworks.com 425-673-1974 877-289-7960 U.S. Toll Free Freezerworks is a registered

More information

Lab Configuring and Verifying Standard IPv4 ACLs Topology

Lab Configuring and Verifying Standard IPv4 ACLs Topology Topology 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 10 Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/1 192.168.10.1

More information

DataSpy. For Microsoft Dynamics. Microsoft Dynamics GP Professional Microsoft Dynamics GP Standard Microsoft Small Business Financials

DataSpy. For Microsoft Dynamics. Microsoft Dynamics GP Professional Microsoft Dynamics GP Standard Microsoft Small Business Financials DataSpy For Microsoft Dynamics Microsoft Dynamics GP Professional Microsoft Dynamics GP Standard Microsoft Small Business Financials Installation, Setup and User Manual Version 9.0 1 2006 AIM Technologies

More information

Microsoft Lync FAQ s 6/25/2012

Microsoft Lync FAQ s 6/25/2012 Microsoft Lync FAQ s 6/25/2012 1. What is Microsoft Lync? Microsoft Lync is an enterprise-ready, unified communications platform. With Lync, users can keep track of their contacts availability; send an

More information

APPENDIX B: INSTALLATION AND SETUP

APPENDIX B: INSTALLATION AND SETUP APPENDIX B: INSTALLATION AND SETUP Page A. Overview... B:1 How do I install and setup ICMS?... B:1 Do I need special security rights to install ICMS?... B:1 Installation Basics... B:1 How do I get a quick

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

User's Guide. Copyright 2005 Express Technology Inc.

User's Guide. Copyright 2005 Express Technology Inc. User's Guide Copyright 2005 Express Technology Inc. I ExpressEmail Server Table of Contents Foreword 0 Part I Introduction 2 Part II Installation 2 Part III Registering 3 Part IV Technical Support 3 Part

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

How To Use My Alternative High

How To Use My Alternative High How To Use My Alternative High Preface Preface I put this together to address the issues and questions that come up all the time in class, especially for newer students. Preface I did this so that I could

More information

Avoiding the Top Meeting Mistakes. Mimi Almeida Jan Hennessey Jackie Klein Vintage Industry Professionals

Avoiding the Top Meeting Mistakes. Mimi Almeida Jan Hennessey Jackie Klein Vintage Industry Professionals Avoiding the Top Meeting Mistakes Mimi Almeida Jan Hennessey Jackie Klein Vintage Industry Professionals Meetings Media Meetings Media offers e-news! CIC Credit Today s Webinar is worth 1 hour of credit

More information

Installing SQL Server Developer Last updated 8/28/2010

Installing SQL Server Developer Last updated 8/28/2010 Installing SQL Server Developer Last updated 8/28/2010 1. Run Setup.Exe to start the setup of SQL Server 2008 Developer 2. On some OS installations (i.e. Windows 7) you will be prompted a reminder to install

More information

CABC Installation Guide Maximizer CRM 11 Team Edition

CABC Installation Guide Maximizer CRM 11 Team Edition CABC Installation Guide Maximizer CRM 11 Team Edition CABC Ltd PO Box 162 Newbury Berkshire RG14 1AS 01635 570970 Document Version: 1.0 Dated: 01/07/2010 Purpose of this Document This document has been

More information

Mandarin Oasis TM Library Automation System

Mandarin Oasis TM Library Automation System Mandarin Oasis TM Library Automation System Daily Use Handbook This handbook explains routine library tasks using Mandarin Oasis. It is designed to supplement Oasis training by providing simple, step-by-step

More information

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2) TRAINING & REFERENCE murach s Oracle SQL and PL/SQL (Chapter 2) works with all versions through 11g Thanks for reviewing this chapter from Murach s Oracle SQL and PL/SQL. To see the expanded table of contents

More information

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August PUBLIC Document Version: August 2018 2018-10-26 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1 Release Highlights....3 1.1 Anonymous access to public communities....4

More information

Print Audit 5 - Step by Step Walkthrough

Print Audit 5 - Step by Step Walkthrough Print Audit 5 - Step by Step Walkthrough IMPORTANT: READ THIS BEFORE PERFORMING A PRINT AUDIT 5 INSTALLATION Print Audit 5 is a desktop application that you must install on every computer where you want

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

OrgPublisher 8.1 PluginX Implementation Guide

OrgPublisher 8.1 PluginX Implementation Guide OrgPublisher 8.1 PluginX Implementation Guide Introduction Table of Contents Introduction... 3 OrgPublisher Architecture Overview... 4 OrgPublisher Architecture Components... 4 Data Source... 5 Org Chart

More information

How To Reset Your Computer To Factory Settings Windows Vista Without Cd

How To Reset Your Computer To Factory Settings Windows Vista Without Cd How To Reset Your Computer To Factory Settings Windows Vista Without Cd This method is the easiest way to restore your computer to factory condition. Video (English Only) - How to reinstall Windows without

More information

11 Using the ADAP Command Line Language

11 Using the ADAP Command Line Language Overview 11-1 Using the ADAP Command Line Language 11 Overview This chapter describes how to use the ADAP command line language. It tells you: How to log into or out of the voice mail system from your

More information

JSN Dona Portfolio User's Guide

JSN Dona Portfolio User's Guide JSN Dona Portfolio User's Guide Getting Started Template Package Installation 1. Download the template installation package Log in JoomlaShine Customer Area to download the template package that you have

More information

Hello everyone! Page 1. Your folder should look like this. To start with Run your XAMPP app and start your Apache and MySQL.

Hello everyone! Page 1. Your folder should look like this. To start with Run your XAMPP app and start your Apache and MySQL. Hello everyone! Welcome to our PHP + MySQL (Easy to learn) E.T.L. free online course Hope you have installed your XAMPP? And you have created your forms inside the studio file in the htdocs folder using

More information

Cobra Navigation Release 2011

Cobra Navigation Release 2011 Cobra Navigation Release 2011 Cobra Navigation - Rev.0.2 Date: November 27 2012 jmaas@flowserve.com Page 1 of 34 Contents Contents 1 Revision History... 5 2 Introduction.... 6 3 Cobra Login... 7 3.1 Initial

More information

HEXDATA DOCUMENTATION

HEXDATA DOCUMENTATION HEXDATA DOCUMENTATION Overview:- HexData is an import/export tool based on Joomla CMS. It provides you a very simple and flexible way to add/update data to your Website. It also allows you to keep a backup

More information

Mysql Tutorial Show Table Like Name Not >>>CLICK HERE<<<

Mysql Tutorial Show Table Like Name Not >>>CLICK HERE<<< Mysql Tutorial Show Table Like Name Not SHOW TABLES LIKE '%shop%' And the command above is not working as Table name and next SHOW CREATE TABLEcommand user889349 Apr 18. If you do not want to see entire

More information

BRILL s Editorial Manager (EM) Manual for Authors Contents

BRILL s Editorial Manager (EM) Manual for Authors Contents BRILL s Editorial Manager (EM) Manual for Authors Contents 1. Introduction... 2 2. Getting Started: Creating an Account... 2 2.1 Creating an Account Using Your ORCID Record... 3 3. Logging into EM... 4

More information

A. Getting Started About e-access Enrolling in e-access: Authenticating your account Login... 5

A. Getting Started About e-access Enrolling in e-access: Authenticating your account Login... 5 Contents A. Getting Started... 3 1. About e-access... 3 2. Enrolling in e-access:... 3 3. Authenticating your account... 5 4. Login... 5 B. Fix a Problem... 6 1. Provided the wrong email address during

More information

Mobile Client. User Manual. Version: 2.0.0

Mobile Client. User Manual. Version: 2.0.0 Mobile Client User Manual Version: 2.0.0 Index Sr. No. Topic Page 1 Requirement 3 2 How to use Mobile Client 4 3 Compose Message 5 4 Select Contacts 6 5 Manage Contacts 17 6 Manage Distribution List 23

More information

InventoryControl Quick Start Guide

InventoryControl Quick Start Guide InventoryControl Quick Start Guide Copyright 2013 Wasp Barcode Technologies 1400 10 th St. Plano, TX 75074 All Rights Reserved STATEMENTS IN THIS DOCUMENT REGARDING THIRD PARTY PRODUCTS OR SERVICES ARE

More information

$ SQL Server 2000 Database Administration. Course Description. Table of Contents. Pricing and Multi-User Licensing

$ SQL Server 2000 Database Administration. Course Description. Table of Contents. Pricing and Multi-User Licensing Course Description This course is a soup-to-nuts course that will teach you how to choose your edition, install, configure and manage any edition of SQL Server 2000. You ll learn the details of security,

More information

Migrating to MIL-Comply SQL Server Edition

Migrating to MIL-Comply SQL Server Edition Migrating to MIL-Comply SQL Server Edition Step by step instructions for migrating MIL-Comply s local database to Microsoft SQL Server or SQL Server Express. Pre-start Checklist: The following items must

More information

SQL Studio (BC) HELP.BCDBADASQL_72. Release 4.6C

SQL Studio (BC) HELP.BCDBADASQL_72. Release 4.6C HELP.BCDBADASQL_72 Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

More information

Enterprise Surveillance Manager. Version Installation Manual

Enterprise Surveillance Manager. Version Installation Manual ipconfigure Enterprise Surveillance Manager. Version 5.4.2 Installation Manual Table of Contents INSTALLATION GUIDE WITH WINDOWS 2008 R2 3 IPCONFIGURE ESM 5.4.2 SOFTWARE INSTALLATION PROCESS 5 IPCONFIGURE

More information

Windows Backup Server Installation

Windows Backup Server Installation Windows Backup Server Installation VEMBU TECHNOLOGIES www.vembu.com TRUSTED BY OVER 60,000 BUSINESSES Windows Backup Server Installation Vembu BDR Server is currently supported for below versions of Windows

More information

VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0. L J Howell UX Software Ver. 1.0

VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0. L J Howell UX Software Ver. 1.0 VISUAL GUIDE to RX Scripting for Roulette Xtreme - System Designer 2.0 L J Howell UX Software 2009 Ver. 1.0 TABLE OF CONTENTS INTRODUCTION...ii What is this book about?... iii How to use this book... iii

More information

NHSP:Online. Flexible Worker User Guide. NHSP:Online. FW Training Manual January 2014 Page 1 of 27

NHSP:Online. Flexible Worker User Guide. NHSP:Online. FW Training Manual January 2014 Page 1 of 27 Flexible Worker User Guide Page 1 of 27 Contents Page Number Contents...2 1. Getting Started...3 2. Available Shifts...7 3. Booking a Shift...8 4. Refusing (Cancelling) Shifts...9 5. Entering Availability...10

More information

Note: - the OS on which you will install VirtualBox is called the host OS. - the OS you will install on VirtualBox (later) is called the guest OS.

Note: - the OS on which you will install VirtualBox is called the host OS. - the OS you will install on VirtualBox (later) is called the guest OS. Get VirtualBox Go to www.virtualbox.org and select Downloads: VirtualBox/CentOS Setup 1 Note: - the OS on which you will install VirtualBox is called the host OS. - the OS you will install on VirtualBox

More information

USER INSTRUCTIONS INSTALLATION. Here is a step by step illustration of the install and how to setup the connection to our FTP folder.

USER INSTRUCTIONS INSTALLATION. Here is a step by step illustration of the install and how to setup the connection to our FTP folder. LAKE TOWNSEND YACHT CLUB FILE TRANSFER PROTOCOL (LTYC-FTP) USER INSTRUCTIONS (February 3, 2012) There is a password protected FTP folder on our website which may be used to share files with others who

More information

Find Your Perfect Plan

Find Your Perfect Plan http://www.cpa Call Us: 800.896.4500 Site Solutions.com/_responsive/images/hero/search-engine-optimization-feature.png Find Your Perfect Plan No setup fee. No hidden fees. Cancel anytime. Service Comparison

More information

CABC Installation Guide Maximizer CRM 12 Entrepreneur Edition

CABC Installation Guide Maximizer CRM 12 Entrepreneur Edition CABC Installation Guide Maximizer CRM 12 Entrepreneur Edition CABC Ltd PO Box 162 Newbury Berkshire RG14 1AS 01635 570970 Document Version: 1.2 Dated: 05/04/2012 Purpose of this Document This document

More information

Adobe Acrobat 6 Standard Review. As with most applications, Adobe Acrobat contains a HELP and a HOW TO section.

Adobe Acrobat 6 Standard Review. As with most applications, Adobe Acrobat contains a HELP and a HOW TO section. Adobe Acrobat 6 Standard Review Adobe Acrobat 6 is the universal, number one application for document file sharing of information, be it text and/or graphics. This application enables Windows and Mac users

More information

[NALENND WIRELESS BLOCK IDENTIFIER SOFTWARE USER S GUIDE] NALENND data scrubber utility reference manual. Quentin Sager Consulting, Inc.

[NALENND WIRELESS BLOCK IDENTIFIER SOFTWARE USER S GUIDE] NALENND data scrubber utility reference manual. Quentin Sager Consulting, Inc. Quentin Sager Consulting, Inc. [NALENND WIRELESS BLOCK IDENTIFIER SOFTWARE USER S GUIDE] NALENND data scrubber utility reference manual NALENND is a trademark of Quentin Sager Consulting, Inc. NALENND

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

Drop Users Syntax In Sql Server 2000 Orphaned

Drop Users Syntax In Sql Server 2000 Orphaned Drop Users Syntax In Sql Server 2000 Orphaned Applies To: SQL Server 2014, SQL Server 2016 Preview Syntax Before dropping a database user that owns securables, you must first drop or transfer. To access

More information

Access Objects. Tables Queries Forms Reports Relationships

Access Objects. Tables Queries Forms Reports Relationships Access Review Access Objects Tables Queries Forms Reports Relationships How Access Saves a Database The Save button in Access differs from the Save button in other Windows programs such as Word and Excel.

More information

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co.

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. PL17257 JavaScript and PLM: Empowering the User Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. Learning Objectives Using items and setting data in a Workspace Setting Data in Related Workspaces

More information

MySQL for Windows. Tak Auyeung. September 7, 2003

MySQL for Windows. Tak Auyeung. September 7, 2003 MySQL for Windows Tak Auyeung September 7, 2003 1 Getting it Go to http://www.mysql.com for general information. To make your life easier, you can get most of the files on a CD (so you can install it easily

More information

Teach Yourself InterBase

Teach Yourself InterBase Teach Yourself InterBase This tutorial takes you step-by-step through the process of creating and using a database using the InterBase Windows ISQL dialog. You learn to create data structures that enforce

More information

AOMEI Backupper Network Beta Quick Start Guide

AOMEI Backupper Network Beta Quick Start Guide AOMEI Backupper Network Beta Overview AOMEI Backupper Network Beta is a solution to create and manage backups for your client computers within same LAN from server side. To back up for multiple client

More information

Replication. Version

Replication. Version Replication Version 2018.3 Contents Before you start... 3 Principles... 4 Prerequisites... 5 Initial Steps... 6 Post Setup... 7 Supported Operating Systems... 7 Perform the Setup... 8 Read Committed Snapshot

More information

Three types of sub queries are supported in SQL are Scalar, Row and Table sub queries.

Three types of sub queries are supported in SQL are Scalar, Row and Table sub queries. SQL Sub-Queries What are Sub queries? SQL Sub queries are the queries which are embedded inside another query. The embedded queries are called as INNER query & container query is called as OUTER query.

More information