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

Size: px
Start display at page:

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

Transcription

1 KB_SQL Release Notes Version 4.3.Q2

2 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 means (including electronic storage and retrieval or translation into a foreign language) without prior agreement and written consent from, as governed by United States and international copyright laws. The information contained in this document is subject to change without notice. Knowledge Based Systems, Inc. does not warrant that this document is free of errors. If you find any problems in the documentation, please report them to us in writing Professional Plaza, Suite 230 Ashburn, Virginia WWW KB_SQL is a registered trademark of MUMPS is a registered trademark of the Massachusetts General Hospital. All other trademarks or registered trademarks are properties of their respective companies.

3 TABLE OF CONTENTS INTRODUCTION... 1 NEW FEATURES... 2 KB_SQL SERVER... 2 Support for Multi-line Comments... 2 Support for User Authentication... 3 Stored Procedures to Add Groups and Users... 5 KB_SQL ODBC DRIVER... 7 Password Encrypted in ODBC Connection... 7 QRE... 8 Foreign Keys Can Be Dragged and Dropped from Explorer... 8 QRE Usage Manuals Accessible from within QRE... 9 FIXED ITEMS KB_SQL SERVER FIXES KB_SQL ODBC DRIVER FIXES QRE FIXES ESERVICE CENTER FIXES KNOWN PROBLEMS KB_SQL SERVER KNOWN PROBLEMS QRE KNOWN PROBLEMS... 23

4 Introduction The Version 4.3.Q2 Release Notes provides information about the product's new features, fixes, and known problems for Knowledge Based Systems' VARs and enterprise clients. The features are documented to provide the reader with information regarding the purpose of the feature and its intended use. Key fixes are documented to provide the problem definition and possible symptoms of the problem. Known problems are documented to provide a detailed description of the problem, situations that may cause the problem, and in situations where possible, a workaround. 1

5 New Features KB_SQL Server Support for Multi-line Comments Multi-line comments in a query are now supported. Comment text should be enclosed within /* and */ tags. For example, /* Enter comment text between the beginning and ending comment tags. */ SELECT NAME FROM EMPLOYEES Important Notes: The previous syntax (--) will continue to be supported for comment lines that are <= 80 characters long. We recommend using the syntax for long comments if the comment length exceeds 80 characters. Comment types can be mixed within a query. For example, /* This query returns information about the projects that have a budget greater than $50,000 per year. */ SELECT PROJ_NO, PROJECT, LEADER, BUDGET FROM PROJECTS -- Restrict results to rows with a budget over WHERE BUDGET > Comments can be nested within other comments. 2

6 Support for User Authentication Beginning with version 4.3.Q2, server-side ^SQL entry points may require a username at login. The optional site parameter can be configured by setting the Require username at login? field under Configuration Site Edit Default Info. By default, user authentication disabled. Setting the Require username at login to Yes will require that the user provide a valid username and matching password when attempting to access any of the ^SQL entry points. Setting the Require username at login to No will prompt the user for a password. Resulting feedback if user authentication is enabled. Input at login Result A valid username and valid Logged in password No username The No User message displays: Username: No User A valid username and no password The No User message displays: Username: DBA Password: No User An invalid username The Enter a valid user username message displays and the user is prompted for a username again: Username: ABC Enter a valid user username Username: 3

7 Input at login A valid username with an invalid password: Result The Enter a valid user password message displays and the user is prompted for a password again: Username: DBA Password: Enter a valid user password Password: Programs that provide SQLUNAME and/or SQLAUTH values for API entry points should be aware of the following: 1. If a SQLUNAME is not provided, no username authentication is performed. As in previous versions, only the password provided by SQLAUTH will be verified. 2. If SQLUNAME is provided, it will be verified. 4

8 Stored Procedures to Add Groups and Users Several new stored procedures have been added to create and delete KB_SQL user groups and users. For additional information on these stored procedures, please see answer 496 in the online knowledge base. SQL_SP_USER_GROUP_ADD Creates a new user group. Required Argument Description Argument Group name The name of the group to be added. The group name must be unique and a valid SQL identifier. Default schema* An existing schema name that will be the default schema for the group. Base routine prefix An existing base routine prefix. Note that if no value is provided, the site s base routine prefix (Configuration Site Edit M Info) will be used for the group. SQL_SP_USER_GROUP_DELETE Deletes an existing user group. Required Argument Description Argument Group name The name of the group to be deleted. SQL_SP_USER_ADD Adds a new user. Required Argument Description Argument User name The name of the user to be added. The user name must be unique. Password A password for the user. The password must be unique within KB_SQL and must be <= 30 characters. 5

9 Group name The name of the group to which the user will belong. The group name must already exist in KB_SQL. SQL_SP_USER_DELETE Deletes an existing user. Required Argument Description Argument User name The name of the user to be deleted. 6

