Upgrading to Advantage Database Server 9.1 Get the Advantage

Size: px
Start display at page:

Download "Upgrading to Advantage Database Server 9.1 Get the Advantage"

Transcription

1 Upgrading to Advantage Database Server 9.1 Get the Advantage Product Datasheet Advantage Database Server 9.1 offers many benefits over 8.1 including performance enhancements and functionality that can help your application perform better, make development easier, open new doors for your application, and reach new heights in satisfying your customers. Performance, Performance, Performance Nothing is more exciting than knowing your customer is getting the information they need at lightning fast speeds. With your application providing the business domain functionality, Advantage provides the speed. With Advantage 9.1 we have increased performance once again. Here s how: Improved Transaction Performance Advantage 9.1 provides improved performance in situations involving larger transactions (transactions involving thousands of updates). In particular, if multiple SQL statements are run during the transaction, filtering and processing of updated records can be significantly faster. Enhanced Reindex Reindex performance has been enhanced. In the past the table was scanned once as each index was created. In Advantage 9.1, all indexes are created based on a single scan of the table data, resulting in increased performance, most notably on larger tables. SQL Engine and AOF Performance Enhancements The server will now attempt to optimize multi-segmented AOFs connected with the logical AND operator by evaluating the most restricted segment first. When the evaluation of the more restrictive segments results in only a few rows passing the filter, the server will shortcircuit the index scan of the less restrictive segments, avoiding the cost of scanning many index pages. This optimization is most useful when the filter is applied to a very large table (>1,000,000 rows) and when one or more conditions are significantly more restrictive than the others. Since AOFs are used extensively by the SQL engine, this optimization will provide a positive impact on the performance of certain SQL statements. 64bit Windows and Linux Servers In order to further enhance scalability, support for the x86_64 architecture was added to the Advantage Database Servers for Windows and Linux. On computers with an x86_64 processor and a 64 bit Operating System the Advantage Database Server will now be able to use memory in excess of 4GB. The extra memory will allow more users to access the server concurrently and increase the amount of information the server can cache when processing queries. Check out the Appendix for detailed comparison data on 64 bit performance.

2 New Features and Functionality These enhancements and improvements allow your application to grow with the changing needs and demands of your customers. With these added features, utilities, and functionality, Advantage continues to provide a feature rich product for business application development while maintaining true to some of the fundamental values you have grown accustom to including high performance, scalability, quality, low administration, small foot print, and simple architecture. SQL Debugger A fully functional SQL debugger is integrated into the Advantage Data Architect (ARC) SQL Utility. The debugger can be used to set breakpoints, step through scripts line by line, view variable data, call stack information, and other useful debugging information. The debugger can be used to find problems in existing SQL scripts, and can be helpful when writing and testing new scripts. The SQL debugger provides the following functionality: Line breakpoints Line-by-line statement execution Object breakpoints (breakpoints in stored procedures, triggers, functions, etc.) Variable inspection Call stack inspection Debug connections made by external applications (applications other than ARC) Break into script execution at any point. Useful for finding infinite loops or portions of a script that are consuming too much time. Persist changes made to database objects (stored procedures, triggers, etc) back to the database by simply choosing to save the editor buffer. Dynamic Server Configuration Advantage is no longer limited to the initially configured number of connections, tables, indexes, work areas, and locks. If all the available resources are in use, Advantage will allocate more resources, as opposed to returning an error as it has in the past. The configuration values are no longer maximum values, but used as initial allocation values. This can be convenient if the majority of your installations never need more resources than originally configured, but a few outliers often exceed your initial configuration values. Instead of returning errors, Advantage will automatically adjust to handle the new requirements. Notifications Notifications are a mechanism that allows an action at the server to proactively notify clients that an event they are interested in has occurred. For example, an event can be signaled by a trigger on a table. When the trigger is executed all connections waiting on the event will be notified. Clients use the system procedure sp_createevent to register for event notifications. Once registered, the client can call sp_waitforevent or sp_waitforanyevent to efficiently wait for the event to be signaled. Events are signaled using the sp_signalevent procedure. Replication Enhancements A new pause property has been added to replication subscriptions. This new property can be used to pause replication processing on a specific subscription. New merge functionality has been added. By enabling the MERGE UPDATE article option, if a record being updated is not found at the target, it is then inserted instead of returning an error. Likewise with the MERGE INSERT article option enabled, if a record being inserted already exists at the target, it will be updated rather than returning an error.

