Waiting for a file and processing it

Size: px
Start display at page:

Download "Waiting for a file and processing it"

Transcription

1 Waiting for a file and processing it One of the perennial issues developers have is that they want to wait for incoming files in a directory, and when those files arrive, to process each one in a scenario. ODI provides tools to enable you to wait for files (OdiWaitForFile tool) and to take an action after that. The complexity comes when you want to wait for files (many of which may come in at a time) and process each individually. In order to address this issue, we need to add a little cunning to our approach. The starting point is to create a new ODI procedure, with a set of options: This procedure will be used in the package which we create. The package will have three steps: An OdiWaitForFile step, which polls the appropriate directory, waiting for files to be ready to process. (Note that it is best practice when moving files, especially when receiving files transmitted using FTP to actually move two files, the file you want and an associated marker file, which is moved AFTER the transmit of the actual file. This technique gets round the problem caused by files created with a slow write being processed before they are ready. The marker file may contain the name of the file you want, or be named similarly, or only be transmitted on completion of all files in the transmission) Process Waiting Files is the procedure we create to be able to deal with the file(s) which need to be processed. A Start Self step, which initiates the execution of the whole Wait and process package. (the reason we don t just loop is so that we can see that task has run, and potentially purge the log of completed executions)

2 In the Package this image shows the OdiFileWait parameters. In this case I am waiting on the d:/temp directory for all files with a.zip extension. I have told ODI not to do anything with the file ( Action: NONE ) although it may be an idea to move the file to a processing directory. In this case, I have not used any of the other options, where I can for instance specify the number of files to wait for (I might want to process batches).

3 When ODI has detected files which match the criteria specified, it will move on to the next step in the process, which is my procedure to process the incoming files. This process has the set of parameters shown below, which I need to fill in: Of the options shown on this one, the PATTERN is for the files that we actually want to process not those we are waiting on (which may be different). SCEN_NAME is the name of the scenario to be executed for each of the files SYNC_MODE is 1 for Synchronous and 2 for Asynchronous. Be careful with this one, as if you execute asynchronously, you will get as many concurrent executions of the scenario as there are files. If the tasks within the scenario have not been specifically modified to allow for concurrent execution, you may have problems. (by default for instance all the temporary tables for a particular interfaces will use the same name) INCOMING_DIRECTORY is where the files for processing are located. This will be the same as the first step, unless you chose the MOVE option, to move the files to a separate directory

4 The last step I have put in the package is the execution of itself, asynchronously. This is using the SESS_NAME as the name of the scenario to start. This may not be correct if the original scenario was started using a NAME= parameter.

5 Procedure Detail This is the detail of the procedure I created. As you can see it has only four steps. It could be done in less, but this makes the process more readable. Figure 1 The steps of the file processing procedure

6 The first of the steps is the one to create the temporary table I will use to store the names of the file to process. I have put this table in the Sunopsis Memory Engine, an inmemory database functionality which is part of the ODI product. In this first step, as I only have one command, I put it in the Command on Target tab. The first part of this gets us the JDBC connection we will use, and to get the parameters of that, on the Command on Source tab, I have set the parameters of the database I wish to use (see the following image) As the table will be created in memory in the execution agent, and it should be disposed of on completion of the session, there should be little chance of this taking up too much memory. I have also created it with the sessionid as well as the filename, in case. Figure 2 Command on target for the create table step of the procedure

7 Figure 3Command on Source for the create table step of the procedure

8 Next is the step to retrieve the list of files, and insert them into the newly created table (in memory). Here we are using some native functionality of the Jython scripting environment. The glob.glob(filepattern) will return a collection of the names, which we can then use to insert into the database with the INSERT statements. Figure 4Command on Source for the Retrieve file list step of the procedure

9 Command on Source for the step which retrieves the file names from the table. Note that we set the Technology and Schema here to match the memory engine, pre-defined in Topology. Figure 5 Execute Scenario for each file step "Command on Source"

