CL4 Open Access ODBC Database Server Release 1.1

Size: px
Start display at page:

Download "CL4 Open Access ODBC Database Server Release 1.1"

Transcription

1 CL4 Open Access ODBC Database Server Release 1.1 Overview This document describes CL4 Open Access ODBC Server, the ODBC/OLE- DB client and ODBC server for the CL4 application development environment. Release 1.1 delivers:?? The ODBC/OLE-DB Client for Windows/NT. This allows Windows based development tools and applications to access remote CL4 databases via the CL4 ODBC Server.?? The ODBC library for Unix. This allows Unix based tools and applications to access remote CL4 databases via the CL4 ODBC Server.?? CL4 ODBC Server. This Unix server manages SQL access to CL4 databases. 1

2 Traditional CL4 The CL4 runtime environment is conceptually two tightly integrated parts as shown in below. The CL4 4GL engine and the CL4 database manager accessing one or more CL4 databases. This traditional CL4 environment will continue to be refined and enhanced. Each CL4 procedure is running within its own CL4 runtime. This is why CL4 is so scaleable, particularly in multi-processor environments. This architecture has been very successful for CL4 and has allowed CL4 developers and clients to rapidly develop and deploy complex applications into local and remote locations and except for purging historical records and backups, to run them virtually unattended. cl4 Runtime Manager The executes the CL4 procedure on data delivered from the integrated database manager. The database manager looks after all data access including locking and unlocking logical records and acquiring and managing pools of database pages. CL4 databases contain pages which are either data or index pages. The database manager looks after these in such a way that CL4 databases are virtually self managing. 2

3 CL4 for the World Wide Web CL4 has the ability to run procedures as Internet Common Gateway Interface (CGI) procedures behind a web server. Unlike other CGI solutions which fail to scale successfully, CL4 has provided impressive performance and scaleability in this environment. In a forthcoming release CL4 will also be able to act as an Extensible Markup Language (XML) based Simple Object Access Protocol (SOAP) server. Each CL4 procedure is running within its own CL4 runtime opening databases and tables only when required. CGI Interface CGI or XML Web Server cl4 Runtime HTML or XML Manager A web page or other computer process connects to a web server and invokes a CL4 procedure. Information from the web page or hyper-link is passed by the web server to CL4 through CGI or a SOAP XML envelope. The CGI or XML input is presented to CL4 procedures in a standard way. The executes the CL4 procedure on data delivered from the integrated database manager and returns either HTML or XML. The database manager looks after all data access including locking and unlocking logical records and acquiring and managing pools of database pages. CL4 databases contain pages which are either data or index pages. The database manager looks after these in such a way that CL4 databases are virtually self managing. 1

4 ODBC/OLE-DB Client and Server for CL4 ODBC (Open DataBase Connectivity) is a standard mechanism for accessing databases from different vendors using SQL (Structured Query Language). ODBC is a common method for tools and applications, especially PC based ones to access local databases and corporate databases over internal networks. OLE-DB is a Microsoft initiative to give SQL or SQL like access to a wide variety of information stores ranging from hierarchial, network, proprietary relational and ODBC databases to flat files, mail boxes, sound and video archives. The 1.1 Release of CL4 ODBC Server delivers an ODBC/OLE-DB PC client and an ODBC server running on the most popular UNIX platforms to provide access to CL4 databases from third party products such as:?? ad-hoc query and report generators eg Crystal Reports, Cognos Impromptu, Forest & Trees?? development tools eg Visual Basic, Visual C++, Delphi, Visual Studio and InterDev.?? 3 rd party applications such as SAP and Oracle Financials The product includes technology licensed from Automation Technology Inc. The release includes an ODBC/OLE-DB client to enable connection to the server from the 32 bit Microsoft Windows platforms; Windows95, Windows 98, Windows NT and Windows A client to allow access from the 16 bit Windows 3.1 platform is not available. The release also includes an ODBC client library for the supported UNIX platforms. The relationship between traditional CL4 and the CL4 ODBC Server implemented in a traditional client/server environment is pictured below. 2

5 CL4 Runtime Manager Client to CL4 Server - Local Network 3 rd Party Tool or Application ODBC/OLE-DB Interface library ODBC/OLE-DB Client 3 rd party applications issue SQL instructions on the client addressed to a CL4 data source on the server. Using an optimised transport strategy, the ODBC/OLE-DB client sends these instructions to the server and receives back the results. During this process the CL4 runtime is uninvolved. However, CL4 procedures can also be acting on the target CL4 databases. The ODBC/OLE-DB client can fire off stored procedures that are CL4 procedures that execute on the server against CL4 databases ODBC Server Interface Library The ODBC server parses, interprets, optimises and executes the SQL statements through CL4 database interface routines. The complete CL4 ODBC Server product consists of the ODBC/OLE-DB Client, the network transport layer, the ODBC Server and the Interface Library. Existing or future applications written in CL4 and accessing CL4 databases will continue to be supported on the current CL4 supported platforms. These include traditional dumb terminal based systems and the existing Internet applications built using the Common Gateway Interface (CGI). 3