3 Support for the SQL MERGE Statement The MERGE statement attempts to match each record of one table with one or more records of another table. For each matching record found in the first table, an UPDATE on the record is performed using the UPDATE specification. If no matching record is found, an INSERT into the first table is performed using the INSERT specification. If the UPDATE specification is not defined, no action will be taken when a match occurs. Likewise if the INSERT specification is not defined, no action will be taken when no matches occur. New SQL RDD for Visual Objects The VO AXSQL RDDs (AXSQLADT, AXSQLCDX, AXSQLNTX) are now fully supported. These new drivers provide a native way to utilize the Advantage SQL Engine using the existing VO RDD architecture. Previously these drivers were released only as prototypes. Support for VarChar and VarBinary Field Types Support has been added for two new field types for storing variable length data in Advantage ADT tables. These new VarChar and VarBinary fields are created with a maximum length that can be up to 64,000 bytes. These fields are similar in usage to the existing Char and Raw field types except that when the data is retrieved from the field it is not space or zero padded (unless the data was specifically stored with spaces or zeros on the end). Data for these field types is stored entirely in the table and does not result in memo file usage. Miscellaneous SQL Engine Changes Named and unnamed parameters are now supported in all script statements, except when they are in the cursor definition or in the text of an EXECUTE IMMEDIATE statement. Added support for the ALTER PROCEDURE and ALTER TRIGGER statements New Default User Groups The Data dictionary now has predefined roles for administrators (DB:Admin), backup users (DB:Backup), and SQL debuggers (DB:Debug). These user groups have predefined access permissions that allow the users in the group to perform the specified functionality. In addition, the Data dictionary now has a predefined role (DB:Public) that includes all users in the database. This predefined role makes it possible to grant permissions on specific database objects to all users in the database. Support for Field and Record Constraints to DBF Tables Previously only available on ADT tables, field and record level constraints are now available for use on DBF tables that are part of a data dictionary. Constraints include, but are not limited to: default field values, minimum field values, maximum field values, etc. Binary Concatenation Operator Supported in DBF Tables Support for the binary concatenation operator (specified with the semicolon character) has been added to the DBF table format and can be used when you open DBF/CDX tables with the new ADS_VFP table type. This provides an efficient mechanism for combining different field types in a single index without the use of conversion functions as well as the ability to avoid having completely NULL keys when one field in an index expression is NULL. Note that if you use this operator, the resulting index will not be compatible with Visual FoxPro. Variable Length Key Expressions Supported The ability to specify index expressions that may result in variable length data is now supported. For example, if you use the TRIM() function in index expressions without having to use other functions to pad the result to a fixed length.

4 Enhanced Backup and Restore Functionality Advantage Online Backup functionality will now include DLLs for Advantage Extended Procedures (AEP s) and Triggers in the backup image, and restore them when performing a restore operation. Ability to Flip Index Descend Flag at Runtime The AdsSetIndexDirection API can be used to change the value of the descend flag, so a single index can be used to traverse data in either direction. AdsSkipUnique API The AdsSkipUnique API will allow emulation of the SQL DISTINCT operator when operating at the table/ navigational level. Each skip moves to the next unique record value in the specified index. Support to current technologies including Advantage now supports: Embarcadaro RAD Studio 2007, 2009, and Prism Crystal Reports v11 R2 and Crystal Reports 2008 Visual FoxPro v9 For a complete and current listing of supported IDEs and platforms click here. Enhanced FoxPro Support Advantage support for FoxPro DBF tables and CDX/IDX index files has been enhanced to include all data types supported by Visual FoxPro 9. This includes support for Auto-increment, BLOB (Binary Large Objects), Currency, DateTime (timestamp), VarBinary, and VarChar field types. Null field support has also been added to give true SQL-style NULL handling for Visual FoxPro DBF tables. Support for true unique (candidate) indexes is now also available on DBF tables; this allows for better SQL optimization, the definition of primary keys, and the creation of referential integrity rules. Additionally, support for long field names with DBF tables has been added. In addition to supporting the robust and high-performance Advantage proprietary locking on the new table format, Advantage also supports Visual FoxPro compatibility locking, which allows you to use Advantage-enabled applications to share tables with existing Visual FoxPro applications that are not using Advantage. Support for Visual FoxPro-Compatible Collation Tables Support has been added for Visual FoxPro-compatible collations for code pages 437, 620, 737, 850, 852, 857, 861, 865, 866, 895, 1250, 1251, 1252, 1253, and This includes the Visual FoxPro collations CZECH, DUTCH, GENERAL, GERMAN, GREEK, HUNGARY, ICELAND, MACHINE, NORDAN, POLISH, RUSSIAN, SLOVAK, SPANISH, SWEFIN, TURKISH, and UNIQWT. These collations can be used with Visual FoxPro tables and Advantage ADT tables. One benefit of these tables is that they provide the ability to give case-sensitive query and filter capabilities to normal character fields. In addition, they provide for better sorting characteristics when using characters with diacritics. They also provide support for expansion and contraction characters. For example, when using one of the Spanish collations, the character pairs "ch" and "ll" are handled and sorted as a single collation element. These collations are dynamically loaded on demand and do not have to be stamped into the server. 4

