Segment-oriented Recovery

Size: px
Start display at page:

Download "Segment-oriented Recovery"

Transcription

1 Advanced Tpics in Operating Systems, CS262a Prf. Eric A. Brewer (with help frm Rusty Sears) Segment-riented Recvery ARIES wrks great but is 20+ years ld and has sme prblems: viewed as very cmplex n available implementatins with surce cde part f a mnlithic DBMS: can use reuse transactins fr ther systems? LSN in the page breaks up large bjects (Fig 1), prevents efficient I/O DBMS seems hard t scale fr clud cmputing (except by partitining) Original gals (Stasis): build an pen-surce transactin system with full ARIES-style steal/n-frce transactins try t make the DBMS mre layered in the OS style try t supprt a wider array f transactinal systems: versin cntrl, file systems, biinfrmatics r science databases, graph prblems, search engines, persistent bjects,... cmpetitive perfrmance These gals were mstly met, althugh the pen-surce versin needs mre users and we have nly tried sme f the unusual applicatins. Original versin was basically straight ARIES; develpment led t many insights and the new versin based n segments. Segment-riented recvery (SOR) A segment is just a range f bytes may span multiple pages may have many per page analgus t segments and pages in cmputer architecture (but arch uses segments fr prtectin bundaries, we use them fr recvery bundaries; in bth, pages are fixed size and the unit f mvement t disk) Key idea: change tw f the cre ARIES design pints: Recver segments nt pages N LSNs n pages ARIES: LSN per page enable exactly nce red semantics SOR: estimate the LSN cnservatively (lder) => at least nce semantics [but must nw limit the actins we can take in red] The Big Fur Psitives f SOR: 1

2 1) Enable DMA and/r zer-cpy I/O N LSNs per page mean that large bjects are cntiguus n disk N segmentatin and reassembly t mve bjects t/frm the disk N need t invlve the CPU in bject I/O (very expensive); use DMA instead 2) Fix persistent bjects Prblem: cnsider page with multiple bjects, each f which has an in memry representatin (e.g. a C++ r Java bject) Suppse we update bject A and generate a lg entry with LSN=87 Next we update bject B (n the same page), generate its lg entry with LSN=94, and write it back t the disk page, updating the page LSN This pattern breaks recvery: the new page LSN (94) implies that the page reflects red lg entry 87, but it des nt. ARIES slutin : disk pages (in memry) must be updated n every lg write; this is write thrugh caching -- all updates are written thrugh t the buffer manager page SOR slutin: there is n page LSN and thus n errr Buffer manager is written n cache evictin -- write back caching. This implies much less cpying/ marshalling fr ht bjects. This is like n frce between the app cache and the buffer manager (!) 3) Enable high/lw pririty transactins (lg rerdering n the fly) With pages, we assign the LSN atmically with the page write [draw fig 2] nt pssible t rerder lg entries at all in thery, tw independent transactins culd have their lg entries rerdered based n pririty r because they are ging t different lg disks (r lg servers) SOR: d nt need t knw LSN at the time f the page update (just need t make sure it is assigned befre yu cmmit, s that it is rdered befre later transactins; this is trivial t ensure -- just use nrmal lcking and fllw WAL prtcl) High pririty updates: mve lg entry t the frnt f the lg r t high pririty fast lg disk Lw pririty updates g t end f lg as usual 2

3 4) Decuple the cmpnents; enable clud cmputing versins backgrund: pin pages t keep them frm being stlen (shrt term), latch pages t avid race cnditins within a page subtle prblem with pages: must latch the page acrss the call t lg manager (in rder t get an LSN atmically) SOR has n page LSN and in fact n shared state at all fr pages => n latch needed SOR decuple three different things: App <-> Buffer manager: this is the write-back caching described abve: nly need t interact n evictin, nt n each update Buffer manager <-> lg manager: n hlding a latch acrss the lg manager call; lg manager call can nw by asynchrnus and batched tgether Segments can be mved via zer-cpy I/O directly, with n meta data (e.g. page LSN) and n CPU invlvement. Simplifies archiving and reading large bjects (e.g. phts). Hpe: smene (ideally in CS262) will build a distributed transactin service using SOR Apps, Buffer Manager, Lg Manager, Stable strage culd all be different clusters Perfrmance: (fig 11): 1-3 rders f magnitude difference fr distributed transactins Physilgical Red (review): Reds are applied exactly nce (using the page LSN) Cmbinatin f physical and lgical lgging physical: write pre- r pst-images (r bth) lgical: write the lgical peratin ( insert ) Physilgical: 3