10 For the Command on Target we execute the OdiTool command OdiStartScen once for each of the files retrieved on the Command on Source. Note that to get it to substitute the value of FILENAME in the resultset from the source command, we use the # prefix. Note also that the name of the variable I am passining in to each of the scenarios is here set as ORACLE.FileToBeProcessed. This implies that I have a project with a code ORACLE, and the variable is called FileToBeProcessed. It might be better to use a Global Variable, to eliminate the need to edit this in the procedure, and a variable FileToBeProcessed needs to be created. This does suppose that the scenario you are starting DECLARE s this variable, which may then be used in the scenario including in resource names (file names) etc Figure 6 Execute Scenario for each file step "Command on Target"

11 The last Step in the procedure is just a tidy-up step, to drop the table I created earlier. As there is only one command, this goes on the Command on Target tab. Figure 7 Last step, Drop Table, Clean up after yourself

12 Appendix 1: Getting the value of parameters passed to a scenario One last extra little tidbit which may be useful: if you are passing variables into a scenario and want to know that those variables have been set, by default these are not shown in the log. A couple of workarounds exist to get that information: 1) Put a tool step in your package, something like an OdiSleep, and modify the code to be executed as illustrated: The result of which will show in the log as follows:

13 2) The second option is to do a similar thing, but to put the code into a procedure as follows: As you can see, here I simply made a Java BeanShell step and put the commented (/* */) code into there, so it is ignored by the interpreter.

Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features

Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features Training Details Training Time : 18 Hours Capacity : 16 Prerequisites : There are no prerequisites for this course. About Training

More information

Oracle Data Integrator: Administration and Development Volume I Student Guide

Oracle Data Integrator: Administration and Development Volume I Student Guide Oracle Data Integrator: Administration and Development Volume I Student Guide D48459GC30 Edition 3.0 December 2007 D53463 Authors Laura Hofman Miquel FX Nicolas Technical Contributor and Reviewer Sharath

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +27 (0)11 319-4111 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration

More information

Using ODI for Teradata Dual-Loads

Using ODI for Teradata Dual-Loads Purpose This tutorial walks you through the steps that are needed to create Oracle Data Integrator (ODI) EL-T interfaces and packages that will simultaneously load two independent Teradata RDBMS systems

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +34916267792 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration platform

More information

BASIC USER TRAINING PROGRAM Module 5: Test Case Development

BASIC USER TRAINING PROGRAM Module 5: Test Case Development BASIC USER TRAINING PROGRAM Module 5: Test Case Development Objective Student will have an understanding of how to create, edit and execute a Test Case from Develop a Test Case Activity Page. Student will

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive

More information

Cross-Browser Functional Testing Best Practices

Cross-Browser Functional Testing Best Practices White Paper Application Delivery Management Cross-Browser Functional Testing Best Practices Unified Functional Testing Best Practices Series Table of Contents page Introduction to Cross-Browser Functional

More information

Adding Distribution Settings to a Job Profile (CLUI)

Adding Distribution Settings to a Job Profile (CLUI) CHAPTER 7 Adding Distribution Settings to a Job Profile (CLUI) Revised: October 10, 2008, Distribution tabs tell the Cisco MXE 3000 what to do with output files once encoding is complete. This section

More information

CO Java EE 7: Back-End Server Application Development

CO Java EE 7: Back-End Server Application Development CO-85116 Java EE 7: Back-End Server Application Development Summary Duration 5 Days Audience Application Developers, Developers, J2EE Developers, Java Developers and System Integrators Level Professional

More information

CS 450 Introduction to Networking Spring 2014 Homework Assignment 1 File Transfer and Data Bandwidth Analysis Tool

CS 450 Introduction to Networking Spring 2014 Homework Assignment 1 File Transfer and Data Bandwidth Analysis Tool CS 450 Introduction to Networking Spring 2014 Homework Assignment 1 File Transfer and Data Bandwidth Analysis Tool Due: Monday 17 February. Electronic copy due at 10:30 A.M., Optional paper copy may be

More information

Makefile Brief Reference

Makefile Brief Reference Makefile Brief Reference COMP 229, 346, 444, 5201 Revision 1.1 Date: July 31, 2003 1 Contents Intro Format Examples 2 Intro Makefiles in conjunction with the make utility (man make) provide a very convenient

More information

HCA Tech Note 220: Using the SmartHome Insteon Hub