5 Utilities that make development easier. Quality utilities make development faster, easier, more convenient and more enjoyable. Advantage Database Server 9 sports new utilities and improvements to utilities you have grown familiar with. These combine to make working with Advantage easier and more enjoyable than ever. Advantage Data Architect (ARC) Enhancements The SQL Utility has been modified to include a visual SQL debugger. The debugger allows developers to step lineby-line through SQL scripts, stored procedures, triggers and user defined functions. Users can set breakpoints, inspect variables, inspect the call stack, etc. The SQL Utility now uses a multi-tabbed editor, allowing multiple documents to be opened at once. All windows in the SQL Utility are now dockable. Keyboard shortcuts in the SQL Utility can be modified via the SQL options dialog. Added find and replace functionality to the SQL Utility. TDataSet Descendant Version Management Utility The TDataSet Switch utility allows developers to maintain multiple projects on a single PC, even if each project uses a different version of the Advantage TDataSet Descendant. The utility provides an automated mechanism which modifies the version of the Advantage TDataSet Descendant that the IDE uses, in addition to updating the Advantage Client Engine DLLs in the path. The utility is installed with the Advantage TDataSet Descendant (Delphi 3 through 7) and the Advantage Data Access Components (Delphi 2006 and newer). The TDataSet_Switch.exe program is installed in the Switch subdirectory of the Advantage TDataSet Descendant Visual FoxPro Upsizing Utility To complement the enhanced support for Visual FoxPro tables, this release includes an upsizing utility that aids in updating your application to use your existing Visual FoxPro tables with Advantage Database Server. It is not necessary to update your tables or indexes to allow them to be used with Advantage Database Server. However, the upsizing utility will export much of the information in your Visual FoxPro Database Container (.DBC) to an Advantage Data Dictionary (.add) to allow support for features such as long field names, primary keys, referential integrity, and triggers. This utility, written as a Visual FoxPro application that you can modify, currently has the ability to export view definitions, referential integrity rules, default field values, field and table validation rules, and primary keys. In Conclusion Advantage Database Server 9 makes development fun again. With its lightening fast speed, new features and functionality and utilities to make your life easier the choice is clear. Upgrading to Advantage 9.1 may just be the smartest business decision you make all year. 5

6 APPENDIX How does ADS 32-bit performance compare to 64-bit? 1 We ran a few tests in our lab to compare the performance differences between the ADS 32-bit and ADS 64-bit Servers. The results were significant and using the 64-bit server could noticeably boost the performance of your application. Test 1 We ran the following query on a quad core 64-bit Windows 2003 x64 server against a total table and index size that exceeded 1GB. SELECT * FROM test WHERE f1 = 0 AND f2 = 0 AND f3 = 0 AND f4 = 0 AND f5 = 1 AND ID1 IN (7,16,17,18,19,20,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45, 46,47,48, 49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75, 76,77,78,79, 80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104, 105,106,107,108,110,111,112,113,114,115,116!,118,119,120,121,122,123,125,127,128,129,130,131, 132,133,134,136,137,138,140,141,142,144,145!,146,147,395,413,415,429,430,431) AND ID2 IN (2,3,4,6,37,38,39,40,41,43) AND limit = ORDER BY ID1, ID2 Resulting times: 32-bit ADS: 7.5 seconds. 64-bit ADS: 4.1 seconds. (56% faster) Test 2 We ran some TPCC tests on the same quad core 64-bit Windows 2003 x64 server. The test included 25 payment clients and 25 order clients. Order clients: 32-bit ADS: 1483 iterations 64-bit ADS: 1954 iterations (32% faster) Contact Us: North America Advantageinfo@Sybase.com Germany ADS-team@Sybase.com +49 (0) 7032 / United Kingdom AdvantageUK@Sybase.com +44 (0) Payment clients: 32-bit ADS: iterations 64-bit ADS: iterations (18% faster) Our tests published above certainly can not accurately predict any performance gains you might see in your application. Many factors contribute to increased application performance. However, the results do show that a substantial performance gain may be achieved by switching to the 64-bit Server and technology. 1 Advantage 64-bit Server Version or newer is required ianywhere SOLUTIONS, INC. WORLDWIDE HEADQUARTERS ONE SYBASE DRIVE DUBLIN, CA U.S.A. Copyright 2009 Sybase, Inc. All rights reserved. Unpublished rights reserved under U.S. copyright laws. Sybase, the Sybase logo, and Advantage Database Server are trademarks of Sybase, Inc. or its subsidiaries. All other trademarks are the property of their respective owners. indicates registration in the United States. Specifications are subject to change without notice. 06/09 L03212

What s New in Advantage Database Server 10

What s New in Advantage Database Server 10 What s New in Advantage Database Server 10 WHITE PAPER www.sybase.com/advantage Contents: Introduction... 1 Data Handling... 1 Unicode Support... 1 Nested Transactions... 1 Transaction Free Tables...

More information

Advantage. Advantage. Database Server 8.0

Advantage. Advantage. Database Server 8.0 Database Server 8.0 is a complete, high performance client/server data management solution for stand-alone, networked, Internet, and mobile database applications. allows application developers the flexibility

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

DBArtisan New Features Guide

DBArtisan New Features Guide Product Documentation DBArtisan New Features Guide Version 8.7 Corporate Headquarters EMEA Headquarters Asia-Pacific Headquarters 100 California Street, 12th Floor San Francisco, California 94111 York

More information

CROSS PLATFORM DUMP AND LOAD FOR

CROSS PLATFORM DUMP AND LOAD FOR CROSS PLATFORM DUMP AND LOAD FOR 12.5.3 TECHNICAL WHITE PAPER TABLE OF CONTENTS OVERVIEW 3 BACKGROUND 3 SUMMARY OF COMPATIBILITIES 3 USING DUMP AND LOAD IN A CROSS-PLATFORM ENVIRONMENT 4 MAKING THE ASE

More information

MySQL 5.0 Certification Study Guide

MySQL 5.0 Certification Study Guide MySQL 5.0 Certification Study Guide Paul DuBois, Stefan Hinz, and Carsten Pedersen MySQC Press 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 About This Book 1 Sample

More information

Creating Enterprise and WorkGroup Applications with 4D ODBC