6 Planned CL4 ODBC Client This is an ambitious project to augment traditional CL4 database access with access to other popular databases. This facility is NOT provided in Release 1.1 of the CL4 ODBC Server The CL4 ODBC Client is a significant enhancement to the CL4 4GL and to the CL4 run time engine. The aim is to provide an ODBC client interface from CL4 applications running on UNIX to the CL4 ODBC Server with native interfaces to CL4, Oracle, Informix and perhaps others on UNIX as well as to any ODBC enabled databases such as:?? CL4?? Oracle?? Sybase?? Microsoft SQL Server through an NT server acting as an ODBC middleware server. The databases themselves will be able to reside on UNIX or NT. The new CL4 will incorporate the ODBC client library for the supported UNIX platforms as an extra cost add-on. The relationship between traditional CL4, the ODBC enabled CL4, the ODBC/OLE-DB client library, the CL4 ODBC Server and other ODBC data sources implemented in a traditional client/server environment is pictured below. A major design goal is to minimise the impact on existing applications. The ideal is to be able to design and deliver an application without needing to know whether it will finally be implemented on a CL4 database or on an Oracle or Sybase database. To achieve this goal, it is likely that unless there are compelling reasons to do so, we will limit data access functionality to that already delivered by CL4 and look for potential improvements and/or enhancements at a later date. However, since CL4 was designed to operate in a hosted environment, we may need to approach some statements, such as the 'join' which tests a data entry field against possible values in a database table, in a different way to maximise performance in a client/server world. One suggested approach is to develop an additional layer between the existing CL4 runtime and the CL4 database manager that either routes the requests directly to the CL4 database manager if the data is held in a CL4 database or diverts the request to routines which convert these record oriented requests to appropriate set oriented ODBC/OLE-DB calls. In the same way, these conversion routines would manage the sets of records resulting from the ODBC/OLE-DB calls and hand them out record by record to the CL4 runtime. 4

7 CL4 Client/CL4 Server - Local Network CL4 Application CL4 Data Mgr CL4 Runtime Manager ODBC/OLE-DB Interface library ODBC/OLE-DB Client ODBC/OLE-DB Server CL4 applications issue requests to local CL4 databases and to attached ODBC databases through the ODBC interface library. The SQL instructions on the client are addressed to a CL4 or other ODBC data source on the server. Using an optimised transport strategy, the ODBC client sends these instructions to the server and receives back the results. As much as possible, the SQL results will appear to the CL4 runtime as if they were from local CL4 databases.. Server based CL4 procedures can also be acting on the target CL4 databases. Some of these could be stored procedures executed on the server at the client's request. Interface Library other ODBC Oracle Sybase The ODBC server parses, interprets, optimises and executes the SQL statements through CL4 database interface routines. The server supports other 3 rd party databases The complete CL4 ODBC Client and CL4 ODBC Server solution consists of CL4 on a client with the ODBC Client Interface Library, the ODBC Client library, the network transport layer, the CL4 ODBC Server and the CL4 Database Interface Library. 5

Client/server is a network architecture that divides functions into client and server

Client/server is a network architecture that divides functions into client and server Page 1 A. Title Client/Server Technology B. Introduction Client/server is a network architecture that divides functions into client and server subsystems, with standard communication methods to facilitate

More information

FROM RELATIONAL TO OBJECT DATABASE MANAGEMENT SYSTEMS

FROM RELATIONAL TO OBJECT DATABASE MANAGEMENT SYSTEMS FROM RELATIONAL TO OBJECT DATABASE MANAGEMENT SYSTEMS V. CHRISTOPHIDES Department of Computer Science & Engineering University of California, San Diego ICS - FORTH, Heraklion, Crete 1 I) INTRODUCTION 2

More information

DB2 Application Development and Migration Tools

DB2 Application Development and Migration Tools DB2 Application Development and Migration Tools Migration Tools If I decide I want to move to DB2 from my current database, can you help me? Yes, we have migration tools and offerings to help you. You

More information

PBX IVR ACD. 7011Koll Center Parkway, Suite 150 Pleasanton, CA 94566-3140. Phone: (925) 461-4510 Fax: (925) 461-4520 SUPERVISOR, MANAGER

PBX IVR ACD. 7011Koll Center Parkway, Suite 150 Pleasanton, CA 94566-3140. Phone: (925) 461-4510 Fax: (925) 461-4520 SUPERVISOR, MANAGER In today s competitive environment, reducing customer service telephone-based customer interaction overhead, improving call handling quality, and maximizing the effectiveness of customer service is a must.

More information

A Comparison of Enterprise Reporting Tools

A Comparison of Enterprise Reporting Tools A Comparison of Enterprise Reporting Tools Crystal Reports and Web Intelligence Adam Getz Practice Manager, Business Intelligence DCS Consulting - Corporate Overview About DCS Consulting: DCS Consulting