HCA Tech Note 220: Using the SmartHome Insteon Hub HCA Tech Note 220: Using the SmartHome Insteon Hub The Insteon Hub and the older 2412N are interesting products but they are not a 2413 PowerLinc with a network connection in a box. They are much different

More information

Routing EDIFACT Documents in Productions

Routing EDIFACT Documents in Productions Routing EDIFACT Documents in Productions Version 2018.1 2018-01-31 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Routing EDIFACT Documents in Productions InterSystems

More information

ORACLE DATA INTEGRATOR (ODI) 10G INTEGRATION PART 1 AND SALESFORCE.COM. Written by: Christian Screen ArtOfBI.com (The Art of Business Intelligence)

ORACLE DATA INTEGRATOR (ODI) 10G INTEGRATION PART 1 AND SALESFORCE.COM. Written by: Christian Screen ArtOfBI.com (The Art of Business Intelligence) ORACLE DATA INTEGRATOR (ODI) 10G AND SALESFORCE.COM INTEGRATION PART 1 Written by: Christian Screen ArtOfBI.com (The Art of Business Intelligence) Version 1 (2010/03/22) The Art of BI () Table of Contents

More information

Go to SQA Academy the website address is

Go to SQA Academy the website address is Joining a course on the SQA Academy You may find it useful to print out this document for reference. There are two steps to joining an SQA Academy course. First you need an account with the SQA Academy,

More information

Chapter 12 Visual Program Debugger

Chapter 12 Visual Program Debugger Chapter 12 Visual Program Debugger In the previous chapter on programs a section titled Getting programs to do what you want discussed using the log to trace how programs execute. That is a useful technique

More information

CAS 703 Software Design

CAS 703 Software Design Dr. Ridha Khedri Department of Computing and Software, McMaster University Canada L8S 4L7, Hamilton, Ontario Acknowledgments: Material based on Software Architecture by Tao et al. (Chapters 6 and 7) 1

More information

Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Java Basics Lecture 02

Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Java Basics Lecture 02 Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Java Basics Lecture 02 Hello, in this lecture we will learn about some fundamentals concepts of java.

More information

Generic Interface Version NT832-ORACLE FCUBSV.UM [October] [2008] Oracle Part Number E

Generic Interface Version NT832-ORACLE FCUBSV.UM [October] [2008] Oracle Part Number E Generic Interface Version-10.2 9NT832-ORACLE FCUBSV.UM 10.2.0.0.0.0.0 [October] [2008] Oracle Part Number E51712-01 Document Control Author: Documentation Team Created on : October 01, 2008 Group: UBPG

More information

Software Testing Prof. Meenakshi D Souza Department of Computer Science and Engineering International Institute of Information Technology, Bangalore

Software Testing Prof. Meenakshi D Souza Department of Computer Science and Engineering International Institute of Information Technology, Bangalore Software Testing Prof. Meenakshi D Souza Department of Computer Science and Engineering International Institute of Information Technology, Bangalore Lecture 04 Software Test Automation: JUnit as an example

More information

Additional Connectivity Options

Additional Connectivity Options Additional Connectivity Options from the book SAP Cloud Platform Integration by Bilay, Gutsche, Krimmel, and Stiehl Your guide to mastering SAP Cloud Platform Integration! In this online appendix, we briefly

More information

User s Manual. for. Diagram Consistency and Validation in agenttool III

User s Manual. for. Diagram Consistency and Validation in agenttool III User s Manual for Diagram Consistency and Validation in agenttool III Submitted by Patrick Gallagher CIS 895 MSE Project Department of Computing and Information Sciences Kansas State University Table of

More information

ir*edi Clean-Up Procedures

ir*edi Clean-Up Procedures ir*edi Clean-Up Procedures Performing regular system clean-up procedures for each ir*edi company is critical to all system processes. System maintenance will minimize processing time, help prevent file

More information

Registering for classes Help

Registering for classes Help Registering for classes Help Before You Begin 1. Create your class schedule from the material provided by your campus. 2. Prepare additional schedules in the event courses on your first choice schedule

More information

ACT-R Environment Manual

ACT-R Environment Manual Working Draft Dan Bothell Table of Contents Table of Contents...2 Preface...3 Introduction...4 Running the Environment...6 Environment Overview...9 Current Model...11 Model...13 Control...15 Current Data...30