10 KB_SQL ODBC Driver Password Encrypted in ODBC Connection Previous versions of the KB_SQL ODBC Driver did not encrypt the password when sending the TCP/IP packet to the server. SQLConnect("KB_SQL Data Source","dba","SHARK") = (0,"100034") Figure 1. Network packet capture without encryption Version 4.3.Q2 and future versions of the KB_SQL ODBC Driver will send an encrypted password as shown in the following trace and network packet capture SQLConnect("KB_SQL Data Source","dba","X ","1") = (-1,"100034") Figure 2. Network packet capture with encryption In order to take advantage of the ODBC Driver s password encryption, the Server must be running version 4.3.Q2 or higher. 7

11 QRE Foreign Keys Can Be Dragged and Dropped from Explorer Foreign key links are now included in the list of table columns. This allows for foreign key links to be dragged and dropped to the query area. The foreign keys will continue to be listed in the Extended Properties window: 8

12 QRE Usage Manuals Accessible from within QRE The QRE Usage Manuals are now accessible from within QRE. The manuals are installed with QRE and are provided in Adobe.pdf format. To access the manuals, select the Help QRE Professional/Standard Usage Manual menu option. 9

13 Fixed Items This section has been categorized based on the affected component. KB_SQL Server KB_SQL ODBC Driver QRE Within each section, a table below lists the key items that were fixed in version 4.3. The following information is included: Description This is a high level description of the problem. Customer Incident # As customers submit issues to KBS support, each customer is given a unique identifier for their incident. This column represents the incident numbers that were assigned to individual reports of the problem. Online Knowledge Base Answer ID In situations where additional documentation is available, the information can be found in the online knowledge base using the Answer ID provided. If you do not have an account to the online knowledge base, please contact us at info@knowledgebasedsys.com to request an account. To search the online knowledge base with the provided id: 1. Log on to the online knowledge base at 2. Select the Answers tab. 3. In the Search Text field, enter the answer id. 4. Select Answer ID from the Search by list. 10

14 5. Click the Search button. For a complete update of incidents submitted by your company, please log onto our web site at and select the My Knowledge Base tab. 11

15 KB_SQL Server Fixes Problem Description (4) Multi-line comments were not supported. Please see the New Features section for more information. (18) A stored procedures created by a non-dba user could not be called by the user. (32) The number of non-zero digits available after division in MSE has been expanded to ten. To illustrate, the following query Customer Incident # Online Knowledge Base Answer ID SELECT ROUND(100/6, 10) FROM SQL_ONEROW Returned in versions prior to 4.3.Q2. In version 4.3.Q2, the query returns (63) By default, the Integrity Check in MSE will look for data dictionary entries with null subscripts. Any null subscripts in the ^SQL global that are found will be dropped and recorded in the Integrity Check Log as DROP NULLSUB errors. 534 If needed, the check for null subscripts can be disabled by setting SQLX("NO_NULLSUB") before running the Integrity Check (125) Committing changes, or lack of changes, to a table in Map Existing Globals was unnecessarily regenerating statistics on a table that had not had changes to its primary keys

16 Problem Description (298) Verbose transaction logging can be disabled at either the query level or the site level. By default, verbose transaction logging is enabled. To change the site level setting, set the Suppress verbose transaction log detail under Configuration Site Edit Date/Time Limits. To enable/disable verbose transaction logging at the query level, set TXLOG_VERBOSE appropriately. For example, the following query runs with verbose transaction logging disabled: SET TXLOG_VERBOSE OFF SELECT NAME, SALARY FROM EMPLOYEES Customer Incident # Online Knowledge Base Answer ID 536 (325) A new pseudo column, QRE_TITLE, has been added to allow users to query the site s display text for the QRE title bar. (408) The If Needed option has been modified to only regenerate statistics if either of the following are true: (a) The table s primary key definition was accessed (regardless of whether or not changes were made). (b) A primary key column was accessed (regardless of whether or not changes were made) (471) The EVERYHOUR start date was not properly padding the time value in ANSI causing queries to miss scheduled runs after midnight. (475) Sites that journaled the ^SQL global were journaling large structures such as ^SQL(77) that did not need to be journaled. Beginning with 4.3.Q2, the data that was stored in ^SQL(77,SQL(2),50) will be stored in the temporary global ^SQLXX($JOB,"Text")

17 Problem Description (478) Entries in the DESCRIBE_QUERY table (^SQL(611)) were unnecessarily being stored for file download queries. Customer Incident # Online Knowledge Base Answer ID (482) Compile All Queries now provides an option to specify queries that were run within a user-specified date range. (487) The DDL interface did not check the lengths of object names being created and incorrectly allowed for names > 30 characters. (490) The product did not provide an option to authenticate user names on the server interfaces. Please see the New Features section for more information. (491) There was no programmatic API for adding or deleting users. Please see the New Features section for more information. (496) There was no programmatic API for adding or deleting user groups. Please see the New Features section for more information (501) The user password field has been expanded to allow for passwords up to 30 characters long. (504) SQLFreeStmt Close was not clearing parameter conversion results (506) Several new functions have been added to return the first day, first weekday, last day, and last weekday of the quarter. New start date rules have also been added to schedule a query to run at quarterly intervals , 556 (508) Running a query that sends output to file without a filename caused an invalid error to be displayed for SQL Editor queries during the session