Creating Enterprise and WorkGroup Applications with 4D ODBC Creating Enterprise and WorkGroup Applications with 4D ODBC Page 1 EXECUTIVE SUMMARY 4D ODBC is an application development tool specifically designed to address the unique requirements of the client/server

More information

New Features Guide Sybase ETL 4.9

New Features Guide Sybase ETL 4.9 New Features Guide Sybase ETL 4.9 Document ID: DC00787-01-0490-01 Last revised: September 2009 This guide describes the new features in Sybase ETL 4.9. Topic Page Using ETL with Sybase Replication Server

More information

IBM. Database Database overview. IBM i 7.1

IBM. Database Database overview. IBM i 7.1 IBM IBM i Database Database overview 7.1 IBM IBM i Database Database overview 7.1 Note Before using this information and the product it supports, read the information in Notices, on page 39. This edition

More information

Localizing Intellicus. Version: 7.3

Localizing Intellicus. Version: 7.3 Localizing Intellicus Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Jet Data Manager 2014 SR2 Product Enhancements

Jet Data Manager 2014 SR2 Product Enhancements Jet Data Manager 2014 SR2 Product Enhancements Table of Contents Overview of New Features... 3 New Features in Jet Data Manager 2014 SR2... 3 Improved Features in Jet Data Manager 2014 SR2... 5 New Features

More information

Perceptive Content Language Pack

Perceptive Content Language Pack Perceptive Content Language Pack Advanced Design and Setup Guide Version: 7.2.x Written by: Product Knowledge, R&D Date: April 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark

More information

Rapid SQL XE and Rapid SQL New Features Guide

Rapid SQL XE and Rapid SQL New Features Guide Product Documentation Rapid SQL XE and Rapid SQL 7.7.2 New Features Guide Corporate Headquarters EMEA Headquarters Asia-Pacific Headquarters 100 California Street, 12th Floor San Francisco, California

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

Database Database administration

Database Database administration System i Database Database administration Version 6 Release 1 System i Database Database administration Version 6 Release 1 Note Before using this information and the product it supports, read the information

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Delphi XE. Delphi XE Datasheet

Delphi XE. Delphi XE Datasheet Delphi XE Datasheet DATASHEET Delphi XE Embarcadero Delphi XE is the fastest way to deliver ultrarich, ultra-fast Windows applications. Used by millions of developers, Delphi combines a leading-edge object-oriented

More information

DBArtisan 8.6 New Features Guide. Published: January 13, 2009

DBArtisan 8.6 New Features Guide. Published: January 13, 2009 Published: January 13, 2009 Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. This is a preliminary document and may be changed substantially prior to final

More information

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager,

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager, Empowering DBA's with IBM Data Studio Deb Jenson, Data Studio Product Manager, dejenson@us.ibm.com Disclaimer Copyright IBM Corporation [current year]. All rights reserved. U.S. Government Users Restricted

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

DocAve 6 Software Platform Service Pack 1

DocAve 6 Software Platform Service Pack 1 DocAve 6 Software Platform Service Pack 1 Release Notes For Microsoft SharePoint Release Date: September 25, 2012 1 New Features and Improvements General The new Plan Groups feature helps organize and

More information

Sage DacEasy. Getting Started Guide

Sage DacEasy. Getting Started Guide Sage DacEasy Getting Started Guide Sage DacEasy Getting Started Copyright Trademarks Information in this document is subject to change without notice. Company names and data used in examples herein are

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

MarkLogic Server. Database Replication Guide. MarkLogic 6 September, Copyright 2012 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Database Replication Guide. MarkLogic 6 September, Copyright 2012 MarkLogic Corporation. All rights reserved. Database Replication Guide 1 MarkLogic 6 September, 2012 Last Revised: 6.0-1, September, 2012 Copyright 2012 MarkLogic Corporation. All rights reserved. Database Replication Guide 1.0 Database Replication

More information

Your second Free Issue from Sybase

Your second Free Issue from Sybase Your second Free Issue from Sybase Dear FoxPro Developer, Dear FoxRockX Subscriber, Sybase ianywhere s Advantage Database Server is the only product today which is actively en hancing how developers can

More information

MarkLogic Server. Database Replication Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Database Replication Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Database Replication Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-3, September, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Database Replication

More information

CA-Clipper RDDs Advantage Database Server

CA-Clipper RDDs Advantage Database Server CA-Clipper RDDs Advantage Database Server data sheet The Advantage CA-Clipper RDDs provide a seamless interface to the Advantage Database Server. With a simple application re-link, the Advantage solution

More information

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation I ACTIVANT ACTIVANT PROPHET 21 Prophet 21 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) New Features Guide Version 11.0 Version 11.5 Pre-Release Documentation This manual contains reference information

More information

IBM i Version 7.2. Database Database overview IBM

IBM i Version 7.2. Database Database overview IBM IBM i Version 7.2 Database Database overview IBM IBM i Version 7.2 Database Database overview IBM Note Before using this information and the product it supports, read the information in Notices on page

More information

9. Introduction to MS Access

9. Introduction to MS Access 9. Introduction to MS Access 9.1 What is MS Access? Essentially, MS Access is a database management system (DBMS). Like other products in this category, Access: o Stores and retrieves data, o Presents

More information

Arcserve Backup for Windows