More information

Project C: Genetic Algorithms

Project C: Genetic Algorithms Project C: Genetic Algorithms Due Wednesday April 13 th 2005 at 8pm. A genetic algorithm (GA) is an evolutionary programming technique used to solve complex minimization/maximization problems. The technique

More information

TABLES AND HASHING. Chapter 13

TABLES AND HASHING. Chapter 13 Data Structures Dr Ahmed Rafat Abas Computer Science Dept, Faculty of Computer and Information, Zagazig University arabas@zu.edu.eg http://www.arsaliem.faculty.zu.edu.eg/ TABLES AND HASHING Chapter 13

More information

Revise Quick Start Guide

Revise Quick Start Guide page 1 / 12 Revise Quick Start Guide The quick start guide is provided to help you get the Revise energy monitoring system up and running as quickly as possible. Installing components To install components

More information

This document provides a concise, introductory lesson in HTML formatting.

This document provides a concise, introductory lesson in HTML formatting. Tip Sheet This document provides a concise, introductory lesson in HTML formatting. Introduction to HTML In their simplest form, web pages contain plain text and formatting tags. The formatting tags are

More information

Loading and Extracting HFM data with ODI Knowledge Modules

Loading and Extracting HFM data with ODI Knowledge Modules Loading and Extracting HFM 11.1.2.4 data with ODI Knowledge Modules Introduction Oracle Hyperion Financial Management (HFM) is an Enterprise Performance Management (EPM) tool that provides financial consolidation

More information

Starting to Program in C++ (Basics & I/O)

Starting to Program in C++ (Basics & I/O) Copyright by Bruce A. Draper. 2017, All Rights Reserved. Starting to Program in C++ (Basics & I/O) On Tuesday of this week, we started learning C++ by example. We gave you both the Complex class code and

More information

: the User (owner) for this file (your cruzid, when you do it) Position: directory flag. read Group.

: the User (owner) for this file (your cruzid, when you do it) Position: directory flag. read Group. CMPS 12L Introduction to Programming Lab Assignment 2 We have three goals in this assignment: to learn about file permissions in Unix, to get a basic introduction to the Andrew File System and it s directory

More information

Lab Exercise Test First using JUnit

Lab Exercise Test First using JUnit Lunds tekniska högskola Datavetenskap, Nov, 2017 Görel Hedin/Ulf Asklund EDAF45 Programvaruutveckling i grupp projekt Lab Exercise Test First using JUnit Goal This lab is intended to demonstrate basic

More information

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I D64974GC20 Edition 2.0 September 2012 D78954 Author Richard Green Technical Contributors and Reviewers Alex Kotopoulis

More information

Demo Lab Guide Compellent

Demo Lab Guide Compellent Demo Lab Guide Compellent Replay Manager SQL Server Product Domain: Storage Author: Joseph Correia Version: 1.01 Date: 28/01/2016 Table of Contents 1 Product Overview... 3 1.1 Lab Preparation Considerations

More information

ACS 5.x: LDAP Server Configuration Example

ACS 5.x: LDAP Server Configuration Example ACS 5.x: LDAP Server Configuration Example Document ID: 113473 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Directory Service Authentication Using

More information

High Performance Computing Prof. Matthew Jacob Department of Computer Science and Automation Indian Institute of Science, Bangalore

High Performance Computing Prof. Matthew Jacob Department of Computer Science and Automation Indian Institute of Science, Bangalore High Performance Computing Prof. Matthew Jacob Department of Computer Science and Automation Indian Institute of Science, Bangalore Module No # 09 Lecture No # 40 This is lecture forty of the course on

More information

Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor

Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor Tim Tow, Oracle ACE Director Founder and President Applied OLAP Inc. Many Essbase customers regularly

More information

SonicWALL Security 6.0 Software

SonicWALL  Security 6.0 Software Email Security SonicWALL Email Security 6.0 Software Attention: Licensing has changed in Email Security 6.0. Be sure to read the Dynamic Licensing section in this Release Note before upgrading, and see

More information

Manual Trigger Sql Server 2008 Examples Insert Update

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

More information

SmartCVS Tutorial. Starting the putty Client and Setting Your CVS Password