18 Problem Description (509) The Query Transaction Detailed Log incorrectly showed 25 rows rejected instead of the actual number if the number of rows rejected exceeded 25. (521) Site s that had the Nothing to Print message enabled encountered an error at 2^SQL0OUT if a query with no results was run to the background. (522) In EZQ, constraining on a foreign key column using a numeric with a decimal value incorrectly displayed the error "Invalid INTEGER". (550) Importing a table that had been made inactive caused the table to not be accessible. (551) The PLANNER_MAX_COST_CEILING site setting added in 4.3.Q1 did not have an associated window where its value could be viewed and modified. Customer Incident # Online Knowledge Base Answer ID (552) Custom code can be executed when a query is deleted from the query queue (558) The host file name handler was returning a nondescriptive 999 message instead of the 0732: Illegal filename error message. (560) A new parameter, COST_CEILING, has been added to allow a query s cost ceiling to exceed the site s specified cost ceiling. 563 (561) Tables with a sample size of 0 were incorrectly being resubmitted to the statistics if the difference between the base table s row count and index table s row count exceeded 75%. (564) The ALTER RENAME syntax in SQL Editor was not checking the length of the new name to ensure that it did not exceed 30 characters

19 Problem Description (566) RESET^SQL was not removing the background queue, compile queries, statistics, or user locks. Customer Incident # Online Knowledge Base Answer ID (567) No menu options were available to clear the statistics queue or error log. (569) Once the 0239: Device <value> is not a printer message occurred, it incorrectly displayed for all queries in SQL Editor until the user skipped out of SQL Editor and re-entered. (570) The SQL_FN_TIMESTAMPADD and SQL_FN_TIMESTAMPDIFF functions for week, month, quarter, and year intervals were corrected , (571) Sending a query to run in the background did not provide any feedback as to the time or date that the query was set to run. In addition to the 0811: Query execute has been added to the background queue message, a new message, 898 will be returned that includes the date, time and start date if applicable for when the query is scheduled to run. (573) The ELAPSED_TIME output format was not associated with the TRANSACTION_LOG.TOTAL_TIME column

20 KB_SQL ODBC Driver Fixes Description (1) If the default description for a version 4.x KB_SQL ODBC Driver had been changed, the installer was overwriting the modified description during an upgrade. (489) Passwords were not encrypted when the TCP/IP packet was sent to the server. Please see the New Features section for more information. Customer Incident # Online Knowledge Base Answer ID

21 QRE Fixes Description (11) The Find dialogue has been simplified so that both object names and their descriptions are searched. (14) The status bar displayed while refreshing the Repository did not provide an accurate representation of the amount of time remaining for the refresh. Customer Incident # Online Knowledge Base Answer ID (33) Queries created, altered, or dropped from QRE were not logged in the Query Transaction Log. (68) The QRE Usage Guides were not available from within QRE. (80) A new method, GetKBSUID, has been added to QRE Services to return the KBSUID from KB_SQL (83) If the \data directory did not exist when a user attempted to create a new draft query, an error was returned. (325) Additional information, such as the server identifier, can be added to the QRE title bar (356) Foreign key links were not available for drag and drop from the Explorer window. Although they were viewable from the Extended Properties window, they could not be dropped into the query area. (358) The values displayed for the "Columns", "Foreign Keys Out" and "Foreign Keys In" in Extended Properties are not listed in alphabetical order. (371) Columns returned by a Repository search did not include the column description

22 Description (396) The default width of the Queue Inspector columns Query, User, Rule, and Status were not wide enough to accommodate the longest possible value. (402) When running a query to a host device, the cursor was not automatically positioned in the Device Name field. (403) Underscores in comment lines were not always visible depending on the cursor s position within the query text. (424) The Host Device Dialog s partial device lookup was not displaying the complete device name in the Device Name field. (434, 466) The device name column was not wide enough to accommodate the entire device name in the Host Device Dialogue. (459) Tasks were not deleted from the background queue if they were selected from the bottom of the list up. (469) The New Query Properties Dialog was not being cleared after an invalid entry. (470) The list of available host devices was being repopulated each time a query sent output to a host device. For sites that had a large number of devices (>1000), the repopulation of the device list was slow. (486) A regular expression entered in the Find window was not being preserved after a match was found. (488) The 767 Query references table(s) without statistics" message was not displayed in QRE. (493) The installer has been updated to install a customized version of the CodeMax Edit control called kbsedit.ocx. Customer Incident # Online Knowledge Base Answer ID 19