Arcserve Backup for Windows Arcserve Backup for Windows Agent for Sybase Guide r17.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

ORACLE DATABASE 12C INTRODUCTION

ORACLE DATABASE 12C INTRODUCTION SECTOR / IT NON-TECHNICAL & CERTIFIED TRAINING COURSE In this training course, you gain the skills to unleash the power and flexibility of Oracle Database 12c, while gaining a solid foundation of database

More information

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY VERSION 2015.1 JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY TEST STUDIO QUICK-START GUIDE CONTENTS Create your First Test.2 Standalone Web

More information

ImageNow Language Pack

ImageNow Language Pack ImageNow Language Pack Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2012 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Firebird in 2011/2012: Development Review

Firebird in 2011/2012: Development Review Firebird in 2011/2012: Development Review Dmitry Yemanov mailto:dimitr@firebirdsql.org Firebird Project http://www.firebirdsql.org/ Packages Released in 2011 Firebird 2.1.4 March 2011 96 bugs fixed 4 improvements,

More information

Interface Reference topics

Interface Reference topics McAfee Content Security Reporter 2.6.x Interface Reference Guide Interface Reference topics Edit Permission Set page (Permission Sets page) Specify Content Security Reporter permissions and grant user

More information

Perceptive Intelligent Capture Project Migration Tool. User Guide. Version: 2.0.x

Perceptive Intelligent Capture Project Migration Tool. User Guide. Version: 2.0.x Perceptive Intelligent Capture Project Migration Tool User Guide Version: 2.0.x Written by: Product Knowledge, R&D Date: May 2015 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Creating databases using SQL Server Management Studio Express

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

More information

SAS Scalable Performance Data Server 4.3

SAS Scalable Performance Data Server 4.3 Scalability Solution for SAS Dynamic Cluster Tables A SAS White Paper Table of Contents Introduction...1 Cluster Tables... 1 Dynamic Cluster Table Loading Benefits... 2 Commands for Creating and Undoing

More information

Oral Questions and Answers (DBMS LAB) Questions & Answers- DBMS

Oral Questions and Answers (DBMS LAB) Questions & Answers- DBMS Questions & Answers- DBMS https://career.guru99.com/top-50-database-interview-questions/ 1) Define Database. A prearranged collection of figures known as data is called database. 2) What is DBMS? Database

More information

InfoPower for FireMonkey 2.5

InfoPower for FireMonkey 2.5 InfoPower for FireMonkey 2.5 InfoPower FireMonkey 2.5 Page 1 Woll2Woll Software Feb 20th, 2014 http://www.woll2woll.com Version 2.5 Our exciting InfoPower FireMonkey 2 (FMX) component suite allows you

More information

Oracle SQL Developer TimesTen In-Memory Database Support

Oracle SQL Developer TimesTen In-Memory Database Support Oracle SQL Developer TimesTen In-Memory Database Support Release Notes Release 2.1 E15859-03 March 2010 This document provides late-breaking information as well as information that is not yet part of the

More information

The tracing tool in SQL-Hero tries to deal with the following weaknesses found in the out-of-the-box SQL Profiler tool:

The tracing tool in SQL-Hero tries to deal with the following weaknesses found in the out-of-the-box SQL Profiler tool: Revision Description 7/21/2010 Original SQL-Hero Tracing Introduction Let s start by asking why you might want to do SQL tracing in the first place. As it turns out, this can be an extremely useful activity

More information

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs Module Title Duration : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs : 4 days Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize

More information

Rapid Recovery DocRetriever for SharePoint User Guide

Rapid Recovery DocRetriever for SharePoint User Guide Rapid Recovery 6.1.3 Table of Contents Introduction to DocRetriever for SharePoint... 6 Using this documentation... 6 About DocRetriever for SharePoint...7 DocRetriever, AppAssure, and Rapid Recovery compatibility...

More information

Episerver CMS. Editor User Guide

Episerver CMS. Editor User Guide Episerver CMS Editor User Guide Episerver CMS Editor User Guide 18-2 Release date 2018-03-19 Table of Contents 3 Table of contents Table of contents 3 Introduction 8 Features, licenses and releases 8 Copyright

More information

DiskSavvy Disk Space Analyzer. DiskSavvy DISK SPACE ANALYZER. User Manual. Version Dec Flexense Ltd.

DiskSavvy Disk Space Analyzer. DiskSavvy DISK SPACE ANALYZER. User Manual. Version Dec Flexense Ltd. DiskSavvy DISK SPACE ANALYZER User Manual Version 10.3 Dec 2017 www.disksavvy.com info@flexense.com 1 1 Product Overview...3 2 Product Versions...7 3 Using Desktop Versions...8 3.1 Product Installation

More information

DBArtisan XE Pro and DBArtisan Evaluation Guide

DBArtisan XE Pro and DBArtisan Evaluation Guide Product Documentation DBArtisan XE Pro and DBArtisan 8.7.3 Evaluation Guide Version 8.7.3 Corporate Headquarters EMEA Headquarters Asia-Pacific Headquarters 100 California Street, 12th Floor San Francisco,

More information

Embarcadero DBArtisan XE Product Review Guide

Embarcadero DBArtisan XE Product Review Guide Embarcadero DBArtisan XE Product Review Guide May 2010 Americas Headquarters EMEA Headquarters Asia-Pacific Headquarters 100 California Street, 12th Floor San Francisco, California 94111 York House 18