SmartCVS Tutorial. Starting the putty Client and Setting Your CVS Password SmartCVS Tutorial Starting the putty Client and Setting Your CVS Password 1. Open the CSstick folder. You should see an icon or a filename for putty. Depending on your computer s configuration, it might

More information

About Gluent. we liberate enterprise data. We are long term Oracle Database & Data Warehousing guys long history of performance & scaling

About Gluent. we liberate enterprise data. We are long term Oracle Database & Data Warehousing guys long history of performance & scaling About Gluent We are long term Oracle Database & Data Warehousing guys long history of performance & scaling The world is changing we help customers to get the best out of both worlds! About 20 people in

More information

Java EE 7: Back-End Server Application Development

Java EE 7: Back-End Server Application Development Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Java EE 7: Back-End Server Application Development Duration: 5 Days What you will learn The Java EE 7: Back-End Server Application

More information

Avaya Interaction Center Release Notes

Avaya Interaction Center Release Notes Avaya Interaction Center 7.2.3.1 Release Notes 1 Introduction The Avaya Interaction Center 7.2.3.1 Release Notes provides information such as defects fixed and known defects in IC 7.2.3 Service Pack Update1

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

The print queue was too long. The print queue is always too long shortly before assignments are due. Print your documentation

The print queue was too long. The print queue is always too long shortly before assignments are due. Print your documentation Chapter 1 CS488/688 F17 Assignment Format I take off marks for anything... A CS488 TA Assignments are due at the beginning of lecture on the due date specified. More precisely, all the files in your assignment

More information

AuraTester User Guide

AuraTester User Guide AuraTester User Guide Automated testing tool for Oracle Forms based systems AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) AxciScape produces AutoCAD script files which must be Run within AutoCAD. You can do this by typing SCRIPT into the command line and then select the

More information

introduction to records in touchdevelop

introduction to records in touchdevelop introduction to records in touchdevelop To help you keep your data organized, we are introducing records in release 2.8. A record stores a collection of named values called fields, e.g., a Person record

More information

Ftp Connect Command Prompt To Sql Server 2008 Using Windows Authentication

Ftp Connect Command Prompt To Sql Server 2008 Using Windows Authentication Ftp Connect Command Prompt To Sql Server 2008 Using Windows Authentication I'm having issues connecting to my newly created FTP Site on my Windows 2008R2 server. I've created the site. It is running. Using

More information

MELLANOX MTD2000 NFS-RDMA SDK PERFORMANCE TEST REPORT

MELLANOX MTD2000 NFS-RDMA SDK PERFORMANCE TEST REPORT MELLANOX MTD2000 NFS-RDMA SDK PERFORMANCE TEST REPORT The document describes performance testing that was done on the Mellanox OFED 1.2 GA NFS-RDMA distribution. Test Cluster Mellanox Technologies 1 July

More information

BIG-IQ Centralized Management: ADC. Version 5.0

BIG-IQ Centralized Management: ADC. Version 5.0 BIG-IQ Centralized Management: ADC Version 5.0 Table of Contents Table of Contents BIG-IQ Application Delivery Controller: Overview...5 What is Application Delivery Controller?...5 Managing Device Resources...7

More information

Defining an ODBC data source

Defining an ODBC data source Defining an ODBC data source Cisco IPIVR and ICM Environment ALINEiT LLC alineit.com OVERVIEW This guideline document provides the steps needed to create an ODBC data source for the Cisco IPIVR application.

More information

Ranger 0.5 Audit Configuration

Ranger 0.5 Audit Configuration Ranger 0.5 Audit Configuration Introduction Scope of this document Configuration properties naming convention Audit to Solr Audit to Db Audit to HDFS Audit to Log4j Example Configure a log4j appender for

More information

F5 BIG-IQ Centralized Management: Local Traffic & Network. Version 5.2

F5 BIG-IQ Centralized Management: Local Traffic & Network. Version 5.2 F5 BIG-IQ Centralized Management: Local Traffic & Network Version 5.2 Table of Contents Table of Contents BIG-IQ Local Traffic & Network: Overview... 5 What is Local Traffic & Network?... 5 Understanding

More information

Optimizing Performance for Partitioned Mappings

Optimizing Performance for Partitioned Mappings Optimizing Performance for Partitioned Mappings 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Application Server Release 2015

