KB_SQL 2017 (Version 5.9) Release Notes 07/12/2017. KBS eservice Center ( KBS.NET Download Agent...

Size: px
Start display at page:

Download "KB_SQL 2017 (Version 5.9) Release Notes 07/12/2017. KBS eservice Center (http://www.kbsreporting.com/support) 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 Prepared Statement should not pass SQL on executequery() method JDBC using multiple statements fails Error in JDBC Driver when using prepared statements... 6 KB_SQL ODBC Driver Enh: Modify ODBC Setup to allow specification of Communication Buffer size:... 7 QREPro Desktop... 8 KB_SQL Server Bug: Correct variable scoping rule so that SITE variables are preserved Bug:Outer Join query corrected Index table usage Enh: Allow display/print of INDEX table definitions separately from the master table Enh: Allow customization of the QUERY TRANSACTION DETAIL report 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 The COST_CEILING parameter allows only 1-12 digits while hard coded limit allows for 1E Bug: Allow Transaction Log Maintenance Days = Bug: CHKSTATS fails when Table Statistics agent is started without user information Bug: With rapid connections using same/similar query errors can occur

2 Bug: Multiple SQL commands in one Query package are failing Bug: Table Statistics Compiler exit without cleanup on error

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 Prepared Statement should not pass SQL on executequery() method The prepared statement model was incorrectly allowing the use of the executequery() method to pass a SQL statement. This parameter usage was ambiguous since the SQL was already passed on the prepared statement methods. We have disabled the use of the executequery() method with a SQL text parameter in the context of prepared statements JDBC using multiple statements fails One of the benefits of using the prepared statement model is the ability to re-use a SQL statement, providing new sets of parameter values at runtime. A problem was introduced that caused a premature close of the active statement, effectively disabling support for the re-use of a prepared statement. This problem has been resolved Error in JDBC Driver when using prepared statements There was a change in the previous release of the JDBC Driver ( ) that allowed the communication buffer size to be specified as a parameter. The fetchsize() method was added as well as a connection string option to set the communication buffer size. There was a mistake that caused the statement-specific value to be ignored when creating a KBSRowsetFrame() message package to exchange data between the JDBC Driver and the KB_SQL Server. This could have caused errors related to a zero (0) sized communication buffer. The problem has been resolved.

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) Enh: Modify ODBC Setup to allow specification of Communication Buffer size: The ODBC Setup will now allow the specification of the Communication Buffer size. The default value is 20, for 20K, or bytes to be used when exchanging data with the KB_SQL Server. In cases where there is a large result set being pulled from the server, a larger communication buffer size has shown some performance improvement. Note that acceptable sizes are between 20 and 60K. Note also that the value can be specified on the connection string using the communication buffer parameter setting as shown in the examples below: 32-bit Driver Example: Driver={KB_SQL ODBC 32-Bit Driver};server=KB_SQL;communicationbuffer=30;uid=<uid>;pwd=<pwd>;host=<host>;tcp_port=<port>; 64-bit Driver Example: Driver={KB_SQL ODBC 64-Bit Driver};server=KB_SQL;communicationbuffer=30;uid=<uid>;pwd=<pwd>;host=<host>;tcp_port=<port>;

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. There are no changes in this release.

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 Bug: Correct variable scoping rule so that SITE variables are preserved The query compiler wrapper for 3rd party client queries is corrected to preserve SITE variables. This will allow reference to SITE variables during the compilation step Bug:Outer Join query corrected Index table usage In a query where Table_1 is preserved via Outer Join, the query planner is corrected to ignore all index tables that could be used to optimize the query. This corrects the behavior so that all rows are included in the result 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: 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. Transaction Log Detail From date: 06/24/2017 time: 00:00:00 AM Thru date: 07/08/2017 time: 11:59:59 PM Show diagnostics? YES Show output detail? YES Show variables? YES Show SQL text? NO_ Hide 'Built-in' queries? YES Include name match: % 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.