More information

Episerver CMS. Editor User Guide

Episerver CMS. Editor User Guide Episerver CMS Editor User Guide Episerver CMS Editor User Guide 17-2 Release date 2017-03-13 Table of Contents 3 Table of contents Table of contents 3 Introduction 11 Features, licenses and releases 11

More information

Rapid SQL XE and Rapid SQL Evaluation Guide

Rapid SQL XE and Rapid SQL Evaluation Guide Product Documentation Rapid SQL XE and Rapid SQL 7.7.2 Evaluation Guide Corporate Headquarters EMEA Headquarters Asia-Pacific Headquarters 100 California Street, 12th Floor San Francisco, California 94111

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Advantage Crystal Reports Driver What is the Advantage Crystal Reports What versions of Crystal Reports are supported? What file formats are supported by the Advantage Crystal

More information

VERINT EFM 8.0 Release Overview

VERINT EFM 8.0 Release Overview VERINT EFM 8.0 Release Overview In January of 2015 Verint will release version 8.0 of the Enterprise Feedback Management (EFM) solution. Verint hosted SaaS customers will receive this update as part of

More information

Ovation Process Historian

Ovation Process Historian Ovation Process Historian Features Designed to meet the needs of precision, performance, scalability and historical data management for the Ovation control system Collects historical data of Ovation process

More information

MOBILEDATABASE USER GUIDE PRODUCT VERSION: 1.0

MOBILEDATABASE USER GUIDE PRODUCT VERSION: 1.0 MOBILEDATABASE USER GUIDE PRODUCT VERSION: 1.0. CONTENTS User Guide 1 INTRODUCTION...3 2 INSTALLATION...4 2.1 DESKTOP INSTALLATION...4 2.2 IPHONE INSTALLATION:...8 3 USING THE MOBILEDATABASE ON THE DESKTOP...10

More information

MET/TEAM README

MET/TEAM README MET/TEAM 2.2.0 README This document includes a list of modifications to MET/TEAM 2.2.0 relative to version 2.1.2. If you are updating from a previous version of MET/TEAM, you must first run the Database

More information

QuickStart Guide 2 - Normalisation

QuickStart Guide 2 - Normalisation QuickStart Guide 2 - Normalisation Document Version: v1.5 Product Version: v3.13 Date: 16 th November 2018 This document provides an overview and Step-by-Step implementation instructions for the clearmdm

More information

MOBILE DATABASE VIEWER PLUS USER GUIDE

MOBILE DATABASE VIEWER PLUS USER GUIDE MOBILE DATABASE VIEWER PLUS USER GUIDE PRODUCT VERSION: 4.0 Mobile Database Viewer Plus Page 1 CONTENTS 1 INTRODUCTION...5 1.1 FEATURES...5 2 INSTALLATION...6 2.1 DESKTOP INSTALLATION...6 2.2 DEVICE INSTALLATION...6

More information

QTD and Supporting Files Installation Instructions

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

More information

MySQL for Visual Studio

MySQL for Visual Studio MySQL for Visual Studio Abstract This is the MySQL for Visual Studio Reference Manual. It documents the MySQL for Visual Studio through 1.2.8. For notes detailing the changes in each release, see the MySQL

More information

FirePower 4.1. Woll2Woll Software Nov 3rd, Version 4.1 Supporting RAD Studio versions: XE7. FirePower 4.

FirePower 4.1. Woll2Woll Software Nov 3rd, Version 4.1 Supporting RAD Studio versions: XE7. FirePower 4. FirePower 4.1 FirePower 4.1 Page 1 Woll2Woll Software Nov 3rd, 2014 http://www.woll2woll.com Version 4.1 Supporting RAD Studio versions: XE7 Whats new in FirePower 4.1 vs 4.0 This updates redesigns the

More information

HYPERION SYSTEM 9 MASTER DATA MANAGEMENT SERVICES NEW FEATURES

HYPERION SYSTEM 9 MASTER DATA MANAGEMENT SERVICES NEW FEATURES HYPERION SYSTEM 9 MASTER DATA MANAGEMENT SERVICES RELEASE 9.2 NEW FEATURES Overview.................................................................... 2 Ntier Architecture.............................................................

More information

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015

MySQL Database Administrator Training NIIT, Gurgaon India 31 August-10 September 2015 MySQL Database Administrator Training Day 1: AGENDA Introduction to MySQL MySQL Overview MySQL Database Server Editions MySQL Products MySQL Services and Support MySQL Resources Example Databases MySQL

More information

NetBackup Copilot for Oracle Configuration Guide. Release 2.7.1

NetBackup Copilot for Oracle Configuration Guide. Release 2.7.1 NetBackup Copilot for Oracle Configuration Guide Release 2.7.1 NetBackup Copilot for Oracle Configuration Guide Documentation version: 2.7.1 Legal Notice Copyright 2015 Symantec Corporation. All rights

More information

Product Release Notes Alderstone cmt 2.0

Product Release Notes Alderstone cmt 2.0 Alderstone cmt product release notes Product Release Notes Alderstone cmt 2.0 Alderstone Consulting is a technology company headquartered in the UK and established in 2008. A BMC Technology Alliance Premier

More information