Application Server Release 2015 Application Server Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

DocShuttle Administrator

DocShuttle Administrator DocShuttle Administrator by Bytescribe, Inc. Additional Documentation For more information on using DocShuttle Administrator, please visit: DocShuttle Frequently Asked Questions (FAQ s) go to www.bytescribe.com/faqs.htm

More information

Transaction Isolation Level in ODI

Transaction Isolation Level in ODI In this post I will be explaining the behaviour in Oracle 11g and regarding the ODI versions, there is not much difference between ODI 11g and 12c. If you see the drop down in 11g (11.1.1.9) procedure,

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

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

More information

Configuring Cisco TelePresence Manager

Configuring Cisco TelePresence Manager CHAPTER 3 Revised: November 27, 2006, First Published: November 27, 2006 Contents Introduction, page 3-1 System Configuration Tasks, page 3-2 Security Settings, page 3-3 Database, page 3-4 Room Phone UI,

More information

Info 408 Distributed Applications Programming Exercise sheet nb. 4

Info 408 Distributed Applications Programming Exercise sheet nb. 4 Lebanese University Info 408 Faculty of Science 2017-2018 Section I 1 Custom Connections Info 408 Distributed Applications Programming Exercise sheet nb. 4 When accessing a server represented by an RMI

More information

Migrating from Connect To Image Center 2.0

Migrating from Connect To Image Center 2.0 Migrating from Connect To Image Center 2.0 Image Center 2.0 is a substantial upgrade in data management compared to ShowCase Connect. It provides two key features: Quick Access to Prior Studies - All studies

More information

Etasoft XT Server 1.x

Etasoft XT Server 1.x Etasoft XT Server 1.x XT Server is a set of tools for automated data translation, validation and file processing. Setup Install software using setup program xtserver_setup.exe. Package contains both GUI

More information

Using Accommodate. Information for SAS Students at UofG

Using Accommodate. Information for SAS Students at UofG Using Accommodate Information for SAS Students at UofG 1 From the SAS home page, click on Exam Centre then Accommodate (Exam Bookings). 2 You ll be prompted to sign in using your UofG central login, which

More information

Introduction to Architecture. Introduction to Architecture 1

Introduction to Architecture. Introduction to Architecture 1 Introduction to Architecture Introduction to Architecture 1 Content What is architecture? Motivation for architecture Non-functional requirements Introduction to Architecture 2 What is architecture? The

More information

Get JAVA. I will just tell you what I did (on January 10, 2017). I went to:

Get JAVA. I will just tell you what I did (on January 10, 2017). I went to: Get JAVA To compile programs you need the JDK (Java Development Kit). To RUN programs you need the JRE (Java Runtime Environment). This download will get BOTH of them, so that you will be able to both

More information

Upgrading the Server Software

Upgrading the Server Software APPENDIXB This appendix describes how to upgrade or reinstall the Cisco PAM server software, desktop client software, and Gateway module firmware. Contents Upgrade Notes for Release 1.5.0, page B-2 Obtaining

More information

Several sets of parameters and configuration techniques affect communication performance:

Several sets of parameters and configuration techniques affect communication performance: Cyberlogic Knowledge Base KB2010-04: OPTIMIZING THE MBX OPC DRIVER AGENT Cyberlogic s OPC Server Suites include several unique features that you can adjust to achieve superior communication performance.

More information

Deep Learning for Visual Computing Prof. Debdoot Sheet Department of Electrical Engineering Indian Institute of Technology, Kharagpur

Deep Learning for Visual Computing Prof. Debdoot Sheet Department of Electrical Engineering Indian Institute of Technology, Kharagpur Deep Learning for Visual Computing Prof. Debdoot Sheet Department of Electrical Engineering Indian Institute of Technology, Kharagpur Lecture - 05 Classification with Perceptron Model So, welcome to today

More information

Getting Started User s Guide

Getting Started User s Guide Getting Started User s Guide Savision iq V2.3 Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Understanding Savision iq... 4 2. First Run Experience... 4 2.1 Adding the License Key... 5 2.2

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

Module 16: Distributed System Structures. Operating System Concepts 8 th Edition,

