KB_SQL 2018 (Version 6.1) Release Notes 04 December KBS eservice Center ( 3. KBS.NET Download Agent...

Size: px
Start display at page:

Download "KB_SQL 2018 (Version 6.1) Release Notes 04 December KBS eservice Center ( 3. KBS.NET Download Agent..."

Transcription

1 Table of Contents KBS eservice Center ( 3 KBS.NET Download Agent... 4 KB_SQL ADO.NET Data Provider... 5 KB_SQL JDBC Driver... 6 KB_SQL ODBC Driver Bug: VS2015 Redistributed Components... 7 QREPro Desktop Bug: Splash Screen causing Anti-Virus quarantine Enh: Add support for Wildcards in QREPro Desktop Explorer Search Bug: Setting 'Use Server Format for Data' can cause Server API Cache corruption... 8 KB_SQL Server Enh: Need safe process-id usage in KB_SQL temporary globals, including ^SQLXX Bug: FUNCTION import fails on import of existing function object Bug: Export ALL functions generates empty file Bug: SITE EDIT imposes arbitrary restriction of 32kb for longest global value Bug: SITE EDIT imposes arbitrary 1MB restriction on routine size Bug: With rapid connections using same query errors can occur Bug: JOB Watch can fail when process is terminated Bug: SQL_FN_ISINTEGER errors on large numbers Bug: GTM Routine/Object paths are required Bug: Import Tables skip Identical new parameter values Bug: Import Identical Tables Index Tables Bug: Diagnostic data can be carried over from a previous query selection... 10

2 Bug: SQLDescribeCol catalog function handling of NULLABLE property Bug: SQLColumns request without TABLE specification Bug: Parsing error affects use of IS NOT NULL in a nested subquery Bug: Query post run execute is getting done 2x Enh: Remove references to un-used index tables in SHOW_ALL_PLANS Bug: DATE formatting can be incorrect for '12' hour formats Enh: New SITE parameter can be set to restrict delete of USER definitions Enh: Several XFER objects updated to use current standard formats Enh: XFER package updates to allow use of GLOBAL for input/output Bug: Address various issues with USER API routine SQL0USR Bug: Handle failed user authentication using SITE Execute Enh: Speed-up handling of STOP SQLCleanupAgent Bug: Correct handling of NOIC parameter on SQL0LOAD Feature: Add support for TO_GLOBAL and FROM_GLOBAL for DEVICE_TYPE Transfers: Feature: Implement concurrent TCP for GT.M: Bug: Transaction log maintenance should remove transactions for deleted queries: Bug: Export of Table Statistics should include Index tables: Bug: Import of FUNCTION data using FROM_GLOBAL method fails to initialize data: Enh: Implement $HALT for user-supplied execute code (InterSystems Cache) Enh: Allow customization of the QUERY TRANSACTION DETAIL report: Enh: Allow display/print of INDEX table definitions separately from the master table: Enh: Generate Transaction Log entry for queries that RUN but abort with Error: Enh: Allow FINAL event to process regardless of rows selected Bug-Transaction Log options confusion:... 14

3 KBS eservice Center ( The KBS eservice Center is the first place to go when looking for FAQs, Software Downloads, Product Documentation, and more. Anonymous accounts are allowed to search public answers. Client accounts are allowed more privileged access based on having an active maintenance agreement.

4 KBS.NET Download Agent The KBS.NET Download Agent automates the local save of File Image data from the Server to a local (or network) drive. There are no changes in this release.

5 KB_SQL ADO.NET Data Provider The KB_SQL ADO.NET Data Provider connects Microsoft.NET applications to KB_SQL Server. There are no changes in this release.

6 KB_SQL JDBC Driver The KB_SQL JDBC Driver connects Java applications to KB_SQL Server. There are no changes in this release.

7 KB_SQL ODBC Driver The KB_SQL ODBC Driver connects Windows applications to KB_SQL Server. The KB_SQL ODBC Driver is available in 32 and 64-bit versions. Both versions can support Unicode if enabled by the application and by the Server (available for InterSystems Cache only) Bug: VS2015 Redistributed Components We have updated the Visual Studio 2015 Redistributed Components. In some cases, we were seeing runtime errors with certain Microsoft Office applications until we corrected the distribution.

8 QREPro Desktop QREPro Desktop provides a graphical user interface to all of the KB_SQL Reporting features. You can browse the data dictionary. You can create, edit, and deploy KB_SQL Queries and Reports. It provides a rich experience for query design and execution Bug: Splash Screen causing Anti-Virus quarantine The Splash Screen is removed from the QREPro Desktop startup Enh: Add support for Wildcards in QREPro Desktop Explorer Search The Explorer Search will now support the use of SQL Wildcards in order to refine the search criteria. With a check-box, the user can opt to use Regular Expressions for searching as a powerful alternative Bug: Setting 'Use Server Format for Data' can cause Server API Cache corruption A correction was applied to avoid Server API Cache corruption when QREPro Desktop is configured to 'Use Server Format for Data'.

9 KB_SQL Server The KB_SQL Server is the foundation of KB_SQL. It provides the SQL Engine and the Data Dictionary. Together, these provide access to all of your application data. Server utilities allow configuration of the major behaviors of the server including security, transaction management, and more. The SQL EDITOR is the legacy interface for query design using a character terminal interface Enh: Need safe process-id usage in KB_SQL temporary globals, including ^SQLXX The primary subscript of the ^SQLXX global is changed from '$JOB' to 'SQLJOB'. This allows for the use of the software in a clustered environment where multiple nodes could generate the same $JOB identifier. Additional configuration is required. The customer must have a SITE_PROCESS_ID execute that includes the node identifier in the definition of the process id. For example: >S SQLJOB=$$myNode()_" "_$job Bug: FUNCTION import fails on import of existing function object IMPORT FUNCTION procedure is corrected to properly handle import of existing function object Bug: Export ALL functions generates empty file A correction was made to the transfer of FUNCTION objects when 'Select all' is requested Bug: SITE EDIT imposes arbitrary restriction of 32kb for longest global value A correction is applied to SITE EDIT to remove arbitrary restriction on size of global value. This can be set to value supported by M Technology (MUMPS) Implementation Bug: SITE EDIT imposes arbitrary 1MB restriction on routine size A correction is applied to SITE EDIT to remove arbitrary restriction on size of routine. This can be set to value supported by M Technology (MUMPS) Implementation Bug: With rapid connections using same query errors can occur When many simultaneous connections submit the same (or similar) query to the Server API, errors could occur. We changed the scope of the semaphore lock that ensured exclusive access to the Server Queue to include the QueryFind, optional QueryAdd, and optional QueryCompile phases Bug: JOB Watch can fail when process is terminated The JOB WATCH utility is updated to handle situations where the process listing is changing rapidly while viewing job activity.

10 Bug: SQL_FN_ISINTEGER errors on large numbers Functions SQL_FN_ISINTEGER and SQL_FN_ISNUMERIC are updated to handle situations where the value would exceed maximum number size Bug: GTM Routine/Object paths are required The GTM Routine and Object paths are required for proper installation of KB_SQL. Whatever the paths are, they must be consistent with the $ZROUTINES configuration of the site. We need to know where to write source and object code so that it can be run at execution time. The GTMRTN and GTMOBJ values are also added to the AUTO^SQL0LOAD() entry Bug: Import Tables skip Identical new parameter values When importing tables, with skip identical, newly added parameter values can be overlooked by the processor causing misrepresentation of identical status. This is resolved in the current release Bug: Import Identical Tables Index Tables When importing tables with 'skip identical', new Index Tables are imported but existing Index Tables can be deleted. This has been corrected Bug: Diagnostic data can be carried over from a previous query selection In some cases, we are seeing diagnostic/error data being carried forward from prior query selections. We have added a call to KILLDIAG^SQL0ERR to initialize diagnostic control structures on each query selection Bug: SQLDescribeCol catalog function handling of NULLABLE property The SQLDescribeCol catalog function is used to return a set of metadata for select-list columns. The NULLABLE property indicates whether a column value can be NULL. The NULLABLE property is set either to SQL_NO_NULLS if the expression is a column that is required in the data dictionary table definition. Or, it will be SQL_ALLOW_NULLS Bug: SQLColumns request without TABLE specification The SQLColumns catalog function can be used to return a set of column metadata. Certain applications were calling SQLColumns without specifying a source TABLE. This effectively returns all columns for all tables and can be an expensive process. We have yet to see a practical use of this feature. The SQLColumns catalog function is modified to return an empty set if called without a TABLE specification Bug: Parsing error affects use of IS NOT NULL in a nested

11 subquery A correction was applied to the handling of the NULL predicate in nested subqueries. Under certain conditions, the NULL predicate could be corrupted in an attempt to ensure proper syntax Bug: Query post run execute is getting done 2x A correction was applied to avoid redundant execution of the QUERY POST RUN custom code Enh: Remove references to un-used index tables in SHOW_ALL_PLANS The SHOW_ALL_PLANS parameter behavior is modified to exclude references to index tables that are not being considered by the query planner. To include the maximum details, consider the SHOW_ALL_PLANS_VERBOSE parameter Bug: DATE formatting can be incorrect for '12' hour formats When using the 12-hour formats, the value of '30 minutes past midnight' should be '12:30 AM'. It was incorrectly being formatted as '00:30 AM' Enh: New SITE parameter can be set to restrict delete of USER definitions A new SITE parameter can be set to restrict delete of USER definitions. -- SITE.SITE_RESTRICT_USER_DELETE (61,23) If set, attempts to delete a USER definition will be restricted with an error message. It is recommended that USER accounts are disabled, as this will maintain transaction records Enh: Several XFER objects updated to use current standard formats The following XFER objects are updated to use the current standard formats: - DEVICE_TYPE - FUNCTION - PSEUDO_COLUMN Note that the TABLE object type continues to use the legacy format. Note also that pre-v6.1 exports of DEVICE_TYPE, FUNCTION, and PSEUDO_COLUMN will continue to work Enh: XFER package updates to allow use of GLOBAL for input/output The XFER package is updated to allow for user-specified global for input/output.

12 For example: (output) s SQLXTO="TABLE" s SQLXTM="TO_GLOBAL" s SQLXTM("GLOBAL")="^MYEXP(SQLXTO)" s SQLXNM="MYSCHEMA.*" d XFER^SQL Note: Output will be stored in ^MYEXP("TABLE"). If "GLOBAL" parameter is not provided, data will be saved into ^SQLIX(SQL(1),"TABLE") where SQL(1) is connection identifier. (input) s SQLXTO="TABLE" s SQLXTM="FROM_GLOBAL" s SQLXTM("GLOBAL")="^MYEXP(SQLXTO)" s SQLOW=1 d XFER^SQL Note: Input will be processed from ^MYEXP("TABLE"). If "GLOBAL" parameter is not provided, data will be processed from ^SQLIX(SQL(1),"TABLE") where SQL(1) is connection identifier Bug: Address various issues with USER API routine SQL0USR The USER API in routine SQL0USR is updated to address several issues Bug: Handle failed user authentication using SITE Execute When using the SITE.DETERMINE_USER execute, login should test for an error code in SQLERR or a missing value of SQLUSER and will *NOT* prompt for login Enh: Speed-up handling of STOP SQLCleanupAgent Previously, the handler for STOP of the SQLCleanupAgent could take up to the total interval time. While the default of 60 seconds wasn't too much, some customers have configured the agent to run every 10 minutes. Depending on the cycle, the STOP could take up to 10 minutes to complete. With the modifications, the STOP will most often complete in under 5 seconds Bug: Correct handling of NOIC parameter on SQL0LOAD The NOIC parameter on AUTO^SQL0LOAD allows for the suppression of the INTEGRITY CHECK procedure

13 after the last script step of the process. This parameter has been corrected to work properly. Note that the NOIC parameter does *not* work when upgrading across versions Feature: Add support for TO_GLOBAL and FROM_GLOBAL for DEVICE_TYPE Transfers: The TO_GLOBAL and FROM_GLOBAL methods are now supported for DEVICE_TYPE transfers. Note that the global is ^SQLIX(SQL(1),"DEVICE_TYPE") where SQL(1) is the connection handle value Feature: Implement concurrent TCP for GT.M: KB_SQL for GTM (Version 6.+) now supports the concurrent TCP model eliminating the need for alternate ports. This new feature will allow for simpler administration of KB_SQL environments using GTM. Note that the alternate ports method continues to be supported but requires the setting of a SITE parameter named SITE_TCPIP_FORCE_ALTERNATES (61,22) Bug: Transaction log maintenance should remove transactions for deleted queries: A correction was made to the maintenance of transaction log rows. We were allowing rows with SQL Text to remain indefinitely for source change purposes. We should not have preserved rows where the associated query was deleted. This has been corrected Bug: Export of Table Statistics should include Index tables: The \UTILITIES\EXPORT\TABLE STATISTICS procedure is modified so that index tables are automatically included with base tables that are submitted for processing Bug: Import of FUNCTION data using FROM_GLOBAL method fails to initialize data: The import process for FUNCTION data using the FROM_GLOBAL method is corrected to properly initialize the local storage of data Enh: Implement $HALT for user-supplied execute code (InterSystems Cache) For InterSystems Cache implementations of KB_SQL, a halt execute will be used in the EXEC^SQL0H module. This will cause execution of a 'HALT' command to be treated as an error condition that simply quits returning control to the caller Enh: Allow customization of the QUERY TRANSACTION DETAIL report: We have modified the QUERY TRANSACTIONS DETAIL report to allow customization of the output. The user can specify whether built-in queries should be excluded (default=yes). The user can specify a custom LIKE pattern match for queries to be included (e.g., MY\_STUFF\_%). Note use of LIKE pattern match wildcard (_%) and escape (\) characters.

14 Enh: Allow display/print of INDEX table definitions separately from the master table: We have modified the TABLE PRINT procedure to allow for the printing of a single INDEX table definition. When the FROM/TO values match exactly, the query will ignore the MASTER_TABLE setting, allowing display of an index (or base) table Enh: Generate Transaction Log entry for queries that RUN but abort with Error: We have added a wrapper function to those places where we execute query routines. This allows us to process an error condition by adding an entry in the transaction log at run time. Note that this is in addition to any error logging that might already be configured. When viewed using the \UTILITIES\TRANSACTION LOGS\QUERY TRANSACTIONS\QUERY TX DETAIL report, these transactions will include information about the Error that occurred. Note that they will also appear to have a TYPE=RUN *, where the asterisk is displayed based on the END_TYPE value of 99. This is a special end value for queries that abort Enh: Allow FINAL event to process regardless of rows selected We have updated the \CONFIGURATION\SITE EDIT\CUSTOM LOGIC\TRANSACTION LOGS module to make certain configurations more obvious. First, the 'Disable all transaction logs' setting will mark all other settings as disabled. Likewise, the 'Disable verbose transaction logs' setting will mark all of the lower level settings as disabled. The interface allows the use of the [undo] key to revert the changes in case of error Bug-Transaction Log options confusion: We have updated the \CONFIGURATION\SITE EDIT\CUSTOM LOGIC\TRANSACTION LOGS module to make certain configurations more obvious. First, the 'Disable all transaction logs' setting will mark all other settings as disabled. Likewise, the 'Disable verbose transaction logs' setting will mark all of the lower level settings as disabled. The interface allows the use of the [undo] key to revert the changes in case of error.

KB_SQL 2018 (Version 6.1) Release Notes 4 January KBS eservice Center ( 2. KBS.NET Download Agent...

KB_SQL 2018 (Version 6.1) Release Notes 4 January KBS eservice Center (  2. KBS.NET Download Agent... Table of Contents KBS eservice Center (http://www.kbsreporting.com/support)... 2 KBS.NET Download Agent... 3 KB_SQL ADO.NET Data Provider... 4 KB_SQL JDBC Driver... 5 KB_SQL ODBC Driver... 6 QREPro Desktop...

More information

KB_SQL 2017 (Version 5.9) Release Notes 07/12/2017. KBS eservice Center (http://www.kbsreporting.com/support) KBS.NET Download Agent...

KB_SQL 2017 (Version 5.9) Release Notes 07/12/2017. KBS eservice Center (http://www.kbsreporting.com/support) KBS.NET Download Agent... Table of Contents KBS eservice Center (http://www.kbsreporting.com/support)... 3 KBS.NET Download Agent... 4 KB_SQL ADO.NET Data Provider... 5 KB_SQL JDBC Driver... 6 2924 - Prepared Statement should not

More information

KB_SQL 2016 (Version 5.8) Release Notes 03/28/2016. KBS eservice Center (http://www.kbsreporting.com/support) KBS.NET Download Agent...

KB_SQL 2016 (Version 5.8) Release Notes 03/28/2016. KBS eservice Center (http://www.kbsreporting.com/support) KBS.NET Download Agent... Table of Contents KBS eservice Center (http://www.kbsreporting.com/support)... 4 KBS.NET Download Agent... 5 KB_SQL ADO.NET Data Provider... 6 KB_SQL JDBC Driver... 7 *2924 - Prepared Statement should

More information

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc.

KB_SQL Release Notes Version 4.3.Q2. Knowledge Based Systems, Inc. KB_SQL Release Notes Version 4.3.Q2 Copyright 2003 by All rights reserved., Ashburn, Virginia, USA. Printed in the United States of America. No part of this manual may be reproduced in any form or by any

More information

MCSA SQL SERVER 2012

MCSA SQL SERVER 2012 MCSA SQL SERVER 2012 1. Course 10774A: Querying Microsoft SQL Server 2012 Course Outline Module 1: Introduction to Microsoft SQL Server 2012 Introducing Microsoft SQL Server 2012 Getting Started with SQL

More information

IBM DB2 Query Patroller. Administration Guide. Version 7 SC

IBM DB2 Query Patroller. Administration Guide. Version 7 SC IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 Before using this information and the product it supports, be sure

More information

PowerSchool 7.6 Release Notes PowerSchool Student Information System

PowerSchool 7.6 Release Notes PowerSchool Student Information System PowerSchool Student Information System Released December 2012 Document Owner: Documentation Services This edition applies to Release 7.6 of the PowerSchool software, and to all subsequent releases and

More information

Creating and Managing a Content Server Cluster

Creating and Managing a Content Server Cluster CHAPTER 10 This chapter describes the main features, system requirements, setup, and management of a Cisco TelePresence Content Server (TCS) cluster. To a user, a Content Server Cluster behaves exactly

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Manual Trigger Sql Server 2008 Example Inserted Table

Manual Trigger Sql Server 2008 Example Inserted Table Manual Trigger Sql Server 2008 Example Inserted Table Oracle equivalent for SQL Server INSERTED and DELETED tables (find the msdn article here: msdn.microsoft.com/en-us/library/ms191300.aspx) Or else I

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 Installation and Setup Guide Revised on 09/25/2014 TABLE OF CONTENTS ROCK-POND REPORTING 2.1... 1 SUPPORT FROM ROCK-POND SOLUTIONS... 2 ROCK-POND REPORTING OVERVIEW... 2 INFRASTRUCTURE

More information

Cloudera JDBC Driver for Impala

Cloudera JDBC Driver for Impala Cloudera JDBC Driver for Impala 2.5.45 Released 2018-04-06 These release notes provide details of enhancements, features, and known issues in Cloudera JDBC Driver for Impala 2.5.45, as well as the version

More information

Cloudera JDBC Driver for Impala

Cloudera JDBC Driver for Impala Cloudera JDBC Driver for Impala 2.5.42 Released 2018-01-05 These release notes provide details of enhancements, features, and known issues in Cloudera JDBC Driver for Impala 2.5.42, as well as the version

More information

Halcyon Spooled File Manager GUI. v8.0 User Guide

Halcyon Spooled File Manager GUI. v8.0 User Guide Halcyon Spooled File Manager GUI v8.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400,

More information

Cloudera JDBC Driver for Apache Hive

Cloudera JDBC Driver for Apache Hive Cloudera JDBC Driver for Apache Hive 2.5.20 Released 2017-12-22 These release notes provide details of enhancements, features, and known issues in Cloudera JDBC Driver for Apache Hive 2.5.20, as well as

More information

Manually Run The Synchronization Replication Sql Server 2005 Delete

Manually Run The Synchronization Replication Sql Server 2005 Delete Manually Run The Synchronization Replication Sql Server 2005 Delete I've set up a SQL transaction replication between two servers. And now I If an article is dropped after one or more subscriptions is

More information

Learn Well Technocraft

Learn Well Technocraft Getting Started with ASP.NET This module explains how to build and configure a simple ASP.NET application. Introduction to ASP.NET Web Applications Features of ASP.NET Configuring ASP.NET Applications

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

Colligo Contributor Pro 4.4 SP2. User Guide

Colligo Contributor Pro 4.4 SP2. User Guide 4.4 SP2 User Guide CONTENTS Introduction... 3 Benefits... 3 System Requirements... 3 Software Requirements... 3 Client Software Requirements... 3 Server Software Requirements... 3 Installing Colligo Contributor...

More information

IMC Network Traffic Analyzer 7.2 (E0401P04) Copyright 2016 Hewlett Packard Enterprise Development LP

IMC Network Traffic Analyzer 7.2 (E0401P04) Copyright 2016 Hewlett Packard Enterprise Development LP Network Traffic Analyzer 7.2 (E0401P04) Copyright 2016 Hewlett Packard Enterprise Development LP Table of Contents 1. What's New in this Release 2. Problems Fixed in this Release 3. Software Distribution

More information

Microsoft Connector for Teradata by Attunity

Microsoft Connector for Teradata by Attunity Microsoft Connector for Teradata by Attunity SQL Server Technical Article Writer: Doug Wheaton (Attunity) Technical Reviewers: Ramakrishnan Krishnan (Microsoft), Rupal Shah (Teradata) Published: November

More information

Certkiller.A QA

Certkiller.A QA Certkiller.A00-260.70.QA Number: A00-260 Passing Score: 800 Time Limit: 120 min File Version: 3.3 It is evident that study guide material is a victorious and is on the top in the exam tools market and

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Cloudera ODBC Driver for Impala

Cloudera ODBC Driver for Impala Cloudera ODBC Driver for Impala 2.5.41 Released 2017-10-31 These release notes provide details of enhancements, features, and known issues in Cloudera ODBC Driver for Impala 2.5.41, as well as the version

More information

MIS NETWORK ADMINISTRATOR PROGRAM

MIS NETWORK ADMINISTRATOR PROGRAM NH107-7475 SQL: Querying and Administering SQL Server 2012-2014 136 Total Hours 97 Theory Hours 39 Lab Hours COURSE TITLE: SQL: Querying and Administering SQL Server 2012-2014 PREREQUISITE: Before attending

More information

McAfee epolicy Orchestrator Release Notes

McAfee epolicy Orchestrator Release Notes Revision B McAfee epolicy Orchestrator 5.3.3 Release Notes Contents About this release Enhancements Resolved issues Known issues Installation instructions Getting product information by email Find product

More information

This document contains information on fixed and known limitations for Test Data Management.

This document contains information on fixed and known limitations for Test Data Management. Informatica LLC Test Data Management Version 10.1.0 Release Notes December 2016 Copyright Informatica LLC 2003, 2016 Contents Installation and Upgrade... 1 Emergency Bug Fixes in 10.1.0... 1 10.1.0 Fixed

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

Chapter 5 Retrieving Documents

Chapter 5 Retrieving Documents Chapter 5 Retrieving Documents Each time a document is added to ApplicationXtender Web Access, index information is added to identify the document. This index information is used for document retrieval.

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

User Guide Online Backup

User Guide Online Backup User Guide Online Backup Table of contents Table of contents... 1 Introduction... 2 Getting Started with the Online Backup Software... 2 Installing the Online Backup Software... 2 Configuring a Device...

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Number: Passing Score: 800 Time Limit: 120 min File Version:

Number: Passing Score: 800 Time Limit: 120 min File Version: 70-465 Number: 000-000 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 You need to recommend a backup process for an Online Transaction Processing

More information

COURSE 20487B: DEVELOPING WINDOWS AZURE AND WEB SERVICES

COURSE 20487B: DEVELOPING WINDOWS AZURE AND WEB SERVICES ABOUT THIS COURSE In this course, students will learn how to design and develop services that access local and remote data from various data sources. Students will also learn how to develop and deploy

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

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Bonus Content. Glossary

Bonus Content. Glossary Bonus Content Glossary ActiveX control: A reusable software component that can be added to an application, reducing development time in the process. ActiveX is a Microsoft technology; ActiveX components

More information

MS-20487: Developing Windows Azure and Web Services

MS-20487: Developing Windows Azure and Web Services MS-20487: Developing Windows Azure and Web Services Description In this course, students will learn how to design and develop services that access local and remote data from various data sources. Students

More information

LANSA V13 SP2 introduces many new features and enhancements. The highlights are described in this newsletter.

LANSA V13 SP2 introduces many new features and enhancements. The highlights are described in this newsletter. Newsletter August 2014 LANSA V13 SP2 The second Service Pack for LANSA Version 13 is now available with lots of new features! LANSA V13 SP2 introduces many new features and enhancements. The highlights

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

Where is Database Management System (DBMS) being Used?

Where is Database Management System (DBMS) being Used? The main objective of DBMS (Database Management System) is to provide a structured way to store and retrieve information that is both convenient and efficient. By data, we mean known facts that can be

More information

Upgrade to and Installation of SQL Server 2008 (R2) in an SAP Environment

Upgrade to and Installation of SQL Server 2008 (R2) in an SAP Environment Upgrade and Installation Guide Document Version: 1.60 2017-11-17 PUBLIC Upgrade to and Installation of SQL Server 2008 (R2) in an SAP Environment Content 1 Document History.... 3 2 Introduction....5 3

More information

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

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

More information

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours Course Outline SQL Server Analysis Services Course Content SSAS: What Is Microsoft BI? Core concept BI is the cube or UDM Example cube as seen using Excel

More information

Developing Windows Azure and Web Services

Developing Windows Azure and Web Services Developing Windows Azure and Web Services Course 20487B; 5 days, Instructor-led Course Description In this course, students will learn how to design and develop services that access local and remote data

More information

Desktop Authority 8 Getting Started

Desktop Authority 8 Getting Started 8 Getting Started Copyright Copyright 1997-2009 ScriptLogic Corporation and its licensors. All Rights Reserved. Protected by U.S. Patents 6,871,221; 7,293,087; 7,353,262 and 7,469,278 with other patents

More information

File Reputation Filtering and File Analysis

File Reputation Filtering and File Analysis This chapter contains the following sections: Overview of, page 1 Configuring File Reputation and Analysis Features, page 5 File Reputation and File Analysis Reporting and Tracking, page 14 Taking Action

More information

Resolution: The DataChannel servlet no longer stops working, regardless of the state of the DataChannel extension.

Resolution: The DataChannel servlet no longer stops working, regardless of the state of the DataChannel extension. Hotfix version 1 Build 4.5.3.1026 McAfee epolicy Orchestrator 4.5 This document is a supplement to the McAfee epolicy Orchestrator 4.5 Patch 3 Release Notes in the release package, and details fixes included

More information

Alloy Navigator 6 Suite 6 version Release Notes

Alloy Navigator 6 Suite 6 version Release Notes Alloy Navigator 6 Suite 6 version 6.1.1 Release Notes Alloy Software released a new version of Alloy Navigator 6 Suite, an integrated software suite that includes Alloy Navigator 6 (AN6) and Alloy Discovery

More information

Coveo Platform 7.0. EMC Documentum Connector Guide

Coveo Platform 7.0. EMC Documentum Connector Guide Coveo Platform 7.0 EMC Documentum Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g (

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g ( Oracle Adaptive Access Manager Release Notes Release 10g (10.1.4.5) E13648-03 May 2009 These release notes contain important last minute information not included in the Oracle Adaptive Access Manager Release

More information

Excel4apps Wands 5.7 Release Notes Excel4apps Inc.

Excel4apps Wands 5.7 Release Notes Excel4apps Inc. Excel4apps Wands 5.7 Release Notes 2014 Excel4apps Inc. Table of Contents 1 Introduction... 3 2 Version 5.7.0... 3 2.1 GL Wand... 3 2.2 Budget Wand... 6 2.3 Reports Wand... 6 Page 2 of 7 1 Introduction

More information

Oracle. Service Cloud Using Knowledge Advanced

Oracle. Service Cloud Using Knowledge Advanced Oracle Service Cloud Release August 2016 Oracle Service Cloud Part Number: Part Number: E77681-03 Copyright 2015, 2016, Oracle and/or its affiliates. All rights reserved Authors: The Knowledge Information

More information

CHAPTER. Oracle Database 11g Architecture Options

CHAPTER. Oracle Database 11g Architecture Options CHAPTER 1 Oracle Database 11g Architecture Options 3 4 Part I: Critical Database Concepts Oracle Database 11g is a significant upgrade from prior releases of Oracle. New features give developers, database

More information

20461: Querying Microsoft SQL Server

20461: Querying Microsoft SQL Server 20461: Querying Microsoft SQL Server Length: 5 days Audience: IT Professionals Level: 300 OVERVIEW This 5 day instructor led course provides students with the technical skills required to write basic Transact

More information

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE SureView Analytics 6.1.1 Release Notes ================================= --------- IMPORTANT NOTE REGARDING DOCUMENTATION --------- The Installation guides, Quick Start Guide, and Help for this release

More information

Desktop & Laptop Edition

Desktop & Laptop Edition Desktop & Laptop Edition USER MANUAL For Mac OS X Copyright Notice & Proprietary Information Redstor Limited, 2016. All rights reserved. Trademarks - Mac, Leopard, Snow Leopard, Lion and Mountain Lion

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

Manual Trigger Sql Server 2008 Examples Update

Manual Trigger Sql Server 2008 Examples Update Manual Trigger Sql Server 2008 Examples Update SQL Server has a pool of memory that is used to store both execution plans and data buffers. For example, the first of these SELECT statements is not matched

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014

COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014 COURSE OUTLINE MOC 20461: QUERYING MICROSOFT SQL SERVER 2014 MODULE 1: INTRODUCTION TO MICROSOFT SQL SERVER 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions,

More information

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date:

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date: Print Audit 6 Version: Date: 37 21-Apr-2015 23:07 Table of Contents Browse Documents:..................................................... 3 Database Documentation.................................................

More information

User Manual. ARK for SharePoint-2007

User Manual. ARK for SharePoint-2007 User Manual ARK for SharePoint-2007 Table of Contents 1 About ARKSP (Admin Report Kit for SharePoint) 1 1.1 About ARKSP 1 1.2 Who can use ARKSP? 1 1.3 System Requirements 2 1.4 How to activate the software?

More information

New Features Summary. SAP Sybase Event Stream Processor 5.1 SP02

New Features Summary. SAP Sybase Event Stream Processor 5.1 SP02 Summary SAP Sybase Event Stream Processor 5.1 SP02 DOCUMENT ID: DC01616-01-0512-01 LAST REVISED: April 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software

More information

Simba ODBC Driver with SQL Connector for Apache Cassandra

Simba ODBC Driver with SQL Connector for Apache Cassandra Simba ODBC Driver with SQL Connector for Apache Cassandra 2.0.16 The release notes provide details of enhancements and features in Simba ODBC Driver with SQL Connector for Apache Cassandra 2.0.16, as well

More information

9.5.0 HotFix 1 Fixes... 1 Known Limitations... 2

9.5.0 HotFix 1 Fixes... 1 Known Limitations... 2 Informatica Identity Resolution Version 9.5.0 HotFix1 Release Notes September 2012 Copyright (c) 1998-2012 Informatica. All rights reserved. Contents 9.5.0 HotFix 1 Fixes... 1 Known Limitations... 2 9.5.0

More information

LAE 5.1. Release Notes. Version 1.0

LAE 5.1. Release Notes. Version 1.0 LAE 5.1 Release Notes Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY NOT BE REPRODUCED IN ANY FORM WITHOUT THE WRITTEN PERMISSION

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 10.5 Feb 2018 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Setting up a database for multi-user access

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

More information

Version 12.0 Component Installation and Configuration. January 31, 2007

Version 12.0 Component Installation and Configuration. January 31, 2007 Version 12.0 Component Installation and Configuration January 31, 2007 Table Of Content Section Subject 1 Overview 2 Performing the Relius Administration 12.0 Component Installation 3 Licensing Crystal

More information

Applications Manager Version 8.0

Applications Manager Version 8.0 Applications Manager Version 8.0 Oracle Applications Extension Guide UC4 Software, Inc. Applications Manager Version 8.0 Oracle Applications Extension Guide By Jack Ireton Document number: AM80OAE-032009

More information

New Dealership TeamDesign Installation Instructions

New Dealership TeamDesign Installation Instructions New Dealership TeamDesign Installation Instructions This document describes how to install the TeamDesign software for the first time. It is very important that you read this document completely before

More information

Version Installation Guide. 1 Bocada Installation Guide

Version Installation Guide. 1 Bocada Installation Guide Version 19.4 Installation Guide 1 Bocada Installation Guide Copyright 2019 Bocada LLC. All Rights Reserved. Bocada and BackupReport are registered trademarks of Bocada LLC. Vision, Prism, vpconnect, and

More information

Release Version: Date: Type: 05/02/2018 FULL. Ticket type Module Summary Change Notes. Build

Release Version: Date: Type: 05/02/2018 FULL. Ticket type Module Summary Change Notes. Build Release Version: 5.50.0230 05/02/2018 DBNull when running Query in web Fix to error in web when running a Query 5.50.0229 Release Version: 5.50.0228 26/01/2018 Dropdowns have no entries apart from 'All'

More information

Optional SQL Feature Summary

Optional SQL Feature Summary Optional SQL Feature Summary The following table lists all optional features included in the SQL standard, from SQL- 2003 to SQL-2016. It also indicates which features that are currently supported by Mimer

More information

Manual Trigger Sql Server 2008 Update Inserted Or Deleted

Manual Trigger Sql Server 2008 Update Inserted Or Deleted Manual Trigger Sql Server 2008 Update Inserted Or Deleted Am new to SQL scripting and SQL triggers, any help will be appreciated ://sql-serverperformance.com/2010/transactional-replication-2008-r2/ qf.customer_working_hours

More information

Colligo Contributor File Manager 4.3. User Guide

Colligo Contributor File Manager 4.3. User Guide Colligo Contributor File Manager 4.3 User Guide CONTENTS Introduction... 2 Technical Requirements... 3 Systems Supported... 3 Application Prerequisites... 3 Outlook Add-in Prerequisites... 3 Installing

More information

Payment.Solution Enterprise Manager Users Guide

Payment.Solution Enterprise Manager Users Guide Payment.Solution Enterprise Manager Users Guide Installation Payment.Solution Enterprise Manager Introduction Payment.Solution Enterprise Manager is a management console used to report on the activities

More information

Manual Trigger Sql Server 2008 Examples Insert Update

Manual Trigger Sql Server 2008 Examples Insert Update Manual Trigger Sql Server 2008 Examples Insert Update blog.sqlauthority.com/2011/03/31/sql-server-denali-a-simple-example-of you need to manually delete this trigger or else you can't get into master too

More information

Summation & ediscovery Patches Release Notes

Summation & ediscovery Patches Release Notes Summation & ediscovery 6.0.1 Patches Release Notes Document Date: 7/7/2016 2016 AccessData Group, Inc. All rights reserved Introduction This document lists the new features, fixed issues, and important

More information

Optimal Performance for your MacroView DMF Solution

Optimal Performance for your MacroView DMF Solution Adding Value Paper In this paper we identify 20 points to consider if you want to optimise the performance of your DMF solution. These points also apply to Message, the subset of DMF that runs in Outlook.

More information

Simba JDBC Driver for Cloudera Impala

Simba JDBC Driver for Cloudera Impala Simba JDBC Driver for Cloudera Impala 1.0.32 The release notes provide details of enhancements and features in Simba JDBC Driver for Cloudera Impala 1.0.32, as well as the version history. The following

More information

Microsoft SQL Server Training Course Catalogue. Learning Solutions

Microsoft SQL Server Training Course Catalogue. Learning Solutions Training Course Catalogue Learning Solutions Querying SQL Server 2000 with Transact-SQL Course No: MS2071 Two days Instructor-led-Classroom 2000 The goal of this course is to provide students with the

More information

Antivirus Solution Guide for Clustered Data ONTAP: Symantec

Antivirus Solution Guide for Clustered Data ONTAP: Symantec Technical Report Antivirus Solution Guide for Clustered Data ONTAP: Symantec Saurabh Singh and Brahmanna Chowdary Kodavali, NetApp July 2016 TR-4304 Abstract An antivirus solution is key for enterprises

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

Performance Optimization for Informatica Data Services ( Hotfix 3)

Performance Optimization for Informatica Data Services ( Hotfix 3) Performance Optimization for Informatica Data Services (9.5.0-9.6.1 Hotfix 3) 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

LIBF e-test. Installation Guide. July 2016 Version 2.3

LIBF e-test. Installation Guide. July 2016 Version 2.3 LIBF e-test Installation Guide July 2016 Version 2.3 Table of Contents Page 1 Introduction 3 1.1 Contact details 3 2 Installing the Server application 4 3 Installing the Administration application 9 4

More information

Cherwell Service Management

Cherwell Service Management Version 9.1.0 April 2017 Legal Notices Cherwell Software, LLC 2017 All Rights Reserved. Cherwell and the Cherwell logo are trademarks owned by Cherwell Software, LLC and are registered and/or used in the

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Course 20761A: Querying Data with Transact SQL Course details Course Outline Module 1: Introduction to Microsoft SQL Server 2016 This module introduces SQL Server, the versions of SQL Server, including

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

LAE Release Notes. Version 1.0

LAE Release Notes. Version 1.0 LAE 5.0.1 Release Notes Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY NOT BE REPRODUCED IN ANY FORM WITHOUT THE WRITTEN PERMISSION

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012

Perceptive TransForm E-Forms Manager 8.x. Installation and Configuration Guide March 1, 2012 Perceptive TransForm E-Forms Manager 8.x Installation and Configuration Guide March 1, 2012 Table of Contents 1 Introduction... 3 1.1 Intended Audience... 3 1.2 Related Resources and Documentation... 3

More information

Installation and Configuration Guide Simba Technologies Inc.

Installation and Configuration Guide Simba Technologies Inc. Simba ODBC Driver with SQL Connector for Google BigQuery Installation and Configuration Guide Simba Technologies Inc. Version 2.1.20 November 30, 2018 Copyright 2018 Simba Technologies Inc. All Rights

More information

DataMan. version 6.5.4

DataMan. version 6.5.4 DataMan version 6.5.4 Contents DataMan User Guide 1 Introduction 1 DataMan 1 Technical Specifications 1 Hardware Requirements 1 Software Requirements 2 Ports 2 DataMan Installation 2 Component Installation

More information

v7.6 Reference Guide

v7.6 Reference Guide v7.6 Reference Guide Table of Contents Table of Contents... ii Installation & Configuration... 1 Welcome to Digital Taskforce!... 1 Installation Requirements... 1 Download Digital Taskforce... 2 Choose

More information

docalpha 5.0 Server Configuration Utility User Guide

docalpha 5.0 Server Configuration Utility User Guide docalpha 5.0 Server Configuration Utility User Guide Contents 1. docalpha Architecture Overview 3 1.1. docalpha Server Overview 3 2. Working with docalpha Server Configuration Utility 4 2.1. Starting docalpha

More information

What's New in PSQL v13 SP2

What's New in PSQL v13 SP2 PSQL v13 What's New in PSQL v13 SP2 An Overview of New Features and Changed Behavior disclaimer trademarks ACTIAN CORPORATION LICENSES THE SOFTWARE AND DOCUMENTATION PRODUCT TO YOU OR YOUR COMPANY SOLELY

More information