23 Description (497) A table name that exceeded the 30 character limit caused the repository refresh to generate the following error: Error Number: Source Module: KBSExplorer Description: A string literal was not closed. (510) Table Print generated 6-8 extra lines of whitespace at the bottom of each page of output. (528) The keyboard shortcut to display the Replace window was incorrectly displaying the Find window. Customer Incident # Online Knowledge Base Answer ID 20

24 eservice Center Fixes Description The Answer ID was not displayed in the answers list. (520) QRE Professional, QRE Standard, and QRE Services were listed separately. The three products are now listed as sub-products of QRE: The information displayed for an answer has been simplified to show only pertinent information: 21

25 Known Problems Below are some of the known problems that still exist in version 4.3. For updates on these or other known problems, please visit our website. KB_SQL Server Known Problems Description (8) Job Watch does not stop a running query. (13) It is possible for some errors to exceed the width of the display box used to display error text. This causes the error message to become truncated. (78) There are certain situations in MSE that cause the IN clause to not be optimized. (255) Virtual columns defined with foreign key references beyond the first level of foreign key indirection have the potential to be incorrectly evaluated. (363) Accessing tables with 'Programmer Only' columns via SQL Server linked server can return the following message: Server: Msg 7355, Level 16, State 1, Line 3 OLE DB provider 'MSDASQL' supplied inconsistent metadata for a column. The name was changed at execution time. Customer Incident # Online Knowledge Base Answer ID (455) An outer join view with a constraint on nonpreserved table can fail with a <SUBSCRIPT> error. (468) A query run from a batch query cannot be commented out after a parsing error occurs (500) <STACKCRIT> errors can occur if error trapping logic is called recursively in GT.M. 22

26 Description (507) If a query in the queue is changed, the query is recompiled when it is time for it to run. However, the query output is not sent to the device. (524) The Query Transaction Detail report prints "Nothing to Print" when run in the background in MSE. Running the report in foreground produces results. (574) Running NOTRAP^SQL0LOAD on GT.M can fail if the site does not have a SQLSCR.2 file. Customer Incident # Online Knowledge Base Answer ID QRE Known Problems Description (7) The "Refresh This Node" at the schema level has no affect on its underlying objects (tables, columns, indices, views, and stored procedures). The only way to get underlying objects to reflect an update is to specifically select the object type before selecting "Refresh this Node". (526) Using the Edit > Find/Mark All feature more than once on a query does not clear the arrows from the previous Mark All. Customer Incident # Online Knowledge Base Answer ID 23

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

SQL Optimizer for IBM DB2 LUW User Guide

SQL Optimizer for IBM DB2 LUW User Guide SQL Optimizer for IBM DB2 LUW 4.3.1 User Guide Contents 12 12 Getting Started 13 User Logon Screen 13 Access Plan Table 13 Connect to the Database 14 Loading information from the Data Dictionary 14 User

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

Embarcadero Rapid SQL

Embarcadero Rapid SQL Product Documentation Embarcadero Rapid SQL New Features Guide Version 8.6.1/XE5 Published May, 2014 2014 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other Embarcadero

More information

Nexio IconStation Data Source Wizard

Nexio IconStation Data Source Wizard Nexio IconStation Data Source Wizard 6/18/2014 175-100354-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

OneStop Reporting 4.5 OSR Administration User Guide

OneStop Reporting 4.5 OSR Administration User Guide OneStop Reporting 4.5 OSR Administration User Guide Doc. Version 1.2 Updated: 10-Dec-14 Copyright OneStop Reporting AS Contents Introduction... 1 Who should read this manual... 1 What s included in this

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

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x

Perceptive Nolij Web. Administrator Guide. Version: 6.8.x Perceptive Nolij Web Administrator Guide Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates.. Table of Contents Introduction...

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 Corporation Test Data Management Version 9.6.0 Release Notes August 2014 Copyright (c) 2003-2014 Informatica Corporation. All rights reserved. Contents Informatica Version 9.6.0... 1 Installation

More information

Index. Symbol function, 391

Index. Symbol function, 391 Index Symbol @@error function, 391 A ABP. See adjacent broker protocol (ABP) ACID (Atomicity, Consistency, Isolation, and Durability), 361 adjacent broker protocol (ABP) certificate authentication, 453

More information

DTS. The SQL Server 2000 client installation adds the necessary components for creating DTS packages. You can save your DTS packages to:

DTS. The SQL Server 2000 client installation adds the necessary components for creating DTS packages. You can save your DTS packages to: 11 DTS Data Transformation Services (DTS) is the most versatile tool included with SQL Server 2000. Most SQL Server professionals are first exposed to DTS via the DTS Import and Export Wizard; however,

More information