Module 16: Distributed System Structures. Operating System Concepts 8 th Edition, Module 16: Distributed System Structures, Silberschatz, Galvin and Gagne 2009 Chapter 16: Distributed System Structures Motivation Types of Network-Based Operating Systems Network Structure Network Topology

More information

AppsRules Suite. Patch Installation Guide. Software Version 6.5

AppsRules Suite. Patch Installation Guide. Software Version 6.5 AppsRules Suite Patch Installation Guide Software Version 6.5 2005 Logical Apps All rights reserved. Printed in USA. Restricted Rights Legend This software and associated documentation contain proprietary

More information

FieldView. Management Suite

FieldView. Management Suite FieldView The FieldView Management Suite (FMS) system allows administrators to view the status of remote FieldView System endpoints, create and apply system configurations, and manage and apply remote

More information

Top Ten Best Practices in Oracle Data Integrator Projects

Top Ten Best Practices in Oracle Data Integrator Projects Top Ten Best Practices in Oracle Data Integrator Projects By FX on Jun 25, 2009 Top Ten Best Practices in Oracle Data Integrator Projects This post assumes that you have some level of familiarity with

More information

Relius Administration Version For Public Consumption Last Updated: May 16, 2017 Relius Technology Support

Relius Administration Version For Public Consumption Last Updated: May 16, 2017 Relius Technology Support Relius Administration Version 2017 For Public Consumption Last Updated: May 16, 2017 Relius Technology Support Attention Technology Consultants! If you are unfamiliar with the end-user specific Relius

More information

CMSC 332 Computer Networking Web and FTP

CMSC 332 Computer Networking Web and FTP CMSC 332 Computer Networking Web and FTP Professor Szajda CMSC 332: Computer Networks Project The first project has been posted on the website. Check the web page for the link! Due 2/2! Enter strings into

More information

Physical-to-Virtual Migration with Portlock Storage Manager

Physical-to-Virtual Migration with Portlock Storage Manager PO RTL OC K Physical-to-Virtual Migration with Portlock Storage Manager Table of Contents Introduction... 3 About this Document... 3 About the Reader... 3 About Portlock Storage Manager and the Portlock

More information

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced

LSSP Corporation 1 PinPoint Document Management Initial Setup Guide - Advanced INTRODUCTION This guide will go over some of the more advanced topics involved with setting up your PinPoint database. Every topic discussed in this guide is completely optional none of the following is

More information

Cedar User manual. Last modified: 10/08/2005. Author: Johann Larusson

Cedar User manual. Last modified: 10/08/2005. Author: Johann Larusson Cedar User manual Last modified: 10/08/2005 Author: Johann Larusson johann@cs.brandeis.edu 1 Table of Contents Introduction...3 The Cedar environment...4 Cedar client overview...5 1. User manager...6 2.

More information

DocShuttle Dictator. by Bytescribe, Inc.

DocShuttle Dictator. by Bytescribe, Inc. DocShuttle Dictator by Bytescribe, Inc. Additional Documentation For more information on using DocShuttle Dictator, please visit: DocShuttle Frequently Asked Questions (FAQ s) go to www.bytescribe.com/faqs.htm

More information

Online Demo Guide. Barracuda PST Enterprise. Introduction (Start of Demo) Logging into the PST Enterprise

Online Demo Guide. Barracuda PST Enterprise. Introduction (Start of Demo) Logging into the PST Enterprise Online Demo Guide Barracuda PST Enterprise This script provides an overview of the main features of PST Enterprise, covering: 1. Logging in to PST Enterprise 2. Client Configuration 3. Global Configuration

More information

Replication. Some uses for replication:

Replication. Some uses for replication: Replication SQL Server 2000 Replication allows you to distribute copies of data from one database to another, on the same SQL Server instance or between different instances. Replication allows data to

More information

WEB ADI USER GUIDE. 1. The first step is to review and ensure you meet the following system requirements:

WEB ADI USER GUIDE. 1. The first step is to review and ensure you meet the following system requirements: Getting Started: 1. The first step is to review and ensure you meet the following system requirements: One of the following operating systems must be installed on the client PC: _ Windows ME _ Windows

More information

WebLogic JMS System Best Practices Daniel Joray Trivadis AG Bern