More information

JDBC Drivers, Bridges and SequeLink. Edward M. Peters Vice President & General Manager DataDirect

JDBC Drivers, Bridges and SequeLink. Edward M. Peters Vice President & General Manager DataDirect JDBC Drivers, Bridges and SequeLink Edward M. Peters Vice President & General Manager DataDirect DataDirect s Business Provide world class data connectivity from any application, to any data source, from

More information

Legacy System Integration Technology for Legacy Application Utilization from Distributed Object Environment

Legacy System Integration Technology for Legacy Application Utilization from Distributed Object Environment Legacy System Integration Technology for Legacy Application Utilization from Distributed Object Environment 284 Legacy System Integration Technology for Legacy Application Utilization from Distributed

More information

Introduction. Introduction: Database management system. Introduction: DBS concepts & architecture. Introduction: DBS versus File system

Introduction. Introduction: Database management system. Introduction: DBS concepts & architecture. Introduction: DBS versus File system Introduction: management system Introduction s vs. files Basic concepts Brief history of databases Architectures & languages System User / Programmer Application program Software to process queries Software

More information

Phire Architect Hardware and Software Requirements

Phire Architect Hardware and Software Requirements Phire Architect Hardware and Software Requirements Copyright 2014, Phire. All rights reserved. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

Lesson 4 Web Service Interface Definition (Part I)

Lesson 4 Web Service Interface Definition (Part I) Lesson 4 Web Service Interface Definition (Part I) Service Oriented Architectures Module 1 - Basic technologies Unit 3 WSDL Ernesto Damiani Università di Milano Interface Definition Languages (1) IDLs

More information

Crystal Reports XI Release 2 for Windows Service Pack 3

Crystal Reports XI Release 2 for Windows Service Pack 3 Revision Date: January 8, 2008 Crystal Reports XI Release 2 for Windows Service Pack 3 Overview Contents This document lists specific platforms and configurations for the Crystal Reports XI Release 2 Service

More information

Introduction: Database management system

Introduction: Database management system Introduction Databases vs. files Basic concepts Brief history of databases Architectures & languages Introduction: Database management system User / Programmer Database System Application program Software

More information

SequeLink Server for ODBC Socket

SequeLink Server for ODBC Socket P RODUCT O VERVIEW Server for ODBC Socket Overview DataDirect is highly scalable, server-based middleware that gives you a complete platform for data connectivity. Common Servers offer the performance

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

CONNX and Microsoft.NET

CONNX and Microsoft.NET CONNX and Microsoft.NET By Larry McGhaw Director of Product Development CONNX Solutions .NET TECHNOLOGY Microsoft.NET server technology promises to revolutionize how companies create software. Microsoft.NET,

More information

Oracle Database Gateways. An Oracle White Paper July 2007

Oracle Database Gateways. An Oracle White Paper July 2007 Oracle Database Gateways An Oracle White Paper July 2007 Oracle Database Gateways Introduction... 3 Connecting Disparate systems... 3 SQL Translations... 4 Data Dictionary Translations... 4 Datatype Translations...

More information

Understanding Client/Server Computing

Understanding Client/Server Computing Understanding Client/Server Computing By Will Fastie PC Magazine; "Enterprize Computing;" Back in the eighties when network equipment vendors first started to hawk their wares, the term client/server was

More information

BC450 ABAP Performance: Analysis and Optimization

BC450 ABAP Performance: Analysis and Optimization ABAP Performance: Analysis and Optimization SAP NetWeaver Application Server - ABAP Course Version: 93 Course Duration: 5 Day(s) Publication Date: 18-10-2012 Publication Time: 1025 Copyright Copyright

More information

VERITAS NetBackup 6.0 Database and Application Protection

VERITAS NetBackup 6.0 Database and Application Protection VERITAS NetBackup 6.0 Database and Application Protection INNOVATIVE DATA PROTECTION When it comes to database and application recovery, VERITAS Software has a clear goal in mind simplify the complexity

More information

DataDirect XQuery Technical Overview

DataDirect XQuery Technical Overview DataDirect XQuery Technical Overview Table of Contents 1. Feature Overview... 2 2. Relational Database Support... 3 3. Performance and Scalability for Relational Data... 3 4. XML Input and Output... 4

More information

CommonTime Making Business Mobile. Enterprise. CommonTime. Mobile Solutions. mdesign Platform. www.commontime.com

CommonTime Making Business Mobile. Enterprise. CommonTime. Mobile Solutions. mdesign Platform. www.commontime.com Enterprise Mobile Solutions Platform www.commontime.com Platform - Overview All Businesses Are Unique At we understand that no two businesses are the same. We believe that a mobile solution should be designed

More information

OWB Users, Enter The New ODI World

OWB Users, Enter The New ODI World OWB Users, Enter The New ODI World Kulvinder Hari Oracle Introduction Oracle Data Integrator (ODI) is a best-of-breed data integration platform focused on fast bulk data movement and handling complex data