10 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. Consider the following query: --X_FORCED_ERROR SELECT * FROM SQL_TEST.EMPLOYEES WHERE NAME = :BOOGER On this environment, the host expression (variable) BOOGER is not defined, resulting in an error. The error is shown below in the QUERY TX DETAIL report. X_FORCED_ERROR RUN* DMIDDLETON X_FORCED_ERROR Start: @19:27:22 Stop: @19:27:22 ( 0:00:00 ) Searched: 0 Selected: 0 ( 0%) ========Diagnostics======== Error: Error: 440: <UNDEFINED>BEGIN+10^SQLX5 *BOOGER 717: Failed execute: Running query X_FORCED_ERROR: D ^SQLX5[<UNDEFINED>BEGIN+10^SQLX5 *BOOGER] =========Variables========= =======Output Options======= Enh: Allow FINAL event to process regardless of rows selected A new SITE parameter is created to allow the FINAL event to process regardless of the number of rows selected. SITE.SITE_FINAL_ALWAYS (node=61,piece=21) --$P(^SQL(1,SQLSITE,61),"~",21) If TRUE (=1), the generated code will not lay in a skip condition based on the value of the SQLSEL variable. This will allow the FINAL event to be executed for a query regardless of rows selected 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. Transaction Log How many days to keep transaction logs: 14 Disable all transaction logs? NO_ Disable verbose transaction logs? YES Disable Server API query logs? YES Disable store of SQL Statements? YES