WebLogic JMS System Best Practices Daniel Joray Trivadis AG Bern WebLogic JMS System Best Practices Daniel Joray Trivadis AG Bern Keywords Weblogic, JMS, Performance, J2EE Introduction In many J2EE project the Java Message Service JMS is for exchange of information

More information

DB2 S-TAP, IMS S-TAP, VSAM S-TAP

DB2 S-TAP, IMS S-TAP, VSAM S-TAP IBM InfoSphere Guardium Version 8.2 IBM InfoSphere Guardium 8.2 offers the most complete database protection solution for reducing risk, simplifying compliance and lowering audit cost. Version 8.2 contains

More information

ONLINE BOOKING GUIDE

ONLINE BOOKING GUIDE ONLINE BOOKING GUIDE Table of Contents OVERVIEW & LOGGING IN... 2 SET UP & EDIT YOUR PROFILE... 4 BOOKING PREFERENCES TENNIS... 5 TENNIS BOOKINGS... 6 MAKE A BOOKING TENNIS... 6 MAKE A BOOKING SQUASH...

More information

06/02/ Local & Metropolitan Area Networks 0. INTRODUCTION. 1. History and Future of TCP/IP ACOE322

06/02/ Local & Metropolitan Area Networks 0. INTRODUCTION. 1. History and Future of TCP/IP ACOE322 1 Local & Metropolitan Area Networks ACOE322 Lecture 5 TCP/IP Protocol suite and IP addressing 1 0. INTRODUCTION We shall cover in this topic: 1. The relation of TCP/IP with internet and OSI model 2. Internet

More information

Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0

Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0 Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects

More information

Configuring the EN-4000 s Serial Ports

Configuring the EN-4000 s Serial Ports EN-4000 Reference Manual Document 7 Configuring the EN-4000 s Serial Ports A module containing two serial ports is installed in an expansion port on the front of the EN-4000. This document discusses configuration

More information

Lecture 05 I/O statements Printf, Scanf Simple statements, Compound statements

Lecture 05 I/O statements Printf, Scanf Simple statements, Compound statements Programming, Data Structures and Algorithms Prof. Shankar Balachandran Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 05 I/O statements Printf, Scanf Simple

More information

Oracle Applications White Paper R12: Bank Reconciliation through a Case Study

Oracle Applications White Paper R12: Bank Reconciliation through a Case Study Oracle Applications White Paper Contributors: Purvi Purswani, Shikha Sinha, Vinutha Ram Manohar Reviewer: Sriram Ramanujam Versions: 1.0 Creation Date: 11-Feb-2015 Update Date: 11-Feb-2015 Contents INTRODUCTION...

More information

P2P Programming Assignment

P2P Programming Assignment P2P Programming Assignment Overview This project is to implement a Peer-to-Peer (P2P) networking project similar to a simplified Napster. You will provide a centralized server to handle cataloging the

More information

Distributed System Chapter 16 Issues in ch 17, ch 18

Distributed System Chapter 16 Issues in ch 17, ch 18 Distributed System Chapter 16 Issues in ch 17, ch 18 1 Chapter 16: Distributed System Structures! Motivation! Types of Network-Based Operating Systems! Network Structure! Network Topology! Communication

More information

SAS Data Integration Studio 3.3. User s Guide

SAS Data Integration Studio 3.3. User s Guide SAS Data Integration Studio 3.3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Data Integration Studio 3.3: User s Guide. Cary, NC: SAS Institute

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Extending Web Applications with Business Logic: Introducing EJB Components...1 EJB Project type Wizards...2

More information

Compiler Design Prof. Y. N. Srikant Department of Computer Science and Automation Indian Institute of Science, Bangalore

Compiler Design Prof. Y. N. Srikant Department of Computer Science and Automation Indian Institute of Science, Bangalore Compiler Design Prof. Y. N. Srikant Department of Computer Science and Automation Indian Institute of Science, Bangalore Module No. # 10 Lecture No. # 16 Machine-Independent Optimizations Welcome to the

More information

Module 15: Network Structures

Module 15: Network Structures Module 15: Network Structures Background Topology Network Types Communication Communication Protocol Robustness Design Strategies 15.1 A Distributed System 15.2 Motivation Resource sharing sharing and

More information