More information

TaskCentre v4.5 Run Crystal Report Tool White Paper

TaskCentre v4.5 Run Crystal Report Tool White Paper TaskCentre v4.5 Run Crystal Report Tool White Paper Document Number: PD500-03-13-1_0-WP Orbis Software Limited 2010 Table of Contents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 Features 2 TECHNICAL

More information

3-Tier Architecture. 3-Tier Architecture. Prepared By. Channu Kambalyal. Page 1 of 19

3-Tier Architecture. 3-Tier Architecture. Prepared By. Channu Kambalyal. Page 1 of 19 3-Tier Architecture Prepared By Channu Kambalyal Page 1 of 19 Table of Contents 1.0 Traditional Host Systems... 3 2.0 Distributed Systems... 4 3.0 Client/Server Model... 5 4.0 Distributed Client/Server

More information

The TCP/IP Reference Model

The TCP/IP Reference Model The TCP/IP Reference Model The TCP/IP Model Comparison to OSI Model Example Networks The TCP/IP Model Origins from ARPANET, DoD research network ARPA - Advanced Research Projects Agency Reliability was

More information

Comparison of Enterprise Reporting Tools

Comparison of Enterprise Reporting Tools A Comparison of Enterprise Reporting Tools (SAP Crystal Reports and SAP BusinessObjects Web Intelligence) Adam Getz Manager, Business Intelligence & Reporting TMA Resources About TMA Resources Software

More information

PATROL From a Database Administrator s Perspective

PATROL From a Database Administrator s Perspective PATROL From a Database Administrator s Perspective September 28, 2001 Author: Cindy Bean Senior Software Consultant BMC Software, Inc. 3/4/02 2 Table of Contents Introduction 5 Database Administrator Tasks

More information

<Insert Picture Here> Move to Oracle Database with Oracle SQL Developer Migrations

<Insert Picture Here> Move to Oracle Database with Oracle SQL Developer Migrations Move to Oracle Database with Oracle SQL Developer Migrations The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

The Advantages of an Asset Manager

The Advantages of an Asset Manager INFOTON ASSET MANAGEMENT SOLUTI ON Computing has revolutionized the way we do business. However operating what is the definitive tool for the modern business takes quite a lot of knowledge and ability.

More information

PeopleTools Tables: The Application Repository in the Database

PeopleTools Tables: The Application Repository in the Database PeopleTools Tables: The Application Repository in the Database by David Kurtz, Go-Faster Consultancy Ltd. Since their takeover of PeopleSoft, Oracle has announced project Fusion, an initiative for a new

More information

2. Highlights and Updates: ITSM for Databases

2. Highlights and Updates: ITSM for Databases IBM Tivoli Storage Manager Data Protection for Oracle Neil Rasmussen Software Development for Tivoli Data Protection Tivoli Software, IBM SWG rasmussn@us.ibm.com Agenda 1. Overview: Tivoli Storage Manager

More information

RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One

RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One RUN BETTER Become a Best-Run Business with Remote Support Platform for SAP Business One September 2013 Customer External Become a Best-Run Business with Remote Support Platform for SAP Business One Run

More information

Enterprise Application Designs In Relation to ERP and SOA

Enterprise Application Designs In Relation to ERP and SOA Enterprise Application Designs In Relation to ERP and SOA DESIGNING ENTERPRICE APPLICATIONS HASITH D. YAGGAHAVITA 20 th MAY 2009 Table of Content 1 Introduction... 3 2 Patterns for Service Integration...

More information

Web. Studio. Visual Studio. iseries. Studio. The universal development platform applied to corporate strategy. Adelia. www.hardis.

Web. Studio. Visual Studio. iseries. Studio. The universal development platform applied to corporate strategy. Adelia. www.hardis. Web Studio Visual Studio iseries Studio The universal development platform applied to corporate strategy Adelia www.hardis.com The choice of a CASE tool does not only depend on the quality of the offer

More information

Enterprise Reporting with Oracle Reports. A White Paper December 1998

Enterprise Reporting with Oracle Reports. A White Paper December 1998 Enterprise Reporting with Oracle Reports A White Paper Enterprise Reporting with Oracle Reports INTRODUCTION As the end of the millennia approaches and business operations become more global in scope,

More information

Benchmarks of SQL Query Performance for ODBC and Oracle Call Interface

Benchmarks of SQL Query Performance for ODBC and Oracle Call Interface Another Technology Report From Ken North Computing, LLC Benchmarks of SQL Query Performance for ODBC and Oracle Call Interface October 2002 Prepared by Ken North ken_north@compuserve.com Copyright 2002,

More information

Jitterbit Technical Overview : Microsoft Dynamics CRM

Jitterbit Technical Overview : Microsoft Dynamics CRM Jitterbit allows you to easily integrate Microsoft Dynamics CRM with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

Failover Support. DataDirect Connect for ODBC Drivers. Introduction. Connection Failover