4 reds are physical nrmal unds are like reds and set a new LSN (des nt revert t the ld LSN -- wuldn t wrk given multiple bjects per page!) t enable mre cncurrency, d nt und structural changes f a B-Tree (r ther index); instead f a physical und, issue a new lgical und that is the inverse peratin. Enables cncurrency because we can hld shrt lcks fr the structural change rather than lng lcks (until the end f the transactin) Sltted pages: add an array f ffsets t each page (slts), then stre recrds with a slt number and use the array t lk up the current ffset fr that recrd. This allws changing the page layut withut any lg entries. SOR Red: Reds may applied mre than nce; we g back farther in time than strictly necessary Reds must be physical blind writes -- write cntent that d nt depend n the previus cntents Unds can still be lgical fr cncurrency Sltted page layut changes require red lgging Cre SOR red phase: peridically write estimated LSNs t lg (after yu write back a page) start frm disk versin f the segment (r frm snapsht r whle segment write) replay all reds since estimated LSN (wrst case the beginning f the truncated lg), even thugh sme might have been applied already fr all bytes f the segment: either it was crrect n disk and nt changed r it was written during recvery in rder by time (and thus crrectly reflects the last lg entry t tuch that byte) Hybrid Recvery: Can mix SOR and traditinal ARIES Sme pages have LSNs, sme dn t Can t easily lk at a page and tell! (all the bytes are used fr segments) Lg page type changes and zer ut the page recvery may actually crrupt a page temprarily until it gets the type crrect, at which pint it rlls frward crrectly frm the all zer page. Example f when t use: Extra stuff: B-Trees: internal ndes n pages, leaves are segments Tables f strings: shrt strings gd fr pages especially if they change size; lng strings are gd fr segments due t cntiguus layut Why are there LSNs n pages? s that we can atmically write the timestamp (LSN) with the page prblem: page writes aren t actually atmic anymre slutin: make them atmic s that ARIES still wrks 4

5 write sme bits int all sectrs f a page (8K page = B sectrs); cmpare thse bits with a value stre smewhere else. N match => recver the page (but may match and be wrng). Assumes sectrs are written atmically, which is reasnable. write a checksum fr each page (including the LSN) and check it when reading back the page Bth slutins impact I/O perfrmance sme SOR apprach: checksum each segment (r grup f segments if they are small) n checksum failure, can replay last red, which can fix a trn page (and then cnfirm using the checksum); if that desn t wrk g back t ld versin and rll frward blind writes can fix crrupted pages since they d nt depend n its cntents 5

CSE 231 Fall 2015 Computer Project #4

CSE 231 Fall 2015 Computer Project #4 CSE 231 Fall 2015 Cmputer Prject #4 Assignment Overview This assignment fcuses n the design, implementatin and testing f a Pythn prgram that uses character strings fr data decmpressin. It is wrth 45 pints

More information

Tipsheet: Sending Out Mass Emails in ApplyYourself

Tipsheet: Sending Out Mass Emails in ApplyYourself GEORGETOWN GRADUATE SCHOOL Tipsheet: Sending Out Mass Emails in ApplyYurself In ApplyYurself (AY), it is very simple and easy t send a mass email t all f yur prspects, applicants, r students with applicatins

More information

BackupAssist SQL Add-on

BackupAssist SQL Add-on WHITEPAPER BackupAssist Versin 6 www.backupassist.cm 2 Cntents 1. Requirements... 3 1.1 Remte SQL backup requirements:... 3 2. Intrductin... 4 3. SQL backups within BackupAssist... 5 3.1 Backing up system

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

Administration of SQL Server

Administration of SQL Server Administratin f SQL Server High Availability RNDr. David Hksza, Ph.D. http://siret.cz/hksza Outline High availability in SQL Server 2008 failver clustering lg shipping mirrring High availability in SQL

More information

Disk Redundancy (RAID)

Disk Redundancy (RAID) A Primer fr Business Dvana s Primers fr Business series are a set f shrt papers r guides intended fr business decisin makers, wh feel they are being bmbarded with terms and want t understand a cmplex tpic.

More information

In addition to assisting with the disaster planning process, it is hoped this document will also::

In addition to assisting with the disaster planning process, it is hoped this document will also:: First Step f a Disaster Recver Analysis: Knwing What Yu Have and Hw t Get t it Ntes abut using this dcument: This free tl is ffered as a guide and starting pint. It is des nt cver all pssible business

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