Nexio G-Scribe Data Source Wizard

Nexio G-Scribe Data Source Wizard Nexio G-Scribe Data Source Wizard 6/17/2014 175-100330-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

KYOCERA Net Admin User Guide

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

More information

SAS 9.3 LIBNAME Engine for DataFlux Federation Server

SAS 9.3 LIBNAME Engine for DataFlux Federation Server SAS 9.3 LIBNAME Engine for DataFlux Federation Server User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS 9.3 LIBNAME Engine for

More information

Sql Server Syllabus. Overview

Sql Server Syllabus. Overview Sql Server Syllabus Overview This SQL Server training teaches developers all the Transact-SQL skills they need to create database objects like Tables, Views, Stored procedures & Functions and triggers

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

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer User Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

OSR Administration 3.7 User Guide. Updated:

OSR Administration 3.7 User Guide. Updated: OSR Administration 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

Ascent 6.06 Release Script for Hummingbird DM Release Notes

Ascent 6.06 Release Script for Hummingbird DM Release Notes Ascent 6.06 Release Script for Hummingbird DM 5.0-5.1 Release Notes 10001305-000 Revision A September 27, 2004 Copyright Copyright 2004 Kofax Image Products, Inc. All Rights Reserved. Printed in USA. The

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

SAS. Information Map Studio 3.1: Creating Your First Information Map

SAS. Information Map Studio 3.1: Creating Your First Information Map SAS Information Map Studio 3.1: Creating Your First Information Map The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Information Map Studio 3.1: Creating Your

More information

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator System Administration Guide Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator, Version 5.1 This manual, and the accompanying software and other documentation,

More information

AppsAudit. User s Guide. Software Version 6.5.6

AppsAudit. User s Guide. Software Version 6.5.6 AppsAudit User s Guide Software Version 6.5.6 2006 LogicalApps All rights reserved. Printed in USA. Restricted Rights Legend This software and associated documentation contain proprietary information of

More information

Embarcadero DB Optimizer 1.5 SQL Profiler User Guide

Embarcadero DB Optimizer 1.5 SQL Profiler User Guide Embarcadero DB Optimizer 1.5 SQL Profiler User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All

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

Amazon Redshift ODBC Driver 1.3.6

Amazon Redshift ODBC Driver 1.3.6 Amazon Redshift ODBC Driver 1.3.6 Released August 10, 2017 These release notes provide details of enhancements, features, and known issues in Amazon Redshift ODBC Driver 1.3.6, as well as the version history.

More information

PowerPlanner manual. Contents. Powe r Planner All rights reserved

PowerPlanner manual. Contents. Powe r Planner All rights reserved PowerPlanner manual Copyright Powe r Planner All rights reserved Contents Installation... 3 Setup and prerequisites... 3 Licensing and activation... 3 Restoring examples manually... 4 Building PowerPivot

More information

Emergency Bug Fixes (9.7.0)... 1 Fixed Limitations (9.7.0)... 2 Known Limitations (9.7.0)... 3 Informatica Global Customer Support...

Emergency Bug Fixes (9.7.0)... 1 Fixed Limitations (9.7.0)... 2 Known Limitations (9.7.0)... 3 Informatica Global Customer Support... Informatica Corporation Dynamic Data Masking Version 9.7.0 Release Notes August 2015 Copyright (c) 1993-2015 Informatica Corporation. All rights reserved. Contents Emergency Bug Fixes (9.7.0)... 1 Fixed

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

Using the aregcmd Commands

Using the aregcmd Commands CHAPTER 2 This chapter describes how to use each of the aregcmd commands. The Cisco Access Registrar aregcmd command is a command-line based configuration tool. It allows you to set any Cisco Access Registrar

More information

Administrator for Enterprise Clients: User s Guide. Second Edition

Administrator for Enterprise Clients: User s Guide. Second Edition Administrator for Enterprise Clients: User s Guide Second Edition The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2002. Administrator for Enterprise Clients: User s

More information

ODBC Client Driver PTC Inc. All Rights Reserved.

ODBC Client Driver PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 4 Overview 4 External Dependencies 4 Setup 5 Channel Properties General 5 Channel Properties Write Optimizations 6 Channel Properties

More information

For Trace and Log Central to work, you must resolve DNS lookup for all nodes in the cluster on the client machine.

For Trace and Log Central to work, you must resolve DNS lookup for all nodes in the cluster on the client machine. Trace and Log Central, page 1 Log Viewers, page 42 Plugins, page 45 Trace and Log Central For Trace and Log Central to work, you must resolve DNS lookup for all nodes in the cluster on the client machine.

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Composer 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 2 Who should read this manual... 2 What s included in this manual... 2 Symbols and

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

OSR Composer 3.7 User Guide. Updated:

OSR Composer 3.7 User Guide. Updated: OSR Composer 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this manual...

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