Failover Support. DataDirect Connect for ODBC Drivers. Introduction. Connection Failover Failover Support DataDirect Connect for ODBC Drivers Introduction Connection failover and connection retry are two useful features that are available in the following DataDirect Connect for ODBC drivers:

More information

Tier Architectures. Kathleen Durant CS 3200

Tier Architectures. Kathleen Durant CS 3200 Tier Architectures Kathleen Durant CS 3200 1 Supporting Architectures for DBMS Over the years there have been many different hardware configurations to support database systems Some are outdated others

More information

RJS Software Systems Inc AS/400 Report Delivery System

RJS Software Systems Inc AS/400 Report Delivery System AS/400 Report Delivery System Introduction This document is designed to help our customers and future customers learn more about RJS Software Systems and the RJS AS/400 Report Delivery System. The document

More information

Jitterbit Technical Overview : Microsoft Dynamics AX

Jitterbit Technical Overview : Microsoft Dynamics AX Jitterbit allows you to easily integrate Microsoft Dynamics AX with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service

DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service Achieving Scalability and High Availability Abstract DB2 Connect Enterprise Edition for Windows NT provides fast and robust connectivity

More information

Accounts Payable Capture and Approval

Accounts Payable Capture and Approval 1 If you are manually processing 30,000 or more purchase invoices a year then here is an opportunity to both reduce your costs and gain significant benefits using recognition technology. For lower volumes

More information

Why developers should use ODBC instead of native proprietary database interfaces

Why developers should use ODBC instead of native proprietary database interfaces P RODUCT O VERVIEW Why developers should use ODBC instead of native proprietary database interfaces The financial and technical basis for using ODBC with wire protocol drivers instead of native database

More information

JReport Server Deployment Scenarios

JReport Server Deployment Scenarios JReport Server Deployment Scenarios Contents Introduction... 3 JReport Architecture... 4 JReport Server Integrated with a Web Application... 5 Scenario 1: Single Java EE Server with a Single Instance of

More information

BIT601 SAP Workflow Definition and Use of Customer-Specific Workflows

BIT601 SAP Workflow Definition and Use of Customer-Specific Workflows SAP Workflow Definition and Use of Customer-Specific Workflows SAP NetWeaver Course Version: 94 Course Duration: 5 Day(s) Publication Date: 2014 Publication Time: Copyright Copyright SAP SE. All rights

More information

Database Assessment. Vulnerability Assessment Course

Database Assessment. Vulnerability Assessment Course Database Assessment Vulnerability Assessment Course All materials are licensed under a Creative Commons Share Alike license. http://creativecommons.org/licenses/by-sa/3.0/ 2 Agenda Introduction Configuration

More information

Advantage Database Server or Microsoft SQL Server which one is right for you?

Advantage Database Server or Microsoft SQL Server which one is right for you? Advantage Database Server or Microsoft SQL Server which one is right for you? white paper by Bill Todd executive summary To minimize the cost of deploying database applications, you must match the database

More information

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report Dream Report vs MS SQL Reporting 10 Key Advantages for Dream Report Page 2 of 15 Table of Contents INTRODUCTION 3 PROFESSIONAL SOFTWARE FOR NON-PROGRAMMING USERS 4 CONSIDERABLE DIFFERENCE IN ENGINEERING

More information

Data Access Using. ODBC Drivers from MBFoster

Data Access Using. ODBC Drivers from MBFoster MB Foster White Paper January 2002 Data Access Using ODBC Drivers from MBFoster Table Of Contents Data Access with ODBCLink/SE Background...1 ODBCLink/SE...1 Data Source Creation...2 Configuring the MS-IIS

More information

Configuring and Administering Microsoft SharePoint 2010

Configuring and Administering Microsoft SharePoint 2010 Course 10174 : Configuring and Administering Microsoft SharePoint 2010 Page 1 of 7 Configuring and Administering Microsoft SharePoint 2010 Course 10174: 4 days; Instructor-Led Introduction This four-day

More information

Optional custom API wrapper. C/C++ program. M program

Optional custom API wrapper. C/C++ program. M program GT.M GT.M includes a robust, high performance, multi-paradigm, open-architecture database. Relational, object-oriented and hierarchical conceptual models can be simultaneously applied to the same data

More information

ActiveXperts Network Monitor. White Paper

ActiveXperts Network Monitor. White Paper ActiveXperts Network Monitor Centralized monitoring of Windows, Novell, Linux and Unix servers White Paper 2008, ActiveXperts Software B.V. This document is written by ActiveXperts Software B.V. and represents

More information

Introduction to Visual FoxPro

Introduction to Visual FoxPro PRE201 Introduction to Visual FoxPro Ted Roche Ted Roche & Associates, LLC Ground Rules Pagers and cell phones silent, please. Rest breaks as appropriate How to ask questions Administrivia Conference Binder

More information

SAP BusinessObjects BI Clients

SAP BusinessObjects BI Clients SAP BusinessObjects BI Clients April 2015 Customer Use this title slide only with an image BI Use Cases High Level View Agility Data Discovery Analyze and visualize data from multiple sources Data analysis