Oracle Hyperion Profitability and Cost Management

Oracle Hyperion Profitability and Cost Management Oracle Hyperion Profitability and Cost Management Configuration Guidelines for Detailed Profitability Applications November 2015 Contents About these Guidelines... 1 Setup and Configuration Guidelines...

More information

Sage Estimating (SQL) v18.11

Sage Estimating (SQL) v18.11 Sage Estimating (SQL) v18.11 Release Notes July 2018 This is a publication of Sage Software, Inc. 2018 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service

More information

August 6, Oracle APEX Statement of Direction

August 6, Oracle APEX Statement of Direction AUGUST 6, 2018 DISCLAIMER The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

QuickStart Guide 2 - Normalisation

QuickStart Guide 2 - Normalisation QuickStart Guide 2 - Normalisation Document Version: v1.4 Product Version: v2.26 Date: 14 th April 2018 This document provides an overview and Step-by-Step implementation instructions for the clearmdm

More information

customization tools!

customization tools! DATASHEET FileMaker PRO 10 ADVANCED for Central Europe, Middle East and India Advanced development and customization tools! FileMaker Pro 10 Advanced includes all the features of FileMaker Pro 10 plus

More information

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Documentation version: 2.7.2 Legal Notice Copyright 2016 Veritas Technologies

More information

InfoPower for FireMonkey 3.0

InfoPower for FireMonkey 3.0 InfoPower for FireMonkey 3.0 InfoPower FireMonkey 3.0 Page 1 Woll2Woll Software April 28th, 2014 http://www.woll2woll.com Version 3.0 Supported RAD Studio versions: XE5 AND XE6 (Currently only XE6) Our

More information

IBM DB2 UDB V7.1 Family Fundamentals.

IBM DB2 UDB V7.1 Family Fundamentals. IBM 000-512 DB2 UDB V7.1 Family Fundamentals http://killexams.com/exam-detail/000-512 Answer: E QUESTION: 98 Given the following: A table containing a list of all seats on an airplane. A seat consists

More information

12/05/2017. Geneva ServiceNow Custom Application Development

12/05/2017. Geneva ServiceNow Custom Application Development 12/05/2017 Contents...3 Applications...3 Creating applications... 3 Parts of an application...22 Contextual development environment... 48 Application management... 56 Studio... 64 Service Creator...87

More information

erwin Data Modeler Editing Forward Engineering Templates Release 9.7

erwin Data Modeler Editing Forward Engineering Templates Release 9.7 erwin Data Modeler Editing Forward Engineering Templates Release 9.7 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

WIRELESS DATABASE VIEWER PLUS FOR IPHONE: USER GUIDE PRODUCT VERSION: 1.0

WIRELESS DATABASE VIEWER PLUS FOR IPHONE: USER GUIDE PRODUCT VERSION: 1.0 WIRELESS DATABASE VIEWER PLUS FOR IPHONE: USER GUIDE PRODUCT VERSION: 1.0. CONTENTS 1 INTRODUCTION...3 1.1 FEATURES...3 2 INSTALLATION...4 2.1 DESKTOP INSTALLATION...4 2.2 IPHONE INSTALLATION:...9 3 USING

More information

ER/Studio Business Architect

ER/Studio Business Architect Product Documentation ER/Studio Business Architect New Features Guide Version 1.6.1 Published February 2010 CORPORATE HEADQUARTERS EMEA HEADQUARTERS ASIA-PACIFIC HEADQUARTERS 100 CALIFORNIA STREET 12TH

More information

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions: Quick Start Guide This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:. How can I install Kentico CMS?. How can I edit content? 3. How can I insert an image or

More information

User Guide. Issued July DocAve Backup for Salesforce User Guide

User Guide. Issued July DocAve Backup for Salesforce User Guide DocAve Backup for Salesforce User Guide Issued July 2017 1 Table of Contents What s New in this Guide...4 About DocAve Backup for Salesforce...5 Supported Browsers...6 Submitting Documentation Feedback

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

USER GUIDE FOR HARLEY-DAVIDSON BOOM! BOX GTS MAP UPDATE TOOLBOX

USER GUIDE FOR HARLEY-DAVIDSON BOOM! BOX GTS MAP UPDATE TOOLBOX USER GUIDE FOR HARLEY-DAVIDSON BOOM! BOX GTS MAP UPDATE TOOLBOX Contents 1. What is Boom! Box GTS Toolbox?. Install Boom! Box GTS Toolbox.1. For Windows 4.. For Mac (OSX) 4. Navigation Data Synchronizing

More information

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 3.1 and 3.1.1

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 3.1 and 3.1.1 Veritas NetBackup Copilot for Oracle Configuration Guide Release 3.1 and 3.1.1 Veritas NetBackup Copilot for Oracle Configuration Guide Legal Notice Copyright 2018 Veritas Technologies LLC. All rights

More information

OBJECT-RELATIONAL COMPONENT APPROACHES: A COMPARISON

OBJECT-RELATIONAL COMPONENT APPROACHES: A COMPARISON OBJECT-RELATIONAL COMPONENT APPROACHES: A COMPARISON Database & Client/Server World Chicago Tuesday, December 9, 1997 11:00 A.M.-12:15 P.M. David McGoveran Alternative Technologies 13150 Highway 9, Suite

More information

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

More information