How To Migrate To A Networks Dmain Name Service On A Pc Or Macbook (For Pc) On A Linux Computer (For Macbook) On An Ipad Or Ipad (For Ipad) On Pc Or Ipa (For

How To Migrate To A Networks Dmain Name Service On A Pc Or Macbook (For Pc) On A Linux Computer (For Macbook) On An Ipad Or Ipad (For Ipad) On Pc Or Ipa (For Reprt: April 12, 2011 By Erick Engelke I have rganized my tasks arund tw majr prblems: 1. Define the new active directry a. Dmain Name Service fr the dmain - cmplete b. Dmain layut, structuring f Organizatinal

More information

Application Note: 202

Application Note: 202 Applicatin Nte: 202 MDK-ARM Cmpiler Optimizatins Getting the Best Optimized Cde fr yur Embedded Applicatin Abstract This dcument examines the ARM Cmpilatin Tls, as used inside the Keil MDK-ARM (Micrcntrller

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

System Business Continuity Classification

System Business Continuity Classification System Business Cntinuity Classificatin Business Cntinuity Prcedures Infrmatin System Cntingency Plan (ISCP) Business Impact Analysis (BIA) System Recvery Prcedures (SRP) Cre Infrastructure Criticality

More information

Success in Mathematics

Success in Mathematics Success in Mathematics Tips n hw t study mathematics, hw t apprach prblem-slving, hw t study fr and take tests, and when and hw t get help. Math Study Skills Be actively invlved in managing the learning

More information

learndirect Test Information Guide The National Test in Adult Numeracy

learndirect Test Information Guide The National Test in Adult Numeracy learndirect Test Infrmatin Guide The Natinal Test in Adult Numeracy 1 Cntents The Natinal Test in Adult Numeracy: Backgrund Infrmatin... 3 What is the Natinal Test in Adult Numeracy?... 3 Why take the

More information

Business Intelligence represents a fundamental shift in the purpose, objective and use of information

Business Intelligence represents a fundamental shift in the purpose, objective and use of information Overview f BI and rle f DW in BI Business Intelligence & Why is it ppular? Business Intelligence Steps Business Intelligence Cycle Example Scenaris State f Business Intelligence Business Intelligence Tls

More information

Flash Padlock. Self-Secured and Host-Independent USB Flash Drive White Paper. April 2007 Prepared by ClevX, LLC for Corsair Memory

Flash Padlock. Self-Secured and Host-Independent USB Flash Drive White Paper. April 2007 Prepared by ClevX, LLC for Corsair Memory Flash Padlck - White Paper Flash Padlck Self-Secured and Hst-Independent USB Flash Drive White Paper April 2007 Prepared by ClevX, LLC fr Crsair Memry 1 INTRODUCTION Millins f USB Flash Drives (UFDs) are

More information

Caching Software Performance Test: Microsoft SQL Server Acceleration with FlashSoft Software 3.8 for Windows Server

Caching Software Performance Test: Microsoft SQL Server Acceleration with FlashSoft Software 3.8 for Windows Server The linked image cannt be displayed. The file may have been mved, renamed, r deleted. Verify that the link pints t the crrect file and lcatin. Technical Brief Caching Sftware Perfrmance Test: Micrsft SQL

More information

Getting started with Android

Getting started with Android Getting started with Andrid Befre we begin, there is a prerequisite, which is t plug the Andrid device int yur cmputer, and lad the drivers fr the OS. In writing this article, I was using Windws XP, 7

More information

System Business Continuity Classification

System Business Continuity Classification Business Cntinuity Prcedures Business Impact Analysis (BIA) System Recvery Prcedures (SRP) System Business Cntinuity Classificatin Cre Infrastructure Criticality Levels Critical High Medium Lw Required

More information

Retirement Planning Options Annuities

Retirement Planning Options Annuities Retirement Planning Optins Annuities Everyne wants a glden retirement. But saving fr retirement is n easy task. The baby bmer generatin is graying. Mre and mre peple are appraching retirement age. With

More information

2. When logging is used, which severity level indicates that a device is unusable?

2. When logging is used, which severity level indicates that a device is unusable? Last updated by Admin at March 3, 2015. 1. What are the mst cmmn syslg messages? thse that ccur when a packet matches a parameter cnditin in an access cntrl list link up and link dwn messages utput messages

More information

FACING YOUR FEARS: EXPOSURE

FACING YOUR FEARS: EXPOSURE FACING YOUR FEARS: EXPOSURE An imprtant step in managing anxiety invlves facing feared situatins, places r bjects. It is nrmal t want t avid the things yu fear. Hwever, avidance prevents yu frm learning

More information

OUR DISCIPLINARY POLICY

OUR DISCIPLINARY POLICY OUR DISCIPLINARY POLICY WHO is this plicy fr? Channel 4 emplyees wh ve passed their prbatinary perid Channel 4 managers This plicy des nt frm part f any emplyee s cntract f emplyment and we may amend it

More information

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003 Trends and Cnsideratins in Currency Recycle Devices Nvember 2003 This white paper prvides basic backgrund n currency recycle devices as cmpared t the cmbined features f a currency acceptr device and a

More information

KIK s GUIDE FOR LAW ENFORCEMENT

KIK s GUIDE FOR LAW ENFORCEMENT Thanks fr checking ut ur law enfrcement guide. Kik takes the safety f ur users very seriusly, and we hpe this guide will be a useful tl fr yu. It includes infrmatin abut ur app; the features and functins

More information

Consumer Complaint Roadmap

Consumer Complaint Roadmap Cnsumer Cmplaint Radmap Step 1. What yu shuld knw befre yu begin. Refund and Exchange Plicies The nly case where a cnsumer has the abslute right t a return is when there is a defect in the prduct. Mst

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

Welcome to Remote Access Services (RAS)

Welcome to Remote Access Services (RAS) Welcme t Remte Access Services (RAS) Our gal is t prvide yu with seamless access t the TD netwrk, including the TD intranet site, yur applicatins and files, and ther imprtant wrk resurces -- whether yu

More information

Microsoft SQL Server Administration

Microsoft SQL Server Administration Micrsft SQL Server Administratin Disk & memry David Hksza http://siret.cz/hksza Lecture Outline Query lifecycle Data strage SQL Server Memry SELECT Query Lifecycle 1. SNI client-server cnnectin using TCP/IP

More information

Volume 2, Issue 11, November 2014 International Journal of Advance Research in Computer Science and Management Studies

Volume 2, Issue 11, November 2014 International Journal of Advance Research in Computer Science and Management Studies Vlume 2, Issue 11, Nvember 2014 Internatinal Jurnal f Advance Research in Cmputer Science and Management Studies Research Article / Survey Paper / Case Study Available nline at: www.ijarcsms.cm ISSN: 2321

More information

Group 3 Flip Chart Notes

Group 3 Flip Chart Notes MDH-DLI Sympsium -- Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin Electrnic Health Care Transactins -- Nvember 5, 2014 Grup 3 Flip Chart Ntes Meeting Mandates, Making the Cnnectin: Wrkers Cmpensatin

More information

Fermilab Time & Labor Desktop Computer Requirements

Fermilab Time & Labor Desktop Computer Requirements Fermilab Time & Labr Desktp Cmputer Requirements Fermilab s new electrnic time and labr reprting (FTL) system utilizes the Wrkfrce Central prduct frm Krns. This system is accessed using a web brwser utilizing

More information

UNIT PLAN. Methods. Soccer Unit Plan 20 days, 40 minutes in length. For 7-12 graders. Name

UNIT PLAN. Methods. Soccer Unit Plan 20 days, 40 minutes in length. For 7-12 graders. Name UNIT PLAN Methds Sccer Unit Plan 20 days, 40 minutes in length Fr 7-12 graders Name TABLE OF CONTENTS I. Title Page II. Table f Cntents III. Blck Time Frame IV. Unit Objectives V. Task Analysis VI. Evaluative

More information

Polymorphic Shellcodes vs. Application IDSs

Polymorphic Shellcodes vs. Application IDSs http://www.ngsec.cm Plymrphic Shellcdes vs. Applicatin IDSs 1. Intrductin. 2. Shellcde types and recgnitin techniques. 3. Intrusin Detectin Systems. 4. NGSecureWeb. 5. References. 6. Credits. Page 1 f

More information

1 Google Apps for Education Henrico County, Virginia

1 Google Apps for Education Henrico County, Virginia 1 Ggle Apps fr Educatin Henric Cunty, Virginia PROGRAM CATEGORY: Infrmatin Technlgy 1. Abstract f the Prgram Henric Cunty Public Schls (HCPS) prides itself n its innvative apprach t instructin. We believe

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

Document Management Versioning Strategy

Document Management Versioning Strategy 1.0 Backgrund and Overview Dcument Management Versining Strategy Versining is an imprtant cmpnent f cntent creatin and management. Versin management is a key cmpnent f enterprise cntent management. The

More information

METU. Computer Engineering

METU. Computer Engineering METU Cmputer Engineering CENG 491 Cmputer Engineering Design I AKAMAI SYSTEMS Members f the Team: Ahmet Emin Tsun e141801@metu.edu.tr Uğur Can Tekin e134800@metu.edu.tr Hasan İşler e134758@metu.edu.tr

More information

SUMMARY This is what Business Analysts do in the real world when embarking on a new project: they analyse

SUMMARY This is what Business Analysts do in the real world when embarking on a new project: they analyse S yu want t be a Business Analyst? Analyst analyse thyself. SUMMARY This is what Business Analysts d in the real wrld when embarking n a new prject: they analyse Why? Why are we ding this prject - what

More information

A Guide for Writing Reflections

A Guide for Writing Reflections A Guide fr Writing Reflectins Writing Thelgical Reflectins What is thelgical reflectin? The purpse f Thelgical Reflectin (TR) is t identify and analyze a significant event and prcess the even frm a biblical

More information

Software Distribution

Software Distribution Sftware Distributin Quantrax has autmated many f the prcesses invlved in distributing new cde t clients. This will greatly reduce the time taken t get fixes laded nt clients systems. The new prcedures

More information

Mobile Workforce. Improving Productivity, Improving Profitability

Mobile Workforce. Improving Productivity, Improving Profitability Mbile Wrkfrce Imprving Prductivity, Imprving Prfitability White Paper The Business Challenge Between increasing peratinal cst, staff turnver, budget cnstraints and pressure t deliver prducts and services

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

Best Practice - Pentaho BA for High Availability

Best Practice - Pentaho BA for High Availability Best Practice - Pentah BA fr High Availability This page intentinally left blank. Cntents Overview... 1 Pentah Server High Availability Intrductin... 2 Prerequisites... 3 Pint Each Server t Same Database

More information

Service Desk Self Service Overview

Service Desk Self Service Overview Tday s Date: 08/28/2008 Effective Date: 09/01/2008 Systems Invlved: Audience: Tpics in this Jb Aid: Backgrund: Service Desk Service Desk Self Service Overview All Service Desk Self Service Overview Service

More information

Basic Guide line for The Sportident system

Basic Guide line for The Sportident system Basic Guide line fr The Sprtident system SI-statins BSF7-8, Master statins BSM7, SI-Cnfig versin 1.4.1, 2006-10-24-1 - Index This guide line... 3 General... 3 Knwledge... 3 Mre infrmatin... 3 System requirements...

More information

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010

Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 Emulated Single-Sign-On in LISTSERV Rev: 15 Jan 2010 0. Nte that frm LISTSERV versin 15.5, LISTSERV supprts using an external LDAP directry (r Windws Active Directry) fr lgin authenticatin in additin t

More information

Contents. Extra copies of this booklet are available on the Study Skills section of the school website (www.banbridgehigh.co.

Contents. Extra copies of this booklet are available on the Study Skills section of the school website (www.banbridgehigh.co. Banbridge High Schl Revisin & Examinatins Cntents Hw t Plan Yur Revisin... 2 A sample timetable:... 3 Sample Revisin Timetable... 4 Hw t Create the Right Envirnment: Setting Up My Space... 5 Think Abut

More information

5.2.1 Passwords. Information Technology Policy. Policy. Purpose. Policy Statement. Applicability of this Policy

5.2.1 Passwords. Information Technology Policy. Policy. Purpose. Policy Statement. Applicability of this Policy Infrmatin Technlgy Plicy 5.2.1 Passwrds Plicy Area: 5.2 Security Title: 5.2.1 Passwrds Issued by: Assistant Vice-President/CIO, ITS Date Issued: 2006 July 24 Last Revisin Date: 2011 Octber 19 Apprved by:

More information

Adding reliable data-plane acknowledgements to OpenFlow. (Project #4)

Adding reliable data-plane acknowledgements to OpenFlow. (Project #4) Adding reliable data-plane acknwledgements t OpenFlw Peter Peresini peter.peresini@epfl.ch (Prject #4) OpenFlw visin OpenFlw hides switch diversity behind a cmmn cnfiguratin interface 1 OpenFlw reality

More information

Crnwall Partners in Care

Crnwall Partners in Care Crnwall Partners in Care Mving Frward Versin 2.0 8 th January 2014 By Richard Mnk Crnwall Partners in Care August 2013 Page 1 f 6 CPIC mving frward This dcument has been created t help prvide a little

More information

Using PayPal Website Payments Pro UK with ProductCart

Using PayPal Website Payments Pro UK with ProductCart Using PayPal Website Payments Pr UK with PrductCart Overview... 2 Abut PayPal Website Payments Pr & Express Checkut... 2 What is Website Payments Pr?... 2 Website Payments Pr and Website Payments Standard...

More information

UC4 AUTOMATED VIRTUALIZATION Intelligent Service Automation for Physical and Virtual Environments

UC4 AUTOMATED VIRTUALIZATION Intelligent Service Automation for Physical and Virtual Environments Fr mre infrmatin abut UC4 prducts please visit www.uc4.cm. UC4 AUTOMATED VIRTUALIZATION Intelligent Service Autmatin fr Physical and Virtual Envirnments Intrductin This whitepaper describes hw the UC4

More information

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New A quick guide t the new features in Sitecre 6.6 Sitecre is a registered trademark. All ther brand and prduct names

More information

Merchant Management System. New User Guide CARDSAVE

Merchant Management System. New User Guide CARDSAVE Merchant Management System New User Guide CARDSAVE Table f Cntents Lgging-In... 2 Saving the MMS website link... 2 Lgging-in and changing yur passwrd... 3 Prcessing Transactins... 4 Security Settings...

More information

Release Notes. V8 Peregrine

Release Notes. V8 Peregrine Release Ntes V8 Peregrine Nvember 2014 Table f Cntents IMPORTANT NOTES FOR THIS RELEASE... 3 WHAT S NEW... 3 ENTERPRISE SERVER EDITION (ESE)... 3 New indexing engine that has the fllwing advantages:...

More information

Blizzard Ball: Snowballs versus Avalanches

Blizzard Ball: Snowballs versus Avalanches Blizzard Ball: Snwballs versus Avalanches Blizzard Ball is a fun, active way t review the key cncepts f and debt cvered in Katrina s Classrm Lessn 3, A Fresh Start. The activity allws players t strategize

More information

NHS Citizen Assembly Stocktake (March 2015) Mental health and parity of esteem. Version 1

NHS Citizen Assembly Stocktake (March 2015) Mental health and parity of esteem. Version 1 NHS Citizen Assembly Stcktake (March 2015) Mental health and parity f esteem Versin 1 1 Mental health and parity f esteem Parity f Esteem Objective 1. In line with the cmmitment in the Mandate, 2013 t

More information

TRAINING GUIDE. Crystal Reports for Work

TRAINING GUIDE. Crystal Reports for Work TRAINING GUIDE Crystal Reprts fr Wrk Crystal Reprts fr Wrk Orders This guide ges ver particular steps and challenges in created reprts fr wrk rders. Mst f the fllwing items can be issues fund in creating

More information

TheBrain 9 New Features and Benefits Overview

TheBrain 9 New Features and Benefits Overview TheBrain 9 New Features and Benefits Overview TheBrain 9 has been re-engineered frm the grund up and prvides enhanced capabilities in all aspects f the sftware. Frm the frnt-end user interface t the back-end

More information

HSBC Online Home Loan Application Process

HSBC Online Home Loan Application Process HSBC Online Hme Lan Applicatin Prcess Versin 1.0 Nvember 2005 Cpyright. HSBC Bank Australia Limited 2005 ALL RIGHTS RESERVED N part f this publicatin may be reprduced, stred in a retrieval system, r transmitted,

More information

Syllabus for Mobile Applications

Syllabus for Mobile Applications Syllabus fr Mbile Applicatins Descriptin: Tday's applicatins are increasingly mbile. Cmputers are n lnger cnfined t desks and laps but instead live in ur pckets and hands. This curse teaches students hw

More information

How To Write A Byod

How To Write A Byod Limitatins f the Walled Garden This is the secnd part in a series designed t help rganizatins develp their BYOD (bring-yur-wn-device) strategies fr persnally-wned smartphnes and tablets in the enterprise.

More information

Technical Report. SimpleFeatureService. Ing. Andrea Aime Ing. Simone Giannecchini GeoSolutions S.A.S. Date 10/11/2010 Version 0.1

Technical Report. SimpleFeatureService. Ing. Andrea Aime Ing. Simone Giannecchini GeoSolutions S.A.S. Date 10/11/2010 Version 0.1 2010 Technical Reprt SimpleFeatureService Ing. Andrea Aime Ing. Simne Giannecchini. Date 10/11/2010 Versin 0.1 Cntents Recrd f Changes... 4 SimpleFeatureService prtcl v 0.1... 4 Supprted URLs... 5 Capabilities

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

More information

OUTLOOK All About Archives

OUTLOOK All About Archives OUTLOOK All Abut Archives Why d we have Zantaz Enterprise Archiving Slutin (EAS)? Archiving prvides verall lng term strage EAS has been implemented t help manage the 300MB mailbx size limit in Outlk/Exchange

More information

Magenta HR in partnership with breath ehr

Magenta HR in partnership with breath ehr BREATHEHR ONLINE HR SYSTEM AND PORTAL Magenta HR in partnership with breath ehr Magenta HR Cnsulting Ltd. 24 Canning Street, Edinburgh EH3 8EG Tel. 0131 2272769 www.magentahr.cm inf@magentahr.cm 6 December

More information

Diagnostic Manager Change Log

Diagnostic Manager Change Log Diagnstic Manager Change Lg Updated: September 8, 2015 4.4.4090 Features and Issues Supprt fr Office 365 Tenants Yu can nw: Mnitr the status f Office 365 Services (including SharePint Online, Exchange

More information

Fast Forward Your Talent Management Approach: A Guide to Succession and Talent Review

Fast Forward Your Talent Management Approach: A Guide to Succession and Talent Review Fast Frward Yur Talent Management Apprach: A Guide t Successin and Talent Review Sue Plaster, M.Ed. Sue Plaster Cnsulting plaster.sue @gmail.cm Agenda: Accelerating Talent Management 1. Setting the Stage:

More information

Importance and Contribution of Software Engineering to the Education of Informatics Professionals

Importance and Contribution of Software Engineering to the Education of Informatics Professionals Imprtance and Cntributin f Sftware Engineering t the Educatin f Infrmatics Prfessinals Dr. Tick, József Budapest Plytechnic, Hungary, tick@bmf.hu Abstract: As a result f the Blgna prcess a new frm f higher

More information

making good practices great Customer Journey 100

making good practices great Customer Journey 100 making gd practices great Custmer Jurney 100 This questinnaire is designed t help yu review the service yu ffer t yur Custmers, recgnise what yu are already ding really well and identify areas fr imprvement.

More information

Patient Participation Report

Patient Participation Report Patient Participatin Reprt In 2011, Westngrve Partnership decided t establish a PPG (Patient Participatin Grup) that wuld allw us t engage with ur patients, receive feedback frm them and ensure that they

More information

INFRASTRUCTURE TECHNICAL LEAD

INFRASTRUCTURE TECHNICAL LEAD 1. PURPOSE OF POSITION This psitin is respnsible fr the delivery f peratinal supprt and maintenance f the TDHB IT infrastructure envirnment. This rle is als pivtal in the develpment and delivery f infrastructure

More information

Grant Application Writing Tips and Tricks

Grant Application Writing Tips and Tricks Grant Applicatin Writing Tips and Tricks Grants are prvided by gvernment (lcal, state and natinal), charitable trusts, and by cmmunity rganisatins (eg Ltteries, Rtary, etc). Each grant has a specific purpse,

More information

2008 BA Insurance Systems Pty Ltd

2008 BA Insurance Systems Pty Ltd 2008 BA Insurance Systems Pty Ltd BAIS have been delivering insurance systems since 1993. Over the last 15 years, technlgy has mved at breakneck speed. BAIS has flurished in this here tday, gne tmrrw sftware

More information

Level 1 Technical. RealPresence Web Suite and Web Suite Pro. Contents

Level 1 Technical. RealPresence Web Suite and Web Suite Pro. Contents Level 1 Technical RealPresence Web Suite and Web Suite Pr Cntents 1 - Glssary... 2 2 Features... 3 RealPresence Platfrm integratin... 3 RealPresence Web Suite Sftware... 3 Sftware Keys... 3 3 - Web Client

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

Appendix A Page 1 of 5 DATABASE TECHNICAL REQUIREMENTS AND PRICING INFORMATION. Welcome Baby and Select Home Visitation Programs Database

Appendix A Page 1 of 5 DATABASE TECHNICAL REQUIREMENTS AND PRICING INFORMATION. Welcome Baby and Select Home Visitation Programs Database Appendix A Page 1 f 5 The items in the list f database technical requirements belw was develped thrugh several meetings between First 5 LA Research and Evaluatin, Infrmatin Technlgy, and Prgram Develpment

More information

LISTSERV ADMINISTRATION Department of Client Services Information Technology Systems Division

LISTSERV ADMINISTRATION Department of Client Services Information Technology Systems Division LISTSERV ADMINISTRATION Department f Client Services Infrmatin Technlgy Systems Divisin E-MAIL LIST INSTRUCTIONS Yur List s Admin Webpage...2 Fr assistance cntact the Technlgy Assistance Center: 962-4357

More information

Business Plan 2014-15

Business Plan 2014-15 Cmmissin fr Lcal Administratin in England Business Plan 2014-15 All Business Plan activity is linked t ur fur Strategic Objectives LGO Business Plan 2014-2015 v web 3 Page 1 descriptin 1. Prvide a cmplaints

More information

Identity fraud and theft

Identity fraud and theft Page 1 f 5 Identity theft is when yur persnal details are stlen and identity fraud is when thse details are used t cmmit fraud. Mre abut identity fraud and identity theft Identity fraud can happen when:

More information

Integrate Marketing Automation, Lead Management and CRM

Integrate Marketing Automation, Lead Management and CRM Clsing the Lp: Integrate Marketing Autmatin, Lead Management and CRM Circular thinking fr marketers 1 (866) 372-9431 www.clickpintsftware.cm Clsing the Lp: Integrate Marketing Autmatin, Lead Management

More information

SQL Perform Tools 5.10 Release Note

SQL Perform Tools 5.10 Release Note SQL Perfrm Tls 5.10 Release Nte Lndn, UK, February 26 2015 SQL Perfrm Tls versin 5.10 release Tday we are prudly annuncing the latest release f ur prducts' family SQL Perfrm Tls. Fr clarity, the prduct

More information

ASUS PC Diagnostics Guide

ASUS PC Diagnostics Guide ASUS PC Diagnstics Guide Mtherbard self-diagnstics is a diagnstic tl designed t test the fllwing n yur cmputer: System Infrmatin. System Devices. System Stress. The System Infrmatin Cllectin detects the

More information

Data Protection Act Data security breach management

Data Protection Act Data security breach management Data Prtectin Act Data security breach management The seventh data prtectin principle requires that rganisatins prcessing persnal data take apprpriate measures against unauthrised r unlawful prcessing

More information

Implementing an electronic document and records management system using SharePoint 7

Implementing an electronic document and records management system using SharePoint 7 Reprt title Agenda item Implementing an electrnic dcument and recrds management system using SharePint 7 Meeting Finance, Prcurement & Prperty Cmmittee 16 June 2008 Date Reprt by Dcument Number Head f

More information

Best Practices for Optimizing Performance and Availability in Virtual Infrastructures

Best Practices for Optimizing Performance and Availability in Virtual Infrastructures Best Practices fr Optimizing Perfrmance and Availability in Virtual Infrastructures www.nimsft.cm Best Practices fr Optimizing Perfrmance and Availability in Virtual Infrastructures PAGE 2 Table f Cntents

More information

Getting Started Guide

Getting Started Guide AnswerDash Resurces http://answerdash.cm Cntextual help fr sales and supprt Getting Started Guide AnswerDash is cmmitted t helping yu achieve yur larger business gals. The utlined pre-launch cnsideratins

More information

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1

Improved Data Center Power Consumption and Streamlining Management in Windows Server 2008 R2 with SP1 Imprved Data Center Pwer Cnsumptin and Streamlining Management in Windws Server 2008 R2 with SP1 Disclaimer The infrmatin cntained in this dcument represents the current view f Micrsft Crpratin n the issues

More information

Legacy EMR Data Conversions

Legacy EMR Data Conversions Legacy EMR Data Cnversins Agenda Abut us Drivers fr EMR Replacement Things t Cnsider Tp 5 Reasns EMR Cnversins Fail Optins fr Legacy EMR Cnversin Case Study Abut Us Health efrmatics is a healthcare IT

More information

A96 CALA Policy on the use of Computers in Accredited Laboratories Revision 1.5 August 4, 2015

A96 CALA Policy on the use of Computers in Accredited Laboratories Revision 1.5 August 4, 2015 A96 CALA Plicy n the use f Cmputers in Accredited Labratries Revisin 1.5 August 4, 2015 A96 CALA Plicy n the use f Cmputers in Accredited Labratries TABLE OF CONTENTS TABLE OF CONTENTS... 1 CALA POLICY

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

Social Media Service

Social Media Service Cnscius Slutins Prduct Briefing Scial Media Service December 2010 Cnscius Slutins Ltd. Ryal Lndn Buildings 42-46 Baldwin Street Bristl BS1 1PN 0117 325 0200 supprt@cnscius.c.uk Cnscius Slutins Scial Media

More information

Common applications (append <space>& in BASH shell for long running applications)

Common applications (append <space>& in BASH shell for long running applications) CS 111 Summary User Envirnment Terminal windw: Prmpts user fr cmmands. BASH shell tips: fr cmmand line cmpletin. / t step backward/frward thrugh cmmand histry.! will re-execute

More information

Counselor in Training Program

Counselor in Training Program Tukwila Parks and Recreatin Cunselr in Training Prgram D yu want t be a camp cunselr in the future? Then the Cunselr in Training (CIT) prgram is just fr yu! CITs wrk alng side camp cunselrs where they

More information

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011 Watlingtn and Chalgrve GP - Patient Satisfactin Survey 2011 Backgrund During ne week in Nvember last year patients attending either the Chalgrve r the Watlingtn surgeries were asked t cmplete a survey

More information

A. Early Case Assessment

A. Early Case Assessment Electrnic Discvery Reference Mdel Standards fr the identificatin f electrnically stred infrmatin in discvery http://www.edrm.net/resurces/standards/identificatin A. Early Case Assessment Once a triggering

More information