More information

Network operating systems typically are used to run computers that act as servers. They provide the capabilities required for network operation.

Network operating systems typically are used to run computers that act as servers. They provide the capabilities required for network operation. NETWORK OPERATING SYSTEM Introduction Network operating systems typically are used to run computers that act as servers. They provide the capabilities required for network operation. Network operating

More information

Consolidate by Migrating Your Databases to Oracle Database 11g. Fred Louis Enterprise Architect

Consolidate by Migrating Your Databases to Oracle Database 11g. Fred Louis Enterprise Architect Consolidate by Migrating Your Databases to Oracle Database 11g Fred Louis Enterprise Architect Agenda Why migrate to Oracle What is migration? What can you migrate to Oracle? SQL Developer Migration Workbench

More information

Data Warehouse Center Administration Guide

Data Warehouse Center Administration Guide IBM DB2 Universal Database Data Warehouse Center Administration Guide Version 8 SC27-1123-00 IBM DB2 Universal Database Data Warehouse Center Administration Guide Version 8 SC27-1123-00 Before using this

More information

Internet Engineering: Web Application Architecture. Ali Kamandi Sharif University of Technology kamandi@ce.sharif.edu Fall 2007

Internet Engineering: Web Application Architecture. Ali Kamandi Sharif University of Technology kamandi@ce.sharif.edu Fall 2007 Internet Engineering: Web Application Architecture Ali Kamandi Sharif University of Technology kamandi@ce.sharif.edu Fall 2007 Centralized Architecture mainframe terminals terminals 2 Two Tier Application

More information

Veritas NetBackup 6.0 Database and Application Protection

Veritas NetBackup 6.0 Database and Application Protection Veritas NetBackup 6.0 Database and Application Protection Innovative data protection When it comes to database and application recovery, Symantec has a clear goal in mind simplify the complexity of database

More information

Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices

Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices Patrice Le Bihan, SAP Intelligence Platform & NetWeaver RIG, Americas Dr. Gerd Schöffl, SAP Intelligence Platform & NetWeaver RIG, EMEA

More information

joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation

joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation Reporting Services Overview SSRS Architecture SSRS Configuration Reporting Services Authoring Report Builder Report

More information

Introduction to Oracle Business Intelligence Standard Edition One. Mike Donohue Senior Manager, Product Management Oracle Business Intelligence

Introduction to Oracle Business Intelligence Standard Edition One. Mike Donohue Senior Manager, Product Management Oracle Business Intelligence Introduction to Oracle Business Intelligence Standard Edition One Mike Donohue Senior Manager, Product Management Oracle Business Intelligence The following is intended to outline our general product direction.

More information

Attunity Integration Suite

Attunity Integration Suite Attunity Integration Suite A White Paper February 2009 1 of 17 Attunity Integration Suite Attunity Ltd. follows a policy of continuous development and reserves the right to alter, without prior notice,

More information

AD207: Advances in Data Integration with Lotus Enterprise Integrator for Domino 6.5. Sarah Boucher, Manager Enterprise Integration Development

AD207: Advances in Data Integration with Lotus Enterprise Integrator for Domino 6.5. Sarah Boucher, Manager Enterprise Integration Development AD207: Advances in Data Integration with Lotus Enterprise Integrator for Domino 6.5 Sarah Boucher, Manager Enterprise Integration Development Goals Overview of Lotus Enterprise Integration offerings and

More information

THE INFORMATION TECHNOLOGY INFRASTRUCTURE IN WIPO

THE INFORMATION TECHNOLOGY INFRASTRUCTURE IN WIPO THE INFORMATION TECHNOLOGY INFRASTRUCTURE IN WIPO Yves Le Borgne 24/06/98 The IT infrastructure in WIPO Table of Contents IT infrastructure strategies IT challenges in 1998 The IT Department activities

More information

Switching From ISAM to SQL

Switching From ISAM to SQL Switching From ISAM to SQL SQL databases are more complex and maintenance-intensive than ISAM databases (like Btrieve / Pervasive). Here are the top 10 reasons to make the switch to SQL anyways. Page 1

More information

TECHNOLOGY GUIDE THREE. Emerging Types of Enterprise Computing

TECHNOLOGY GUIDE THREE. Emerging Types of Enterprise Computing TECHNOLOGY GUIDE THREE Emerging Types of Enterprise Computing TECHNOLOGY GU IDE OUTLINE TG3.1 Introduction TG3.2 Server Farms TG3.3 Virtualization TG3.4 Grid Computing TG3.5 Utility Computing TG3.6 Cloud

More information

Accelerate Data Loading for Big Data Analytics Attunity Click-2-Load for HP Vertica

Accelerate Data Loading for Big Data Analytics Attunity Click-2-Load for HP Vertica Accelerate Data Loading for Big Data Analytics Attunity Click-2-Load for HP Vertica Menachem Brouk, Regional Director - EMEA Agenda» Attunity update» Solutions for : 1. Big Data Analytics 2. Live Reporting