Release Notes. PREEvision. Version 6.5 SP14 English

Release Notes. PREEvision. Version 6.5 SP14 English Release Notes PREEvision Version 6.5 SP14 English Imprint Vector Informatik GmbH Ingersheimer Straße 24 70499 Stuttgart, Germany Vector reserves the right to modify any information and/or data in this

More information

Data Exchange 3. The easy way to turn your data into valuable information. VERSION 3.0

Data Exchange 3. The easy way to turn your data into valuable information. VERSION 3.0 Data Exchange 3 The easy way to turn your data into valuable information. VERSION 3.0 12-21-2017 DATA EXCHANGE 3 1 TABLE OF CONTENTS SECTION 1. Overview... 6 1.1. MAIN GOALS...6 1.2. How it Works...6 Data

More information

Notices. Third Party Project Usage. Sample Code in Documentation

Notices. Third Party Project Usage. Sample Code in Documentation Malwarebytes for Mac User Guide Version 3.6 5 December 2018 Notices Malwarebytes products and related documentation are provided under a license agreement containing restrictions on use and disclosure

More information

JSN UniForm User Manual. Introduction. A simple contact form created by JSN UniForm. JSN UniForm is a Joomla form extension which helps you create

JSN UniForm User Manual. Introduction. A simple contact form created by JSN UniForm. JSN UniForm is a Joomla form extension which helps you create JSN UniForm User Manual Introduction A simple contact form created by JSN UniForm JSN UniForm is a Joomla form extension which helps you create forms quickly and easily - from normal forms to complex forms.

More information

DupScout DUPLICATE FILES FINDER

DupScout DUPLICATE FILES FINDER DupScout DUPLICATE FILES FINDER User Manual Version 10.3 Dec 2017 www.dupscout.com info@flexense.com 1 1 Product Overview...3 2 DupScout Product Versions...7 3 Using Desktop Product Versions...8 3.1 Product

More information

Oracle Express CPQ for Salesforce.com. What s New in Summer 15

Oracle Express CPQ for Salesforce.com. What s New in Summer 15 Oracle Express CPQ for Salesforce.com What s New in Summer 15 8 June 2015 TABLE OF CONTENTS OVERVIEW... 3 Give Us Feedback... 3 POST-UPGRADE REQUIREMENTS... 3 PRE-UPGRADE TESTING... 4 RELEASE FEATURE SUMMARY...

More information

MySQL for Database Administrators Ed 3.1

MySQL for Database Administrators Ed 3.1 Oracle University Contact Us: 1.800.529.0165 MySQL for Database Administrators Ed 3.1 Duration: 5 Days What you will learn The MySQL for Database Administrators training is designed for DBAs and other

More information

Quest Central for DB2

Quest Central for DB2 Quest Central for DB2 INTEGRATED DATABASE MANAGEMENT TOOLS Supports DB2 running on Windows, Unix, OS/2, OS/390 and z/os Integrated database management components are designed for superior functionality

More information

IBM i Version 7.2. Database Database Programming IBM

IBM i Version 7.2. Database Database Programming IBM IBM i Version 7.2 Database Database Programming IBM IBM i Version 7.2 Database Database Programming IBM Note Before using this information and the product it supports, read the information in Notices

More information

School of Information and Computer Technology Sirindhorn International Institute of Technology Thammasat University

School of Information and Computer Technology Sirindhorn International Institute of Technology Thammasat University School of Information and Computer Technology Sirindhorn International Institute of Technology Thammasat University ITS351 Database Programming Laboratory Laboratory #4: Database Design & Administration

More information

Foxtrot Certified Expert Study Guide

Foxtrot Certified Expert Study Guide Foxtrot Certified Expert Study Guide Click for the Practice Exam Useful Terms: Client Machine Typically referred to as a user s machine that points to a License Path. Data Execution Prevention (DEP) A

More information

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: Document Status: Standard Document Version: 05.01 Date: September 2006 Copyright 2005 2006 Nortel Networks, All

More information

MetaManager 3.3 New Features Guide METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING BSP Software LLC 1/5

MetaManager 3.3 New Features Guide METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING BSP Software LLC 1/5 METAMANAGER AN IBM GLOBAL SOLUTIONS DIRECTORY OFFERING Version 3.3 New Features Guide 2008 2009 BSP Software LLC 1/5 Product Information This document applies to MetaManager TM Series 3 version 3 and may

More information

Contents Getting Started... 3 About Scribe Online and Connectors... 3 Scribe Online Services... 3 CDK Components... 3 Audience... 4 Prerequisites...

Contents Getting Started... 3 About Scribe Online and Connectors... 3 Scribe Online Services... 3 CDK Components... 3 Audience... 4 Prerequisites... Contents Getting Started... 3 About Scribe Online and Connectors... 3 Scribe Online Services... 3 CDK Components... 3 Audience... 4 Prerequisites... 4 Requirements... 4 CDK Workflow... 5 Scribe Online

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.7. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Logi Ad Hoc Reporting Management Console Usage Guide

Logi Ad Hoc Reporting Management Console Usage Guide Logi Ad Hoc Reporting Management Console Usage Guide Version 12.1 July 2016 Page 2 Contents Introduction... 5 Target Audience... 5 System Requirements... 6 Components... 6 Supported Reporting Databases...

More information