11 Disable store of Diagnostics? YES Disable store of Output data? YES Disable store of Variable data? YES The COST_CEILING parameter allows only 1-12 digits while hard coded limit allows for 1E18. The COST_CEILING parameter is updated to allow specification of zero (0) to mean "no limit" on the cost of plans being considered. Note that you must also ensure that there is no MAX_COST parameter specified at the SITE or Query level Bug: Allow Transaction Log Maintenance Days = 0 The Transaction Log Maintenance will respect a value of zero (0) for the number of days to be retained. Previously, it treated zero (0) the same as null (empty) and used the default of 14 days Bug: CHKSTATS fails when Table Statistics agent is started without user information. The CHKSTATS function can be called with or without user information. If none is available, the agent will be started using the built-in user SYSTEM account Bug: With rapid connections using same/similar 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: Multiple SQL commands in one Query package are failing. A problem was introduced in v5.8 as a side-effect of support for select subqueries in the FROM clause. This error has been corrected Bug: Table Statistics Compiler exit without cleanup on error. When calling the CHKSTATS interface, certain error conditions could exit leaving records locked. This has been corrected.

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 2018 (Version 6.1) Release Notes 04 December KBS eservice Center ( 3. KBS.NET Download Agent...

KB_SQL 2018 (Version 6.1) Release Notes 04 December KBS eservice Center (  3. 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 KB_SQL ODBC Driver... 7 2963 - Bug:

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

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

ORACLE TRAINING CURRICULUM. Relational Databases and Relational Database Management Systems

ORACLE TRAINING CURRICULUM. Relational Databases and Relational Database Management Systems ORACLE TRAINING CURRICULUM Relational Database Fundamentals Overview of Relational Database Concepts Relational Databases and Relational Database Management Systems Normalization Oracle Introduction to

More information

Teradata SQL Features Overview Version

Teradata SQL Features Overview Version Table of Contents Teradata SQL Features Overview Version 14.10.0 Module 0 - Introduction Course Objectives... 0-4 Course Description... 0-6 Course Content... 0-8 Module 1 - Teradata Studio Features Optimize

More information

The Java SQLite3 Database Editor

The Java SQLite3 Database Editor The Java SQLite3 Database Editor Sidney Marshall October 17, 2014 (updated February 8, 2018) Abstract 1 Introduction - The SQLite3 Database Editor The Java Database editor is a Java jar file program that

More information

Model Question Paper. Credits: 4 Marks: 140

Model Question Paper. Credits: 4 Marks: 140 Model Question Paper Subject Code: BT0075 Subject Name: RDBMS and MySQL Credits: 4 Marks: 140 Part A (One mark questions) 1. MySQL Server works in A. client/server B. specification gap embedded systems

More information

IBM IBM Optim Implementation for Distributed Systems (2009)

IBM IBM Optim Implementation for Distributed Systems (2009) IBM 000-551 IBM Optim Implementation for Distributed Systems (2009) http://killexams.com/exam-detail/000-551 QUESTION: 109 Which Optim process(es) produce output which can be selectively restored to a

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

Supported Operating Environment. Java Support

Supported Operating Environment. Java Support Supported Operating Environment Java Support 9/10/2018 Java Support Find information about supported versions of Java across all products. eservices eservices Knowledge Manager (Legacy) Knowledge Manager

More information

T-SQL Training: T-SQL for SQL Server for Developers

T-SQL Training: T-SQL for SQL Server for Developers Duration: 3 days T-SQL Training Overview T-SQL for SQL Server for Developers training teaches developers all the Transact-SQL skills they need to develop queries and views, and manipulate data in a SQL

More information

Scott Meder Senior Regional Sales Manager

Scott Meder Senior Regional Sales Manager www.raima.com Scott Meder Senior Regional Sales Manager scott.meder@raima.com Short Introduction to Raima What is Data Management What are your requirements? How do I make the right decision? - Architecture

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

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

Greenplum Database 3.3 Connectivity Tools for Windows

Greenplum Database 3.3 Connectivity Tools for Windows May 21, 2009 11:21 Greenplum Database 3.3 Connectivity Tools for Windows Greenplum provides database drivers and a C API for connecting to Greenplum Database. In this version 3.3 distribution, the following

More information

1.264 Lecture 8. SQL continued Connecting to database servers

1.264 Lecture 8. SQL continued Connecting to database servers 1.264 Lecture 8 SQL continued Connecting to database servers Subqueries SQL subqueries let you use the results of one query as part of another query. Subqueries Are often natural ways of writing a statement

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

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

Bill Bridge. Oracle Software Architect NVM support for C Applications

Bill Bridge. Oracle Software Architect NVM support for C Applications JANUARY 20, 2015, SAN JOSE, CA Bill Bridge PRESENTATION TITLE GOES HERE Place Speaker Photo Here if Available Oracle Software Architect NVM support for C Applications Overview Oracle has developed a NVM

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

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

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

Apache HBase Andrew Purtell Committer, Apache HBase, Apache Software Foundation Big Data US Research And Development, Intel

Apache HBase Andrew Purtell Committer, Apache HBase, Apache Software Foundation Big Data US Research And Development, Intel Apache HBase 0.98 Andrew Purtell Committer, Apache HBase, Apache Software Foundation Big Data US Research And Development, Intel Who am I? Committer on the Apache HBase project Member of the Big Data Research

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

.NET 4.6 MICROSOFT CURRICULUM MICROSOFT.NET 2015 (4.6)

.NET 4.6 MICROSOFT CURRICULUM MICROSOFT.NET 2015 (4.6) MICROSOFT.NET 4.6 CURRICULUM MICROSOFT.NET 2015 (4.6) Introduction of Dot Net Framework What is Dot Net? Why Dot Net? Advantages of Dot Net Component of Dot Net What is FCL? What is Framework? Creating

More information

How to use Pivot table macro

How to use Pivot table macro How to use Pivot table macro Managing Pivot Tables Table Filter and Charts for Confluence add-on allows you to summarize your table data and produce its aggregated view in the form of a pivot table. You

More information

Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform 4.1 Support Package 2

Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform 4.1 Support Package 2 Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

The release notes provide details of enhancements, features, and known issues in Simba JDBC Driver for Apache Hive

The release notes provide details of enhancements, features, and known issues in Simba JDBC Driver for Apache Hive Simba JDBC Driver for Apache Hive 1.0.29 The release notes provide details of enhancements, features, and known issues in Simba JDBC Driver for Apache Hive 1.0.29. The following issues have been resolved

More information

Sage Abra Alerts is designed and licensed exclusively for use with the Sage Abra HRMS database.

Sage Abra Alerts is designed and licensed exclusively for use with the Sage Abra HRMS database. Release Notes Product: Sage Abra Alerts Version: 5.1 Overview Upgrade Information Sage Abra Alerts is designed and licensed exclusively for use with the Sage Abra HRMS database. Sage requires that Sage

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

Enterprise Reporting -- APEX

Enterprise Reporting -- APEX Quick Reference Enterprise Reporting -- APEX This Quick Reference Guide documents Oracle Application Express (APEX) as it relates to Enterprise Reporting (ER). This is not an exhaustive APEX documentation

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

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

FAQ (Basic) Sybase CEP Option R4

FAQ (Basic) Sybase CEP Option R4 FAQ (Basic) Sybase CEP Option R4 DOCUMENT ID: DC01023-01-0400-01 LAST REVISED: February 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and to any

More information

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version :

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version : Oracle 1Z0-030 Oracle 9i: New Features for Administrators Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-030 QUESTION: 204 Which two statements regarding an external table are

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

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

Crystal Reports. Overview. Contents. Differences between the Database menu in Crystal Reports 8.5 and 9

Crystal Reports. Overview. Contents. Differences between the Database menu in Crystal Reports 8.5 and 9 Crystal Reports Differences between the Database menu in Crystal Reports 8.5 and 9 Overview Contents If you cannot find a command that exists in Crystal Reports 8.5 from the Database menu in Crystal Reports

More information

Pagina 1 di 7 13.1.7. SELECT Syntax 13.1.7.1. JOIN Syntax 13.1.7.2. UNION Syntax SELECT [ALL DISTINCT DISTINCTROW ] [HIGH_PRIORITY] [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]

More information

Progress DataDirect OpenAccess TM SDK 8.1. Upgrade Notes

Progress DataDirect OpenAccess TM SDK 8.1. Upgrade Notes Progress DataDirect OpenAccess TM SDK 8.1 Upgrade Notes September 2016 Contents OPENACCESS SDK VERSION 8.1... 5 HIGHLIGHTS... 5 OpenAccess SDK SQL Engine and IP SDK... 5 OpenAccess SDK Server... 5 OpenAccess

More information

Short Summary of DB2 V4 Through V6 Changes

Short Summary of DB2 V4 Through V6 Changes IN THIS CHAPTER DB2 Version 6 Features DB2 Version 5 Features DB2 Version 4 Features Short Summary of DB2 V4 Through V6 Changes This appendix provides short checklists of features for the most recent versions

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

Transformer Looping Functions for Pivoting the data :

Transformer Looping Functions for Pivoting the data : Transformer Looping Functions for Pivoting the data : Convert a single row into multiple rows using Transformer Looping Function? (Pivoting of data using parallel transformer in Datastage 8.5,8.7 and 9.1)

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

Arius 2.9. Release Notes and Installation Instructions. January Milliman Peachtree Road, NE Suite 1900 Atlanta, GA USA

Arius 2.9. Release Notes and Installation Instructions. January Milliman Peachtree Road, NE Suite 1900 Atlanta, GA USA Arius 2.9 Release Notes and Installation Instructions 3424 Peachtree Road, NE Suite 1900 Atlanta, GA 30326 USA Tel +1 800 404 2276 Fax +1 404 237 6984 actuarialsoftware.com A. Release notes This release

More information

Source Control: Subversion

Source Control: Subversion USER GUIDE MADCAP FLARE 2018 Source Control: Subversion Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in

More information

HP NonStop Structured Query Language (SQL)

HP NonStop Structured Query Language (SQL) HP HP0-780 NonStop Structured Query Language (SQL) http://killexams.com/exam-detail/hp0-780 B. EXEC SQL UPDATE testtab SET salary = 0; C. EXEC SQL UPDATE testtab SET salary = :-1; D. EXEC SQL UPDATE testtab

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

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

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

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Oracle 1Z0-071 Exam Questions and Answers (PDF) Oracle 1Z0-071 Exam Questions 1Z0-071 BrainDumps

Oracle 1Z0-071 Exam Questions and Answers (PDF) Oracle 1Z0-071 Exam Questions 1Z0-071 BrainDumps Oracle 1Z0-071 Dumps with Valid 1Z0-071 Exam Questions PDF [2018] The Oracle 1Z0-071 Oracle Database 12c SQL Exam exam is an ultimate source for professionals to retain their credentials dynamic. And to

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

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

Control Flow. COMS W1007 Introduction to Computer Science. Christopher Conway 3 June 2003

Control Flow. COMS W1007 Introduction to Computer Science. Christopher Conway 3 June 2003 Control Flow COMS W1007 Introduction to Computer Science Christopher Conway 3 June 2003 Overflow from Last Time: Why Types? Assembly code is typeless. You can take any 32 bits in memory, say this is an

More information

ForeScout CounterACT. Configuration Guide. Version 3.4

ForeScout CounterACT. Configuration Guide. Version 3.4 ForeScout CounterACT Open Integration Module: Data Exchange Version 3.4 Table of Contents About the Data Exchange Module... 4 About Support for Dual Stack Environments... 4 Requirements... 4 CounterACT

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

Introduction to Computer Science and Business

Introduction to Computer Science and Business Introduction to Computer Science and Business The Database Programming with PL/SQL course introduces students to the procedural language used to extend SQL in a programatic manner. This course outline

More information

Table of Contents Chapter 1 - Introduction Chapter 2 - Designing XML Data and Applications Chapter 3 - Designing and Managing XML Storage Objects

Table of Contents Chapter 1 - Introduction Chapter 2 - Designing XML Data and Applications Chapter 3 - Designing and Managing XML Storage Objects Table of Contents Chapter 1 - Introduction 1.1 Anatomy of an XML Document 1.2 Differences Between XML and Relational Data 1.3 Overview of DB2 purexml 1.4 Benefits of DB2 purexml over Alternative Storage

More information

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio Introduction XXV Part I: C# Fundamentals 1 Chapter 1: The.NET Framework 3 What s the.net Framework? 3 Common Language Runtime 3.NET Framework Class Library 4 Assemblies and the Microsoft Intermediate Language

More information

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6 Teiid - Scalable Information Integration 1 Teiid Caching Guide 7.6 1. Overview... 1 2. Results Caching... 3 2.1. Support Summary... 3 2.2. User Interaction... 3 2.2.1. User Query Cache... 3 2.2.2. Procedure

More information

Chapter 18: Database System Architectures.! Centralized Systems! Client--Server Systems! Parallel Systems! Distributed Systems!

Chapter 18: Database System Architectures.! Centralized Systems! Client--Server Systems! Parallel Systems! Distributed Systems! Chapter 18: Database System Architectures! Centralized Systems! Client--Server Systems! Parallel Systems! Distributed Systems! Network Types 18.1 Centralized Systems! Run on a single computer system and

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

Database Processing. Fundamentals, Design, and Implementation. Global Edition

Database Processing. Fundamentals, Design, and Implementation. Global Edition Database Processing Fundamentals, Design, and Implementation 14th Edition Global Edition Database Processing: Fundamentals, Design, and Implementation, Global Edition Table of Contents Cover Title Page

More information

Informatica Cloud Spring Teradata Connector Guide

Informatica Cloud Spring Teradata Connector Guide Informatica Cloud Spring 2017 Teradata Connector Guide Informatica Cloud Teradata Connector Guide Spring 2017 October 2017 Copyright Informatica LLC 2015, 2017 This software and documentation are provided

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

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

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

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

G64DBS Database Systems. Lecture 7 SQL SELECT. The Data Dictionary. Data Dictionaries. Different Sections of SQL (DDL) Different Sections of SQL (DCL)

G64DBS Database Systems. Lecture 7 SQL SELECT. The Data Dictionary. Data Dictionaries. Different Sections of SQL (DDL) Different Sections of SQL (DCL) G64DBS Database Systems Lecture 7 SQL SELECT Tim Brailsford Different Sections of SQL (DDL) The Data Definition Language (DDL): CREATE TABLE - creates a new database table ALTER TABLE - alters (changes)

More information

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

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

Manual Triggers Sql Server 2008 Examples

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

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

Table of Contents. PDF created with FinePrint pdffactory Pro trial version

Table of Contents. PDF created with FinePrint pdffactory Pro trial version Table of Contents Course Description The SQL Course covers relational database principles and Oracle concepts, writing basic SQL statements, restricting and sorting data, and using single-row functions.

More information

Embarcadero PowerSQL 1.1 New Features Guide. Published: July 14, 2008

Embarcadero PowerSQL 1.1 New Features Guide. Published: July 14, 2008 Embarcadero PowerSQL 1.1 New Features Guide Published: July 14, 2008 Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA

More information

HIVE MOCK TEST HIVE MOCK TEST III

HIVE MOCK TEST HIVE MOCK TEST III http://www.tutorialspoint.com HIVE MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to Hive. You can download these sample mock tests at your local machine

More information

DB2 UDB: Application Programming

DB2 UDB: Application Programming A ABS or ABSVAL... 4:19 Access Path - Determining... 10:8 Access Strategies... 9:3 Additional Facts About Data Types... 5:18 Aliases... 1:13 ALL, ANY, SOME Operator... 3:21 AND... 3:12 Arithmetic Expressions...

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

Call: JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline

Call: JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline Advanced Java Database Programming JDBC overview SQL- Structured Query Language JDBC Programming Concepts Query Execution Scrollable

More information

IBM i Version 7.3. Database Administration IBM

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

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

GENESYS 6.0 Service Pack 7 15 March Description / Resolution Notes

GENESYS 6.0 Service Pack 7 15 March Description / Resolution Notes GENESYS 6.0 Service Pack 7 15 March 2019 In order to best serve our user community, Vitech releases the initial service pack 30 days after product launch, with subsequent service packs released every 45

More information

SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM

SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM On a Mission to Transform Talent SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM Table of Contents Module 1: Introduction to Linux & RDBMS (Duration: 1 Week)...2 Module 2: Oracle SQL (Duration: 3 Weeks)...3

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

Chapter 9: Working With Data

Chapter 9: Working With Data Chapter 9: Working With Data o Working with Data DML Component of SQL Used with much greater frequency than DDL Used to Add / Maintain / Delete / Query tables INSERT Used to enter new records o Data entry

More information

P6 Professional Importing and Exporting Guide Version 18

P6 Professional Importing and Exporting Guide Version 18 P6 Professional Importing and Exporting Guide Version 18 August 2018 Contents About the P6 Professional Importing and Exporting Guide... 5 Importing and Exporting Data... 7 Import/Export Overview... 7

More information

MIDAS+ 7.0 and.net. What makes it Tick (Technically Speaking) Greg Brown Director, Customer Support Chad Flanigan Senior Analyst ACS MIDAS+

MIDAS+ 7.0 and.net. What makes it Tick (Technically Speaking) Greg Brown Director, Customer Support Chad Flanigan Senior Analyst ACS MIDAS+ MIDAS+ 7.0 and.net What makes it Tick (Technically Speaking) Greg Brown Director, Customer Support Chad Flanigan Senior Analyst ACS MIDAS+ MIDAS+ 7.0 and.net Server-side requirements Workstation-side requirements

More information

Reporting Best Practices

Reporting Best Practices Note You can find troubleshooting information for Cisco Unified Customer Voice Portal (Unified CVP) Reporting on the Cisco Troubleshooting Doc Wiki site The chapter contains the following topics: Reporting

More information

SQL Interview Questions

SQL Interview Questions SQL Interview Questions SQL stands for Structured Query Language. It is used as a programming language for querying Relational Database Management Systems. In this tutorial, we shall go through the basic

More information

[MS20487]: Developing Windows Azure and Web Services

[MS20487]: Developing Windows Azure and Web Services [MS20487]: Developing Windows Azure and Web Services Length : 5 Days Audience(s) : Developers Level : 300 Technology : Cross-Platform Development Delivery Method : Instructor-led (Classroom) Course Overview

More information

Real-time Integration of the HP NonStop ENSCRIBE file system Into an Oracle Database Using Periscope

Real-time Integration of the HP NonStop ENSCRIBE file system Into an Oracle Database Using Periscope October 21, 2004 WhiteCap Applications, Inc Real-time Integration of the HP NonStop ENSCRIBE file system Into an Oracle Database Using Periscope Goal Real-time seamless access of the HP NonStop ENSCRIBE

More information

31 Working with Documents in Web Intelligence Rich Client

31 Working with Documents in Web Intelligence Rich Client 31 Working with Documents in Web Intelligence Rich Client This session demonstrates working with documents using Web Intelligence Rich Client. 31.1 Working in Connected Mode You must have logged in using

More information

DQpowersuite. Superior Architecture. A Complete Data Integration Package

DQpowersuite. Superior Architecture. A Complete Data Integration Package DQpowersuite Superior Architecture Since its first release in 1995, DQpowersuite has made it easy to access and join distributed enterprise data. DQpowersuite provides an easy-toimplement architecture

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

AO3 - Version: 2. Oracle Database 11g SQL

AO3 - Version: 2. Oracle Database 11g SQL AO3 - Version: 2 Oracle Database 11g SQL Oracle Database 11g SQL AO3 - Version: 2 3 days Course Description: This course provides the essential SQL skills that allow developers to write queries against

More information

PowerCenter 7 Architecture and Performance Tuning

PowerCenter 7 Architecture and Performance Tuning PowerCenter 7 Architecture and Performance Tuning Erwin Dral Sales Consultant 1 Agenda PowerCenter Architecture Performance tuning step-by-step Eliminating Common bottlenecks 2 PowerCenter Architecture:

More information

Chapter 20: Database System Architectures

Chapter 20: Database System Architectures Chapter 20: Database System Architectures Chapter 20: Database System Architectures Centralized and Client-Server Systems Server System Architectures Parallel Systems Distributed Systems Network Types

More information