More information

How to Configure Informix Connect and ODBC

How to Configure Informix Connect and ODBC Informix User Forum 2005 Moving Forward With Informix How to Configure Informix Connect and ODBC James Edmiston Informix DBA Consultant Quest Information Systems, Inc. Atlanta, Georgia December 8-9, 2005

More information

Advantages of Server-side Database Auditing. By SoftTree Technologies, Inc.

Advantages of Server-side Database Auditing. By SoftTree Technologies, Inc. Advantages of Server-side Database Auditing By SoftTree Technologies, Inc. Table of Contents Advantages of server-side auditing... 3 Does server-side auditing create a performance hit on the audited databases?...

More information

Microsoft SharePoint 2010 Overview

Microsoft SharePoint 2010 Overview Course Code: M10174 Vendor: Microsoft Course Overview Duration: 5 RRP: 1,980 Configuring and Administering Microsoft SharePoint 2010 Overview This five day course teaches delegates how to install, configure

More information

Chapter 4 Accessing Data

Chapter 4 Accessing Data Chapter 4: Accessing Data 73 Chapter 4 Accessing Data The entire purpose of reporting is to make sense of data. Therefore, it is important to know how to access data locked away in the database. In this

More information

ANDROID DEVELOPER RESUME USA

ANDROID DEVELOPER RESUME USA Android Developer resume usa 1 of 5 1/12/2015 2:28 PM ANDROID DEVELOPER RESUME USA.NET Developers/Architects Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide

More information

Application Monitoring for SAP

Application Monitoring for SAP Application Monitoring for SAP Detect Fraud in Real-Time by Monitoring Application User Activities Highlights: Protects SAP data environments from fraud, external or internal attack, privilege abuse and

More information

CUSTOMER Presentation of SAP Predictive Analytics

CUSTOMER Presentation of SAP Predictive Analytics SAP Predictive Analytics 2.0 2015-02-09 CUSTOMER Presentation of SAP Predictive Analytics Content 1 SAP Predictive Analytics Overview....3 2 Deployment Configurations....4 3 SAP Predictive Analytics Desktop

More information

A Generic Database Web Service

A Generic Database Web Service A Generic Database Web Service Erdogan Dogdu TOBB Economics and Technology University Computer Engineering Department Ankara, Turkey edogdu@etu.edu.tr Yanchao Wang and Swetha Desetty Georgia State University

More information

Version 14.0. Overview. Business value

Version 14.0. Overview. Business value PRODUCT SHEET CA Datacom Server CA Datacom Server Version 14.0 CA Datacom Server provides web applications and other distributed applications with open access to CA Datacom /DB Version 14.0 data by providing

More information

Making Data Available on the Web

Making Data Available on the Web Making Data Available on the Web By Simba Technologies Inc. SimbaEngine ODBC SDK Introduction Many companies use web-based services to automate business processes like sales, track items like packages,

More information

Lecture 2. Internet: who talks with whom?

Lecture 2. Internet: who talks with whom? Lecture 2. Internet: who talks with whom? An application layer view, with particular attention to the World Wide Web Basic scenario Internet Client (local PC) Server (remote host) Client wants to retrieve

More information

MD Link Integration. 2013 2015 MDI Solutions Limited

MD Link Integration. 2013 2015 MDI Solutions Limited MD Link Integration 2013 2015 MDI Solutions Limited Table of Contents THE MD LINK INTEGRATION STRATEGY...3 JAVA TECHNOLOGY FOR PORTABILITY, COMPATIBILITY AND SECURITY...3 LEVERAGE XML TECHNOLOGY FOR INDUSTRY

More information

PUBLIC Supplement for J.D. Edwards

PUBLIC Supplement for J.D. Edwards SAP Data Services Document Version: 4.2 Support Package 7 (14.2.7.0) 2016-05-06 PUBLIC Content 1 Overview....3 2 System requirements....4 2.1 World....4 2.2 OneWorld....4 3 Datastores.... 6 3.1 Defining

More information

BusinessObjects Data Federator XI 3.0 SP1 for Windows

BusinessObjects Data Federator XI 3.0 SP1 for Windows Revision Date: December 10, 2008 BusinessObjects Data Federator XI 3.0 SP1 for Windows Overview Contents This document lists specific platforms and configurations for the BusinessObjects Data Federator

More information

Course 5431: Getting Started with Microsoft Office PowerPoint 2007. Course 5420: Editing and Proofreading Documents in Microsoft Office Word 2007

Course 5431: Getting Started with Microsoft Office PowerPoint 2007. Course 5420: Editing and Proofreading Documents in Microsoft Office Word 2007 This level of training is designed to help you make the most of your first steps into computing. They cover a basic introduction to a range of Microsoft products such as Word, Power Point and Excel. Course

More information

Jitterbit Technical Overview : Salesforce