Oracle. Engagement Cloud Using Service Request Management. Release 12

Oracle. Engagement Cloud Using Service Request Management. Release 12 Oracle Engagement Cloud Release 12 Oracle Engagement Cloud Part Number E73284-05 Copyright 2011-2017, Oracle and/or its affiliates. All rights reserved. Author: Joseph Kolb This software and related documentation

More information

Release Notes Scribe Adapter for Microsoft Dynamics CRM

Release Notes Scribe Adapter for Microsoft Dynamics CRM Release Notes Scribe Adapter for Microsoft Dynamics CRM Requirements Version 4.2.1 Release Date June 26, 2008 Scribe Insight 6.3 or later Microsoft Dynamics CRM 3.0, 4.0, or Online What s new in version

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Working with Query Objects Intellicus Enterprise Reporting and BI Platform ` Intellicus Technologies info@intellicus.com www.intellicus.com Working with Query Objects i Copyright 2012 Intellicus Technologies

More information

Table of Contents. Table of Contents

Table of Contents. Table of Contents Powered by 1 Table of Contents Table of Contents Dashboard for Windows... 4 Dashboard Designer... 5 Creating Dashboards... 5 Printing and Exporting... 5 Dashboard Items... 5 UI Elements... 5 Providing

More information

AvePoint Office Connect Online Manager 1.0

AvePoint Office Connect Online Manager 1.0 AvePoint Office Connect Online Manager 1.0 Administration Guide Issued August 2017 1 Table of Contents Introduction...3 Submitting Documentation Feedback to AvePoint...4 Required Permissions...5 Brower

More information

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

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

More information

IBM Tivoli Storage Manager HSM for Windows Version 7.1. Messages

IBM Tivoli Storage Manager HSM for Windows Version 7.1. Messages IBM Tivoli Storage Manager HSM for Windows Version 7.1 Messages IBM Tivoli Storage Manager HSM for Windows Version 7.1 Messages Note: Before using this information and the product it supports, read the

More information

Scenario Manager User Guide. Release September 2013

Scenario Manager User Guide. Release September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Scenario Manager User Guide Release 6.2.1 September 2013 Document Control Number: 9MN12-62110017 Document Number: SMUG-13-FCCM-0017-6.2.1-01 Oracle

More information

KwikTag T3 Release Notes

KwikTag T3 Release Notes KwikTag T3 Release Notes The KwikTag T3 release is a major release with many great new features and improvements to quality and performance. KwikTag T3 was released on 01/23/2012 with a customer compatibility

More information

GnuCOBOL Quick Reference

GnuCOBOL Quick Reference GnuCOBOL Quick Reference For Version 2.2 Final [7Sept2017] Gary L. Cutler (cutlergl@gmail.com). For updates Vincent B. Coen (vbcoen@gmail.com). This manual documents GnuCOBOL 2.2 Final, 7Sept2017 build.

More information

erwin Data Modeler Editing Forward Engineering Templates Release 9.7

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

More information

Configuration of trace and Log Central in RTMT

Configuration of trace and Log Central in RTMT About Trace Collection, page 1 Preparation for trace collection, page 2 Types of trace support, page 4 Configuration of trace collection, page 5 Collect audit logs, page 19 View Collected Trace Files with

More information

Project Manager User Manual

Project Manager User Manual Project Manager User Manual Overview Welcome to your new Project Manager application. The Project Managaer is implemented as a web site that interfaces to an SQL database where all of the project and time

More information

Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1

Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1 Using SAP NetWeaver Business Intelligence in the universe design tool SAP BusinessObjects Business Intelligence platform 4.1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part

More information

Version 15.0 [Administrator s Guide]

Version 15.0 [Administrator s Guide] Monarch Server Report Mining Edition Version 15.0 [Administrator s Guide] Datawatch Corporation makes no representation or warranties with respect to the contents of this manual or the associated software

More information

Blackbaud FundWare idata Installation and Technical Guide

Blackbaud FundWare idata Installation and Technical Guide Blackbaud FundWare idata Installation and Technical Guide VERSION 7.60, SEPTEMBER 2009 Blackbaud FundWare idata Installation and Technical Guide TECHNICAL GUIDE HISTORY Date Changes January 2002 Initial

More information

Oracle Utilities Work and Asset Management

Oracle Utilities Work and Asset Management Administration System Administration Oracle Utilities Work and Asset Management Volume 8 Administration User Guide Release 1.9.0.4.6 E26186-02 October 2012 Oracle Utilities Work and Asset Management Administration

More information

Arcserve Backup for Windows

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

More information

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)

Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager) Contents Getting started with R-Tag Viewer and Scheduler (R-Tag Report Manager)... 2 Reports... 3 Add a report... 3 Run a report...15 Jobs...15 Introduction...15 Simple jobs....15 Bursting jobs....16 Data

More information

Microsoft MOS- Using Microsoft Office Access Download Full Version :

Microsoft MOS- Using Microsoft Office Access Download Full Version : Microsoft 77-605 MOS- Using Microsoft Office Access 2007 Download Full Version : http://killexams.com/pass4sure/exam-detail/77-605 QUESTION: 120 Peter works as a Database Designer for AccessSoft Inc. The

More information

AppsAudit. User s Guide. Software Version 7.0

AppsAudit. User s Guide. Software Version 7.0 AppsAudit User s Guide Software Version 7.0 2005 Logical Apps All rights reserved. Printed in USA. Restricted Rights Legend This software and associated documentation contain proprietary information of

More information

APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software. Each of these steps can be executed independently.

APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software. Each of these steps can be executed independently. 255 APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software Introduction 255 Generating a QMF Export Procedure 255 Exporting Queries from QMF 257 Importing QMF Queries into Query and Reporting 257 Alternate

More information

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant Oracle Developer Track Course Contents Sandeep M Shinde Oracle Application Techno-Functional Consultant 16 Years MNC Experience in India and USA Trainer Experience Summary:- Sandeep M Shinde is having

More information

Senturus Analytics Connector. User Guide Cognos to Tableau Senturus, Inc. Page 1

Senturus Analytics Connector. User Guide Cognos to Tableau Senturus, Inc. Page 1 Senturus Analytics Connector User Guide Cognos to Tableau 2019-2019 Senturus, Inc. Page 1 Overview This guide describes how the Senturus Analytics Connector is used from Tableau after it has been configured.

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc.

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. SURVEYOR/400 Users Guide Copyright 1996-2013, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Surveyor/400 version: 4.0.0 Publication date: August 7 th, 2013 Table of Contents SURVEYOR/400

More information

Scribe Insight 6.5. Release Overview and Technical Information Version 1.0 April 7,

Scribe Insight 6.5. Release Overview and Technical Information Version 1.0 April 7, Scribe Insight 6.5 Release Overview and Technical Information Version 1.0 April 7, 2009 www.scribesoft.com Contents What is Scribe Insight?... 3 Release Overview... 3 Product Management Process Customer

More information

SAS Data Explorer 2.1: User s Guide

SAS Data Explorer 2.1: User s Guide SAS Data Explorer 2.1: User s Guide Working with SAS Data Explorer Understanding SAS Data Explorer SAS Data Explorer and the Choose Data Window SAS Data Explorer enables you to copy data to memory on SAS

More information

CA Harvest Software Change Manager

CA Harvest Software Change Manager CA Harvest Software Change Manager Messages Guide Release 12.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Creating and Managing Tables Schedule: Timing Topic

Creating and Managing Tables Schedule: Timing Topic 9 Creating and Managing Tables Schedule: Timing Topic 30 minutes Lecture 20 minutes Practice 50 minutes Total Objectives After completing this lesson, you should be able to do the following: Describe the

More information

Embarcadero Rapid SQL

Embarcadero Rapid SQL Product Documentation Embarcadero Rapid SQL New Features Guide Version 8.7.2/XE6 Published Dec., 2014 2014 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other

More information

P4VS User Guide Patch October 2017

P4VS User Guide Patch October 2017 P4VS User Guide 2017.2 Patch October 2017 Copyright 2012-2017 Perforce Software. All rights reserved. Perforce Software and documentation is available from www.perforce.com. You can download and use Perforce

More information

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

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

More information

Matisse Editor User Guide for MS Windows

Matisse Editor User Guide for MS Windows Matisse Editor User Guide for MS Windows Seventh Edition January 2003 Document number: DE/97/03/0006R6 2 Matisse Editor User Guide for MS Windows Matisse Editor User Guide for MS Windows Document number:

More information

Guest Management Software V2.0.2 Release Notes

Guest Management Software V2.0.2 Release Notes Guest Management Software V2.0.2 Release Notes Abstract These release notes provide important release-related information for GMS (Guest Management Software) Version 2.0.2. GMS V2.0.2 is MSM software version

More information

Course Outline and Objectives: Database Programming with SQL

Course Outline and Objectives: Database Programming with SQL Introduction to Computer Science and Business Course Outline and Objectives: Database Programming with SQL This is the second portion of the Database Design and Programming with SQL course. In this portion,

More information

CorreLog. SQL Table Monitor Adapter Users Manual

CorreLog. SQL Table Monitor Adapter Users Manual CorreLog SQL Table Monitor Adapter Users Manual http://www.correlog.com mailto:support@correlog.com CorreLog, SQL Table Monitor Users Manual Copyright 2008-2018, CorreLog, Inc. All rights reserved. No

More information

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide SyncFirst Standard Quick Start Guide Step-By-Step Guide How to Use This Manual This manual contains the complete documentation set for the SyncFirst system. The SyncFirst documentation set consists of

More information

Topic 1, Volume A QUESTION NO: 1 In your ETL application design you have found several areas of common processing requirements in the mapping specific

Topic 1, Volume A QUESTION NO: 1 In your ETL application design you have found several areas of common processing requirements in the mapping specific Vendor: IBM Exam Code: C2090-303 Exam Name: IBM InfoSphere DataStage v9.1 Version: Demo Topic 1, Volume A QUESTION NO: 1 In your ETL application design you have found several areas of common processing

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: Local: 1800 425 8877 Intl: +91 80 4108 4700 Oracle Database: Program with PL/SQL Duration: 50 Hours What you will learn This course introduces students to PL/SQL and helps

More information

CA Agile Vision and CA Product Vision. Integration Guide

CA Agile Vision and CA Product Vision. Integration Guide CA Agile Vision and CA Product Vision Integration Guide Spring 2012 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Table of Contents. User Manual

Table of Contents. User Manual USER MANUAL 5.0 Table of Contents Introduction... 2 Features and Benefits... 2 Overview... 3 Standard User... 3 Administrator... 3 Unconnected... 3 Connect or Connected... 4 Configuration... 5 Settings...

More information

Access Gateway Client User's Guide

Access Gateway Client User's Guide Sysgem Access Gateway Access Gateway Client User's Guide Sysgem AG Sysgem is a trademark of Sysgem AG. Other brands and products are registered trademarks of their respective holders. 2013-2015 Sysgem

More information

Lookup Transformation in IBM DataStage Lab#12

Lookup Transformation in IBM DataStage Lab#12 Lookup Transformation in IBM DataStage 8.5 - Lab#12 Description: BISP is committed to provide BEST learning material to the beginners and advance learners. In the same series, we have prepared a complete

More information

Oracle Schema Create Date Index Trunc >>>CLICK HERE<<<

Oracle Schema Create Date Index Trunc >>>CLICK HERE<<< Oracle Schema Create Date Index Trunc Changes in This Release for Oracle Database SQL Language Reference. open References to Partitioned Tables and Indexes References to Object Type Attributes and Methods

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the fundamentals of SQL and PL/SQL along with the

More information

EMC SourceOne for File Systems

EMC SourceOne for File Systems EMC SourceOne for File Systems Version 7.2 Administration Guide 302-000-958 REV 02 Copyright 2005-2015 EMC Corporation. All rights reserved. Published in the USA. Published December 9, 2015 EMC believes

More information

Review -Chapter 4. Review -Chapter 5

Review -Chapter 4. Review -Chapter 5 Review -Chapter 4 Entity relationship (ER) model Steps for building a formal ERD Uses ER diagrams to represent conceptual database as viewed by the end user Three main components Entities Relationships

More information

Lab # 4. Data Definition Language (DDL)

Lab # 4. Data Definition Language (DDL) Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 4113: Lab # 4 Data Definition Language (DDL) Eng. Haneen El-Masry November, 2014 2 Objective To be familiar with

More information

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center KPI Configuration Guide Release 10.2.1 E77501-01 June 2017 1 Oracle Communications Performance Intelligence Center KPI Configuration Guide, Release

More information

Xpert BI General

Xpert BI General Xpert BI 2.5.0.2 - Added the SAP RFC Collection Module (licensed). - Added the SOAP Web Service Collection Module (licensed). - Added the REST Web Service Collection Module (licensed). - Added the Publication

More information

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model Database Design Section1 - Introduction 1-1 Introduction to the Oracle Academy o Give examples of jobs, salaries, and opportunities that are possible by participating in the Academy. o Explain how your

More information

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 2

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 2 Department of Computer Science University of Cyprus EPL342 Databases Lab 2 ER Modeling (Entities) in DDS Lite & Conceptual Modeling in SQL Server 2008 Panayiotis Andreou http://www.cs.ucy.ac.cy/courses/epl342

More information

CA Performance Management Data Aggregator

CA Performance Management Data Aggregator CA Performance Management Data Aggregator Basic Self-Certification Guide 2.4.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to

More information

unipoint Version Upgrade Read-me Table of Contents

unipoint Version Upgrade Read-me Table of Contents unipoint Version 2013.2.3 Upgrade Read-me Table of Contents 2013.0.0 Enhancements 4 Installation & Configuration 4 CPA 4 Doc Control 4 Inspection Specification 4 Inspection Records 7 NC 8 Options 8 Reporting

More information

CA ERwin Data Modeler

CA ERwin Data Modeler CA ERwin Data Modeler Implementation Guide Release 9.5.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM 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 Database 11g: SQL and PL/SQL Fundamentals

Oracle Database 11g: SQL and PL/SQL Fundamentals Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle Database 11g: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn In this course, students learn the fundamentals of SQL and PL/SQL

More information

Oracle Database: SQL and PL/SQL Fundamentals Ed 2

Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information