Jitterbit Technical Overview : Salesforce Jitterbit allows you to easily integrate Salesforce with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

Configuring and Administering Microsoft SharePoint 2010

Configuring and Administering Microsoft SharePoint 2010 Configuring and Administering Microsoft Course Details Course Code: Duration: Notes: 10174B 5 days This course syllabus should be used to determine whether the course is appropriate for the students, based

More information

Chapter 13 Computer Programs and Programming Languages. Discovering Computers 2012. Your Interactive Guide to the Digital World

Chapter 13 Computer Programs and Programming Languages. Discovering Computers 2012. Your Interactive Guide to the Digital World Chapter 13 Computer Programs and Programming Languages Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Differentiate between machine and assembly languages Identify

More information

Chapter 4 IT Infrastructure and Platforms

Chapter 4 IT Infrastructure and Platforms Chapter 4 IT Infrastructure and Platforms Essay Questions: 1. Identify and describe the stages of IT infrastructure evolution. 2. Identify and describe the technology drivers of IT infrastructure evolution.

More information

Crystal Reports XI Release 2 - Service Pack 6

Crystal Reports XI Release 2 - Service Pack 6 Revision Date: January 10, 2010 Crystal Reports XI Release 2 - Service Pack 6 Overview Contents This document lists specific platforms and configurations for Crystal Reports XI Release 2 - Service Pack

More information

GENWARE COMPUTER SYSTEMS AUDITING SOLUTION FOR COGNOS BUSINESS INTELLIGENCE

GENWARE COMPUTER SYSTEMS AUDITING SOLUTION FOR COGNOS BUSINESS INTELLIGENCE GENWARE COMPUTER SYSTEMS AUDITING SOLUTION FOR COGNOS BUSINESS INTELLIGENCE TECHNOLOGY PARTNER COGNOS CERTIFIED VALUE PROPOSITION AND BUSINESS OPPORTUNITIES Genware Computer Systems works with their clients

More information

Functions of NOS Overview of NOS Characteristics Differences Between PC and a NOS Multiuser, Multitasking, and Multiprocessor Systems NOS Server

Functions of NOS Overview of NOS Characteristics Differences Between PC and a NOS Multiuser, Multitasking, and Multiprocessor Systems NOS Server Functions of NOS Overview of NOS Characteristics Differences Between PC and a NOS Multiuser, Multitasking, and Multiprocessor Systems NOS Server Hardware Windows Windows NT 4.0 Linux Server Software and

More information

Introduction 1. ifids.com ASP Model 1 ifids.com Redundant Communication Routing Model 1 ifids.com System Topology 2. Flight Data Collection 3

Introduction 1. ifids.com ASP Model 1 ifids.com Redundant Communication Routing Model 1 ifids.com System Topology 2. Flight Data Collection 3 Table of Contents Introduction 1 ifids.com ASP Model 1 ifids.com Redundant Communication Routing Model 1 ifids.com System Topology 2 Flight Data Collection 3 EDI Data Collection and the ifids.com FTP Send

More information

Excel with SAS and Microsoft Excel

Excel with SAS and Microsoft Excel Excel with SAS and Microsoft Excel Andrew Howell Senior Consultant, ANJ Solutions SAS Global Forum Washington DC 23 26 March 2014 Introduction - SAS & Excel interaction Excel as a Data Source Excel as

More information

OData in a Nutshell. August 2011 INTERNAL

OData in a Nutshell. August 2011 INTERNAL OData in a Nutshell August 2011 INTERNAL Objectives At the end of this module, you will be able to: Understand the OData Standard and how it works. Understand how OData uses the Atom Protocol. Understand

More information

Client Connectivity for Oracle Rdb

Client Connectivity for Oracle Rdb Client Connectivity for Oracle Rdb Colleen Mitchneck Linda Kipnes Bryan Alvey 2004-2005, Oracle Corporation Client Connectivity When we talk Client Connectivity to Rdb, we are talking about Oracle SQL/Services

More information

BMC Remedy Action Request System 7.6.04 Integration Guide

BMC Remedy Action Request System 7.6.04 Integration Guide BMC Remedy Action Request System 7.6.04 Integration Guide January 2011 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com. From this website, you can obtain

More information

6.2 Reporting BIPublisher Improvements

6.2 Reporting BIPublisher Improvements 6.2 Reporting BIPublisher Improvements Paul Hamill Senior Director, OTM Development 2011 OTM SIG Philadelphia, PA August 16-18, 2011 Safe Harbor Statements The following is intended

More information

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server Extending Hyperion BI with the Oracle BI Server Mark Ostroff Sr. BI Solutions Consultant Agenda Hyperion BI versus Hyperion BI with OBI Server Benefits of using Hyperion BI with the

More information

HR Data Retrieval in a LDAP- Enabled Directory Service

HR Data Retrieval in a LDAP- Enabled Directory Service HR Data Retrieval in a LDAP- Enabled Directory Service HELP.PORTMANAGER Release 50A Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in

More information