Domain 1: Designing a SQL Server Instance and a Database Solution

Size: px
Start display at page:

Download "Domain 1: Designing a SQL Server Instance and a Database Solution"

Transcription

1

2 Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) Domai 1: Desigig a SQL Server Istace ad a Database Solutio Desigig for CPU, Memory ad Storage Capacity Requiremets Whe desigig a SQL server istace cosideratio must be give to the resources that will be utilized i that istace. What we will discuss i this sectio will be how to allocate those resources, how to desig ad cofigure a server istace, ad how to desig the physical database. Ad i additio to the server ad database, you will lear how to desig a migratio, cosolidatio, ad upgrade strategy. CPU Requiremets SQL Server 2008 requires a processor with a miimum speed of 1 GHz, but like most of Microsoft s requiremets you really should use the recommeded 2 GHz processor. This depeds somewhat o the OS but more is always better i the case of CPU speed. Whe selectig a CPU, both 32 bit ad 64 bit CPUs are supported by SQL Server There are, however, some beefits to usig the 64 bit architecture over the x86 architecture. We ll list those, below: Up to 8 TB of memory is supported Better bus architecture which equals higher speed ad better throughput Larger o-chip cache (L2 cache) Better chip cache maagemet Aother processor optio is a multicore processor. A multicore processor cotais two or more complete processors o the same chip. Each processor rus as a idepedet CPU with its ow L2 cache. A mai advatage of usig multicore processors is hyperthreadig. This allows multiple threads to ru simultaeously o a sigle CPU ad each processor keeps the state for each thread. To idetify CPU performace problems use the SQL Server pla cache couters. These couters are available usig the performace moitor (we will discuss later i Domai 5 of this maual) - ad iclude the followig statistics: Cache hits ratio Number of batch requests Number of compilatios per secod Number of recompilatios per secod LearSmart Cloud Classroom: Video Traiig Mauals

3 Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) Memory Cosideratios 32bit architecture has some limitatios whe it comes to memory usage. For istace, you ca oly access 4GB of memory directly ad oly 2GB is available for SQL Server with aother 2GB for the OS. However you ca up this by usig the /3GB switch i boot.ii to allow 3GB of memory per process. This leaves 1GB available for the OS. You ca also use the AWE (Address Widows Extesio) feature to use high memory for data buffers. Usig AWE however provides o beefit for stored procedure cache, some CLR fuctios or lock arrays. 64bit architecture provides 8GB of directly accessible memory with a full 7GB available to SQL Server - o switches activated. There is still 1GB available for the OS. Note: Although SQL Server 2008 ca access huge amouts of memory, the amout of actual memory available to SQL Server may be limited by the OS. NUMA Whe there are may processors i a sigle machie with oe memory cotroller, performace ca be limited because all of the processors are competig for access to memory through a sigle hardware chael. If you could divide the processors ito groups that each have their ow memory cotrollers -- to the poit where each processor is able to access memory without competitio -- you have maximum performace i regards to memory access. That s exactly what NUMA (No-uiform Memory Access) ca do for you. As more ad more processors became the orm i server desig, the eed for a hardware solutio to the problem of overloaded memory cotrollers icreased. NUMA was implemeted to meet that eed. NUMA hardware divides multiple processors ito small groups of processors (NUMA odes) that each have their ow memory ad sometimes their ow I/O cotrollers. This has icreased performace by elimiatig the memory access bottleeck i the older systems. SQL Server is NUMA aware ad works just fie o systems with NUMA desiged ito the hardware, without ay chages. NUMA is a scalable solutio to the limitatios of SMP (Symmetric Multiprocessig) architecture. The mai advatage of NUMA is scalability. The task of memory access is broke dow ito groups of CPUs with shared memory rather tha available memory beig shared by all CPUs i the server. Bottleecks are elimiated by limitig the umber of CPUs o ay oe memory bus ad providig access via a high speed itercoectio o each ode. There is aother cosideratio whe usig NUMA -- That is the differece i local ad foreig memory. Local memory is the memory that is ruig o the same ode as the CPU curretly ruig the thread. Foreig memory is memory that is ot ruig o the curret thread. Sice NUMA uses both local ad foreig memory it will take loger to access some memory tha others. NUMA Ratio is the ratio of foreig memory access time to local memory access time. Ideally this ratio should be 1 this idicates that it takes the same time to access foreig memory as it does local memory. A ratio of 2 idicates that it takes twice the time to access foreig memory as it does the local memory ad so forth. Some Widows applicatios ad SQL Server 2003 ad earlier, are ot NUMA aware ad will sometimes perform poorly with NUMA hardware. The NUMA cofiguratio is recorded i the server log as multimode cofiguratio alog with CPU mask whe the server is started. SQL Server 2008 supports both hardware NUMA ad soft NUMA. LearSmart Cloud Classroom: Video Traiig Mauals

4 Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) Hardware NUMA Computers with hardware NUMA have more tha oe system bus. The hardware determies the umber of CPUs that are served by a sigle bus ad each group of CPUs has its ow memory as well as its ow bus. A hardware NUMA ode is a collectio of CPUs, memory bus, ad I/O chaels. If you already have the hardware ad you re ot sure how may NUMA odes you have, you ca fid out by executig the query: SELECT DISTINCT memory_ode_id FROM sys.dm_os_memory_clerks If this query returs ode 0 oly, either you do t have hardware NUMA or your NUMA is cofigured for iterleaved memory. Software NUMA With SQL Server you ca group CPUs ito odes with software as well. This groupig is kow as soft- NUMA. Soft-NUMA is used whe you have may CPUs but you have o hardware NUMA or if you have a eed to divide the hardware odes ito smaller groups (odes). You do this by creatig a registry etry that describes your Soft NUMA setup. Soft NUMA does ot affect memory odes, oly CPU odes. I other words, with soft NUMA you ca oly group processors, but you have o cotrol over how the buses or memory are grouped, that s a fuctio of hardware oly. SQL Server has oly oe Lazy Writer ad oe I/O hadler. The I/O hadler hadles all of the I/O completes ad the Lazy Writer keeps the disk updated -- durig slow times i the system -- with chages made to memory. The problem: If you have a system with may CPUs ad may users the thread that hadles the Lazy Writer ad I/O could become a bottleeck. The solutio: Cofigurig may soft NUMA odes provides oe I/O thread ad oe Lazy Writer thread per ode. You ca divide hardware odes ito eve smaller groups (soft Nodes), but you must be careful ot to cross hardware ode boudaries whe you cofigure SQL Server for soft NUMA ad hardware NUMA is preset i the system. Let s say you have two hardware NUMA odes i your system, the first ode cotais CPUs 0-3 ad the secod ode cotais CPUs 4-7. You could create a soft NUMA ode to group processors 0 ad 1 together because they are both i the same hardware NUMA ode. Ad you could create aother ode to group processors 2 ad 3 together. But you ca t create a ode that would group processors 0 ad 4 together -- because you ca t cross hardware boudaries i a soft NUMA ode. LearSmart Cloud Classroom: Video Traiig Mauals

5 Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) How to Cofigure SQL Server for Soft NUMA As we metioed earlier, you cofigure soft NUMA odes by a registry etry -- here s how: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\100\NodeCofiguratio Type Value Name Value \Node 0 DWORD 0x03 \Node 1 DWORD 0x0c \Node 2 DWORD 0x30 \Node 3 DWORD 0xc0 Figure 1: NUMA Cofiguratio ple With the right most bit of the value represetative of CPU 0, the mask value selects which CPUs will be associated with which ode. I this case processors 0 ad 1 will be associated with ode 0, processors 2 ad 3 will be associated with ode 1, ad so forth. Storage Cosideratios Types of Storage SQL Server works best with disk drives that have high rotatio speeds ad low seek times. A more expesive optio is to use SANs (Storage Area Network) -- especially for high-ed, high cofiguratio systems. Always err o the side of more disk space. You must cosider I/O throughput as well. Eve with plety of disk space you could still have throughput issues. For example, if you use a two terabyte sigle drive ad you have multiple users, the time to access the sigle drive could slow the etire system. You should cosider the type ad amout of storage used as well. Here are some hardware cosideratios for disk storage: SQL Server works best with disk drives that have high rotatio speeds ad low seek times. You may eve cosider usig the more expesive SANs (Storage Area Network) -- especially for high-ed, high cofiguratio systems. You wat to always err o the side of more disk space - more is always better whe it comes to storage capacity. Ad you must cosider I/O throughput as well. Maagig Disk Storage Rotatio speed ad seek times are importat, but so is availability. Performace of a drive is equal to the speed of the reads ad writes. But the performace i a system is equal to the speed of the reads ad writes of the idividual drives ad the availability. I other words, you may have high performace drives, but limited availability will create bottleecks ad slow dow the etire system. Fault tolerace is the ability of the system to cotiue fuctioig through a system failure without a loss of data. LearSmart Cloud Classroom: Video Traiig Mauals

6 Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) You should cosider NTFS (New Techology File System) formatted drives with a 64KB allocatio table. Why a 64KB allocatio table? 64KB is the size of oe extet. Oe extet is equal to eight pages (oe page equals 8K of data) side by side. Some large I/Os ca read a etire extet at oe time so the miimum allocatio uit should be the same size as oe extet. Aother way to icrease performace is to spread data across may differet drives. This allows parallel scas of a table ad therefore icreases throughput. RAID ad SQL Server RAID (Redudat Array of Idepedet Disks) combies two or more hard disks i a sigle logical uit. The data is divided amog several disks i a array of disks that are see by the system as oe uit, therefore the risk of data loss due to a disk failure is reduced. Havig all data i a server stored o sigle disks that are treated idepedetly by the system is aki to havig all of your fiacial ivestmets i oe compay. If the compay fails, you risk losig all of your ivestmet. Spreadig data amog several disks with mirrorig or parity error correctio is a way to protect the itegrity of the data ad spreads the risk aroud so that oe failure caot cost you all your data ivestmet. This is the basis of RAID - although some cofiguratios have either redudacy or parity but do icrease performace. A mirrorig scheme, as the ame implies, writes the same data to two or more disks at oce makig a exact copy of all of the data writte to the origial. Parity provides a way to correct errors i the data o the fly. Note: Hardware RAID is better ad faster tha OS RAID. There are several RAID levels available that allow differig combiatios of performace, redudacy, ad error checkig. Levels 0, 1, ad 5 are the oes typically implemeted by the SQL Server so for test preparatio we will focus o these three cofiguratios. RAID 0 - Stripig I RAID level 0 disk stripig is used to separate the data ito blocks ad store data i a fixed order across the disk array. Miimum of two disks Data is writte to oe disk, the the other No fault tolerace Better read ad write performace Max disks ca be quite large Disk stripig is used at this level to improve the performace of read ad write operatios. With disk stripig several disks are arraged i a array so that idepedet read ad write operatios ca be performed at the same time to more tha oe disk, thus improvig performace. Data is divided ito blocks ad i a fixed order across the disk array. Data ca be writte ad read faster tha o a sigle disk. With o mirrorig or parity, a failure of a sigle disk ca cause loss of data. RAID Level 0 is similar to level 5 except there is o fault tolerace at level 0. Advatage: Better read ad write performace. Disadvatage: No fault tolerace. LearSmart Cloud Classroom: Video Traiig Mauals

Volume, Corporate, and Educational Sales

Volume, Corporate, and Educational Sales Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) 1-800-418-6789 Desigig, Optimizig ad Maitaiig a Database Admiistrative Solutio Usig Microsoft SQL Server 2008 (70-450) LearSmart Maual Copyright

More information

(VCP-310) 1-800-418-6789

(VCP-310) 1-800-418-6789 Maual VMware Lesso 1: Uderstadig the VMware Product Lie I this lesso, you will first lear what virtualizatio is. Next, you ll explore the products offered by VMware that provide virtualizatio services.

More information

Domain 1: Configuring Domain Name System (DNS) for Active Directory

Domain 1: Configuring Domain Name System (DNS) for Active Directory Maual Widows Domai 1: Cofigurig Domai Name System (DNS) for Active Directory Cofigure zoes I Domai Name System (DNS), a DNS amespace ca be divided ito zoes. The zoes store ame iformatio about oe or more

More information

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth Questio 1: What is a ordiary auity? Let s look at a ordiary auity that is certai ad simple. By this, we mea a auity over a fixed term whose paymet period matches the iterest coversio period. Additioally,

More information

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows:

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows: Subettig Subettig is used to subdivide a sigle class of etwork i to multiple smaller etworks. Example: Your orgaizatio has a Class B IP address of 166.144.0.0 Before you implemet subettig, the Network

More information

Domain 1: Identifying Cause of and Resolving Desktop Application Issues Identifying and Resolving New Software Installation Issues

Domain 1: Identifying Cause of and Resolving Desktop Application Issues Identifying and Resolving New Software Installation Issues Maual Widows 7 Eterprise Desktop Support Techicia (70-685) 1-800-418-6789 Domai 1: Idetifyig Cause of ad Resolvig Desktop Applicatio Issues Idetifyig ad Resolvig New Software Istallatio Issues This sectio

More information

Domain 1 - Describe Cisco VoIP Implementations

Domain 1 - Describe Cisco VoIP Implementations Maual ONT (642-8) 1-800-418-6789 Domai 1 - Describe Cisco VoIP Implemetatios Advatages of VoIP Over Traditioal Switches Voice over IP etworks have may advatages over traditioal circuit switched voice etworks.

More information

Configuring Additional Active Directory Server Roles

Configuring Additional Active Directory Server Roles Maual Upgradig your MCSE o Server 2003 to Server 2008 (70-649) 1-800-418-6789 Cofigurig Additioal Active Directory Server Roles Active Directory Lightweight Directory Services Backgroud ad Cofiguratio

More information

CCH Accountants Starter Pack

CCH Accountants Starter Pack CCH Accoutats Starter Pack We may be a bit smaller, but fudametally we re o differet to ay other accoutig practice. Util ow, smaller firms have faced a stark choice: Buy cheaply, kowig that the practice

More information

ODBC. Getting Started With Sage Timberline Office ODBC

ODBC. Getting Started With Sage Timberline Office ODBC ODBC Gettig Started With Sage Timberlie Office ODBC NOTICE This documet ad the Sage Timberlie Office software may be used oly i accordace with the accompayig Sage Timberlie Office Ed User Licese Agreemet.

More information

CCH Accounts Production

CCH Accounts Production CCH Accouts Productio accouts productio facig today s challeges Preparig statutory ad fiacial accouts is a core activity for our practice, as it is for may professioal firms. Although legislatio ad accoutig

More information

Unicenter TCPaccess FTP Server

Unicenter TCPaccess FTP Server Uiceter TCPaccess FTP Server Release Summary r6.1 SP2 K02213-2E This documetatio ad related computer software program (hereiafter referred to as the Documetatio ) is for the ed user s iformatioal purposes

More information

CCH CRM Books Online Software Fee Protection Consultancy Advice Lines CPD Books Online Software Fee Protection Consultancy Advice Lines CPD

CCH CRM Books Online Software Fee Protection Consultancy Advice Lines CPD Books Online Software Fee Protection Consultancy Advice Lines CPD Books Olie Software Fee Fee Protectio Cosultacy Advice Advice Lies Lies CPD CPD facig today s challeges As a accoutacy practice, maagig relatioships with our cliets has to be at the heart of everythig

More information

INVESTMENT PERFORMANCE COUNCIL (IPC)

INVESTMENT PERFORMANCE COUNCIL (IPC) INVESTMENT PEFOMANCE COUNCIL (IPC) INVITATION TO COMMENT: Global Ivestmet Performace Stadards (GIPS ) Guidace Statemet o Calculatio Methodology The Associatio for Ivestmet Maagemet ad esearch (AIM) seeks

More information

Desktop Management. Desktop Management Tools

Desktop Management. Desktop Management Tools Desktop Maagemet 9 Desktop Maagemet Tools Mac OS X icludes three desktop maagemet tools that you might fid helpful to work more efficietly ad productively: u Stacks puts expadable folders i the Dock. Clickig

More information

CCH Practice Management

CCH Practice Management 1 CCH Practice Maagemet practice maagemet facig today s challeges Every year it seems we face more regulatios, growig cliet expectatios ad lower margis o our compliace work. It s a tough time for a accoutig

More information

Security Functions and Purposes of Network Devices and Technologies (SY0-301) 1-800-418-6789. Firewalls. Audiobooks

Security Functions and Purposes of Network Devices and Technologies (SY0-301) 1-800-418-6789. Firewalls. Audiobooks Maual Security+ Domai 1 Network Security Every etwork is uique, ad architecturally defied physically by its equipmet ad coectios, ad logically through the applicatios, services, ad idustries it serves.

More information

TruStore: The storage. system that grows with you. Machine Tools / Power Tools Laser Technology / Electronics Medical Technology

TruStore: The storage. system that grows with you. Machine Tools / Power Tools Laser Technology / Electronics Medical Technology TruStore: The storage system that grows with you Machie Tools / Power Tools Laser Techology / Electroics Medical Techology Everythig from a sigle source. Cotets Everythig from a sigle source. 2 TruStore

More information

Chapter 5 Unit 1. IET 350 Engineering Economics. Learning Objectives Chapter 5. Learning Objectives Unit 1. Annual Amount and Gradient Functions

Chapter 5 Unit 1. IET 350 Engineering Economics. Learning Objectives Chapter 5. Learning Objectives Unit 1. Annual Amount and Gradient Functions Chapter 5 Uit Aual Amout ad Gradiet Fuctios IET 350 Egieerig Ecoomics Learig Objectives Chapter 5 Upo completio of this chapter you should uderstad: Calculatig future values from aual amouts. Calculatig

More information

QUADRO tech. FSA Migrator 2.6. File Server Migrations - Made Easy

QUADRO tech. FSA Migrator 2.6. File Server Migrations - Made Easy QUADRO tech FSA Migrator 2.6 File Server Migratios - Made Easy FSA Migrator Cosolidate your archived ad o-archived File Server data - with ease! May orgaisatios struggle with the cotiuous growth of their

More information

*The most important feature of MRP as compared with ordinary inventory control analysis is its time phasing feature.

*The most important feature of MRP as compared with ordinary inventory control analysis is its time phasing feature. Itegrated Productio ad Ivetory Cotrol System MRP ad MRP II Framework of Maufacturig System Ivetory cotrol, productio schedulig, capacity plaig ad fiacial ad busiess decisios i a productio system are iterrelated.

More information

CHAPTER 3 THE TIME VALUE OF MONEY

CHAPTER 3 THE TIME VALUE OF MONEY CHAPTER 3 THE TIME VALUE OF MONEY OVERVIEW A dollar i the had today is worth more tha a dollar to be received i the future because, if you had it ow, you could ivest that dollar ad ear iterest. Of all

More information

Output Analysis (2, Chapters 10 &11 Law)

Output Analysis (2, Chapters 10 &11 Law) B. Maddah ENMG 6 Simulatio 05/0/07 Output Aalysis (, Chapters 10 &11 Law) Comparig alterative system cofiguratio Sice the output of a simulatio is radom, the comparig differet systems via simulatio should

More information

Analyzing Longitudinal Data from Complex Surveys Using SUDAAN

Analyzing Longitudinal Data from Complex Surveys Using SUDAAN Aalyzig Logitudial Data from Complex Surveys Usig SUDAAN Darryl Creel Statistics ad Epidemiology, RTI Iteratioal, 312 Trotter Farm Drive, Rockville, MD, 20850 Abstract SUDAAN: Software for the Statistical

More information

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES Read Sectio 1.5 (pages 5 9) Overview I Sectio 1.5 we lear to work with summatio otatio ad formulas. We will also itroduce a brief overview of sequeces,

More information

How to use what you OWN to reduce what you OWE

How to use what you OWN to reduce what you OWE How to use what you OWN to reduce what you OWE Maulife Oe A Overview Most Caadias maage their fiaces by doig two thigs: 1. Depositig their icome ad other short-term assets ito chequig ad savigs accouts.

More information

E-Plex Enterprise Access Control System

E-Plex Enterprise Access Control System Eterprise Access Cotrol System Egieered for Flexibility Modular Solutio The Eterprise Access Cotrol System is a modular solutio for maagig access poits. Employig a variety of hardware optios, system maagemet

More information

Soving Recurrence Relations

Soving Recurrence Relations Sovig Recurrece Relatios Part 1. Homogeeous liear 2d degree relatios with costat coefficiets. Cosider the recurrece relatio ( ) T () + at ( 1) + bt ( 2) = 0 This is called a homogeeous liear 2d degree

More information

INVESTMENT PERFORMANCE COUNCIL (IPC) Guidance Statement on Calculation Methodology

INVESTMENT PERFORMANCE COUNCIL (IPC) Guidance Statement on Calculation Methodology Adoptio Date: 4 March 2004 Effective Date: 1 Jue 2004 Retroactive Applicatio: No Public Commet Period: Aug Nov 2002 INVESTMENT PERFORMANCE COUNCIL (IPC) Preface Guidace Statemet o Calculatio Methodology

More information

EUROCONTROL PRISMIL. EUROCONTROL civil-military performance monitoring system

EUROCONTROL PRISMIL. EUROCONTROL civil-military performance monitoring system EUROCONTROL PRISMIL EUROCONTROL civil-military performace moitorig system Itroductio What is PRISMIL? PRISMIL is a olie civil-military performace moitorig system which facilitates the combied performace

More information

To c o m p e t e in t o d a y s r e t a i l e n v i r o n m e n t, y o u n e e d a s i n g l e,

To c o m p e t e in t o d a y s r e t a i l e n v i r o n m e n t, y o u n e e d a s i n g l e, Busiess Itelligece Software for Retail To c o m p e t e i t o d a y s r e t a i l e v i r o m e t, y o u e e d a s i g l e, comprehesive view of your busiess. You have to tur the decisio-makig of your

More information

Baan Service Master Data Management

Baan Service Master Data Management Baa Service Master Data Maagemet Module Procedure UP069A US Documetiformatio Documet Documet code : UP069A US Documet group : User Documetatio Documet title : Master Data Maagemet Applicatio/Package :

More information

Investing in Stocks WHAT ARE THE DIFFERENT CLASSIFICATIONS OF STOCKS? WHY INVEST IN STOCKS? CAN YOU LOSE MONEY?

Investing in Stocks WHAT ARE THE DIFFERENT CLASSIFICATIONS OF STOCKS? WHY INVEST IN STOCKS? CAN YOU LOSE MONEY? Ivestig i Stocks Ivestig i Stocks Busiesses sell shares of stock to ivestors as a way to raise moey to fiace expasio, pay off debt ad provide operatig capital. Ecoomic coditios: Employmet, iflatio, ivetory

More information

Modified Line Search Method for Global Optimization

Modified Line Search Method for Global Optimization Modified Lie Search Method for Global Optimizatio Cria Grosa ad Ajith Abraham Ceter of Excellece for Quatifiable Quality of Service Norwegia Uiversity of Sciece ad Techology Trodheim, Norway {cria, ajith}@q2s.tu.o

More information

5 Boolean Decision Trees (February 11)

5 Boolean Decision Trees (February 11) 5 Boolea Decisio Trees (February 11) 5.1 Graph Coectivity Suppose we are give a udirected graph G, represeted as a boolea adjacecy matrix = (a ij ), where a ij = 1 if ad oly if vertices i ad j are coected

More information

CS103X: Discrete Structures Homework 4 Solutions

CS103X: Discrete Structures Homework 4 Solutions CS103X: Discrete Structures Homewor 4 Solutios Due February 22, 2008 Exercise 1 10 poits. Silico Valley questios: a How may possible six-figure salaries i whole dollar amouts are there that cotai at least

More information

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT Keywords: project maagemet, resource allocatio, etwork plaig Vladimir N Burkov, Dmitri A Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT The paper deals with the problems of resource allocatio betwee

More information

The Forgotten Middle. research readiness results. Executive Summary

The Forgotten Middle. research readiness results. Executive Summary The Forgotte Middle Esurig that All Studets Are o Target for College ad Career Readiess before High School Executive Summary Today, college readiess also meas career readiess. While ot every high school

More information

facing today s challenges As an accountancy practice, managing relationships with our clients has to be at the heart of everything we do.

facing today s challenges As an accountancy practice, managing relationships with our clients has to be at the heart of everything we do. CCH CRM cliet relatios facig today s challeges As a accoutacy practice, maagig relatioships with our cliets has to be at the heart of everythig we do. That s why our CRM system ca t be a bolt-o extra it

More information

Flood Emergency Response Plan

Flood Emergency Response Plan Flood Emergecy Respose Pla This reprit is made available for iformatioal purposes oly i support of the isurace relatioship betwee FM Global ad its cliets. This iformatio does ot chage or supplemet policy

More information

Rainbow options. A rainbow is an option on a basket that pays in its most common form, a nonequally

Rainbow options. A rainbow is an option on a basket that pays in its most common form, a nonequally Raibow optios INRODUCION A raibow is a optio o a basket that pays i its most commo form, a oequally weighted average of the assets of the basket accordig to their performace. he umber of assets is called

More information

June 3, 1999. Voice over IP

June 3, 1999. Voice over IP Jue 3, 1999 Voice over IP This applicatio ote discusses the Hypercom solutio for providig ed-to-ed Iteret protocol (IP) coectivity i a ew or existig Hypercom Hybrid Trasport Mechaism (HTM) etwork, reducig

More information

QUADRO tech. PST Flightdeck. Put your PST Migration on autopilot

QUADRO tech. PST Flightdeck. Put your PST Migration on autopilot QUADRO tech PST Flightdeck Put your PST Migratio o autopilot Put your PST Migratio o Autopilot A moder aircraft hardly remids its pilots of the early days of air traffic. It is desiged to eable flyig as

More information

iprox sensors iprox inductive sensors iprox programming tools ProxView programming software iprox the world s most versatile proximity sensor

iprox sensors iprox inductive sensors iprox programming tools ProxView programming software iprox the world s most versatile proximity sensor iprox sesors iprox iductive sesors iprox programmig tools ProxView programmig software iprox the world s most versatile proximity sesor The world s most versatile proximity sesor Eato s iproxe is syoymous

More information

BaanERP. BaanERP Windows Client Installation Guide

BaanERP. BaanERP Windows Client Installation Guide BaaERP A publicatio of: Baa Developmet B.V. P.O.Box 143 3770 AC Bareveld The Netherlads Prited i the Netherlads Baa Developmet B.V. 1999. All rights reserved. The iformatio i this documet is subject to

More information

Shared Memory with Caching

Shared Memory with Caching Vorlesug Recherarchitektur 2 Seite 164 Cachig i MIMD-Architectures ] MIMD-Architekture Programmiermodell Behadlug der Kommuikatioslatez Nachrichteorietiert globaler Adressraum Latez miimiere Latez verstecke

More information

CS100: Introduction to Computer Science

CS100: Introduction to Computer Science Review: History of Computers CS100: Itroductio to Computer Sciece Maiframes Miicomputers Lecture 2: Data Storage -- Bits, their storage ad mai memory Persoal Computers & Workstatios Review: The Role of

More information

Pre-Suit Collection Strategies

Pre-Suit Collection Strategies Pre-Suit Collectio Strategies Writte by Charles PT Phoeix How to Decide Whether to Pursue Collectio Calculatig the Value of Collectio As with ay busiess litigatio, all factors associated with the process

More information

Enhance Your Financial Legacy Variable Annuity Death Benefits from Pacific Life

Enhance Your Financial Legacy Variable Annuity Death Benefits from Pacific Life Ehace Your Fiacial Legacy Variable Auity Death Beefits from Pacific Life 7/15 20172-15B As You Pla for Retiremet, Protect Your Loved Oes A Pacific Life variable auity ca offer three death beefits that

More information

HCL Dynamic Spiking Protocol

HCL Dynamic Spiking Protocol ELI LILLY AND COMPANY TIPPECANOE LABORATORIES LAFAYETTE, IN Revisio 2.0 TABLE OF CONTENTS REVISION HISTORY... 2. REVISION.0... 2.2 REVISION 2.0... 2 2 OVERVIEW... 3 3 DEFINITIONS... 5 4 EQUIPMENT... 7

More information

Confidence Intervals for One Mean

Confidence Intervals for One Mean Chapter 420 Cofidece Itervals for Oe Mea Itroductio This routie calculates the sample size ecessary to achieve a specified distace from the mea to the cofidece limit(s) at a stated cofidece level for a

More information

Time Value of Money. First some technical stuff. HP10B II users

Time Value of Money. First some technical stuff. HP10B II users Time Value of Moey Basis for the course Power of compoud iterest $3,600 each year ito a 401(k) pla yields $2,390,000 i 40 years First some techical stuff You will use your fiacial calculator i every sigle

More information

Measures of Spread and Boxplots Discrete Math, Section 9.4

Measures of Spread and Boxplots Discrete Math, Section 9.4 Measures of Spread ad Boxplots Discrete Math, Sectio 9.4 We start with a example: Example 1: Comparig Mea ad Media Compute the mea ad media of each data set: S 1 = {4, 6, 8, 10, 1, 14, 16} S = {4, 7, 9,

More information

Enhancing Oracle Business Intelligence with cubus EV How users of Oracle BI on Essbase cubes can benefit from cubus outperform EV Analytics (cubus EV)

Enhancing Oracle Business Intelligence with cubus EV How users of Oracle BI on Essbase cubes can benefit from cubus outperform EV Analytics (cubus EV) Ehacig Oracle Busiess Itelligece with cubus EV How users of Oracle BI o Essbase cubes ca beefit from cubus outperform EV Aalytics (cubus EV) CONTENT 01 cubus EV as a ehacemet to Oracle BI o Essbase 02

More information

Death Beefits from Pacific Life

Death Beefits from Pacific Life Ehace Your Fiacial Legacy Variable Auities with Death Beefits from Pacific Life 9/15 20188-15C FOR CALIFORNIA As You Pla for Retiremet, Protect Your Loved Oes A Pacific Life variable auity ca offer three

More information

Radio Dispatch Systems

Radio Dispatch Systems Radio Dispatch Systems ZETRON DISPATCH SOLUTIONS: AT THE CENTER OF YOUR CRITICAL OPERATIONS Your dispatch system is the ceterpoit through which your key operatios are coordiated ad cotrolled. That s why

More information

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable Week 3 Coditioal probabilities, Bayes formula, WEEK 3 page 1 Expected value of a radom variable We recall our discussio of 5 card poker hads. Example 13 : a) What is the probability of evet A that a 5

More information

CHAPTER 3 DIGITAL CODING OF SIGNALS

CHAPTER 3 DIGITAL CODING OF SIGNALS CHAPTER 3 DIGITAL CODING OF SIGNALS Computers are ofte used to automate the recordig of measuremets. The trasducers ad sigal coditioig circuits produce a voltage sigal that is proportioal to a quatity

More information

How to read A Mutual Fund shareholder report

How to read A Mutual Fund shareholder report Ivestor BulletI How to read A Mutual Fud shareholder report The SEC s Office of Ivestor Educatio ad Advocacy is issuig this Ivestor Bulleti to educate idividual ivestors about mutual fud shareholder reports.

More information

Introducing Your New Wells Fargo Trust and Investment Statement. Your Account Information Simply Stated.

Introducing Your New Wells Fargo Trust and Investment Statement. Your Account Information Simply Stated. Itroducig Your New Wells Fargo Trust ad Ivestmet Statemet. Your Accout Iformatio Simply Stated. We are pleased to itroduce your ew easy-to-read statemet. It provides a overview of your accout ad a complete

More information

Multiplexers and Demultiplexers

Multiplexers and Demultiplexers I this lesso, you will lear about: Multiplexers ad Demultiplexers 1. Multiplexers 2. Combiatioal circuit implemetatio with multiplexers 3. Demultiplexers 4. Some examples Multiplexer A Multiplexer (see

More information

How To Get A Kukandruk Studetfiace

How To Get A Kukandruk Studetfiace Curret Year Icome Assessmet Form Academic Year 2015/16 Persoal details Perso 1 Your Customer Referece Number Your Customer Referece Number Name Name Date of birth Address / / Date of birth / / Address

More information

THE REGRESSION MODEL IN MATRIX FORM. For simple linear regression, meaning one predictor, the model is. for i = 1, 2, 3,, n

THE REGRESSION MODEL IN MATRIX FORM. For simple linear regression, meaning one predictor, the model is. for i = 1, 2, 3,, n We will cosider the liear regressio model i matrix form. For simple liear regressio, meaig oe predictor, the model is i = + x i + ε i for i =,,,, This model icludes the assumptio that the ε i s are a sample

More information

Engineering Data Management

Engineering Data Management BaaERP 5.0c Maufacturig Egieerig Data Maagemet Module Procedure UP128A US Documetiformatio Documet Documet code : UP128A US Documet group : User Documetatio Documet title : Egieerig Data Maagemet Applicatio/Package

More information

Create Income for Your Retirement. What You Can Expect. What to Consider. Page 1 of 7

Create Income for Your Retirement. What You Can Expect. What to Consider. Page 1 of 7 Page 1 of 7 RBC Retiremet Icome Plaig Process Create Icome for Your Retiremet At RBC Wealth Maagemet, we believe maagig your wealth to produce a icome durig retiremet is fudametally differet from maagig

More information

hp calculators HP 12C Statistics - average and standard deviation Average and standard deviation concepts HP12C average and standard deviation

hp calculators HP 12C Statistics - average and standard deviation Average and standard deviation concepts HP12C average and standard deviation HP 1C Statistics - average ad stadard deviatio Average ad stadard deviatio cocepts HP1C average ad stadard deviatio Practice calculatig averages ad stadard deviatios with oe or two variables HP 1C Statistics

More information

Domain 1 Components of the Cisco Unified Communications Architecture

Domain 1 Components of the Cisco Unified Communications Architecture Maual CCNA Domai 1 Compoets of the Cisco Uified Commuicatios Architecture Uified Commuicatios (UC) Eviromet Cisco has itroduced what they call the Uified Commuicatios Eviromet which is used to separate

More information

For customers Key features of the Guaranteed Pension Annuity

For customers Key features of the Guaranteed Pension Annuity For customers Key features of the Guarateed Pesio Auity The Fiacial Coduct Authority is a fiacial services regulator. It requires us, Aego, to give you this importat iformatio to help you to decide whether

More information

Tradigms of Astundithi and Toyota

Tradigms of Astundithi and Toyota Tradig the radomess - Desigig a optimal tradig strategy uder a drifted radom walk price model Yuao Wu Math 20 Project Paper Professor Zachary Hamaker Abstract: I this paper the author iteds to explore

More information

Did you know that houses with CCTV are 90% less likely to be burgled? Yale now offer a range of Easy Fit CCTV systems

Did you know that houses with CCTV are 90% less likely to be burgled? Yale now offer a range of Easy Fit CCTV systems Easy Fit CCTV Rage Did you kow that houses with CCTV are 90% less likely to be burgled? Yale ow offer a rage of Easy Fit CCTV systems Protect your premises wherever you are with our ew rage of CCTV systems,

More information

Grow your business with savings and debt management solutions

Grow your business with savings and debt management solutions Grow your busiess with savigs ad debt maagemet solutios A few great reasos to provide bak ad trust products to your cliets You have the expertise to help your cliets get the best rates ad most competitive

More information

Comparing Credit Card Finance Charges

Comparing Credit Card Finance Charges Comparig Credit Card Fiace Charges Comparig Credit Card Fiace Charges Decidig if a particular credit card is right for you ivolves uderstadig what it costs ad what it offers you i retur. To determie how

More information

where: T = number of years of cash flow in investment's life n = the year in which the cash flow X n i = IRR = the internal rate of return

where: T = number of years of cash flow in investment's life n = the year in which the cash flow X n i = IRR = the internal rate of return EVALUATING ALTERNATIVE CAPITAL INVESTMENT PROGRAMS By Ke D. Duft, Extesio Ecoomist I the March 98 issue of this publicatio we reviewed the procedure by which a capital ivestmet project was assessed. The

More information

A Combined Continuous/Binary Genetic Algorithm for Microstrip Antenna Design

A Combined Continuous/Binary Genetic Algorithm for Microstrip Antenna Design A Combied Cotiuous/Biary Geetic Algorithm for Microstrip Atea Desig Rady L. Haupt The Pesylvaia State Uiversity Applied Research Laboratory P. O. Box 30 State College, PA 16804-0030 haupt@ieee.org Abstract:

More information

LEASE-PURCHASE DECISION

LEASE-PURCHASE DECISION Public Procuremet Practice STANDARD The decisio to lease or purchase should be cosidered o a case-by case evaluatio of comparative costs ad other factors. 1 Procuremet should coduct a cost/ beefit aalysis

More information

SQL Server 2008 Implementation and Maintenance (70-432) LearnSmart Exam Manual

SQL Server 2008 Implementation and Maintenance (70-432) LearnSmart Exam Manual Maual SQL Server 2008 Implemetatio ad Maiteace (70-432) 1-800-418-6789 SQL Server 2008 Implemetatio ad Maiteace (70-432) LearSmart Maual Copyright 2011 by PrepLogic, LLC. Product ID: 012335 Productio Date:

More information

Handling. Collection Calls

Handling. Collection Calls Hadlig the Collectio Calls We do everythig we ca to stop collectio calls; however, i the early part of our represetatio, you ca expect some of these calls to cotiue. We uderstad that the first few moths

More information

Authentication - Access Control Default Security Active Directory Trusted Authentication Guest User or Anonymous (un-authenticated) Logging Out

Authentication - Access Control Default Security Active Directory Trusted Authentication Guest User or Anonymous (un-authenticated) Logging Out FME Server Security Table of Cotets FME Server Autheticatio - Access Cotrol Default Security Active Directory Trusted Autheticatio Guest User or Aoymous (u-autheticated) Loggig Out Authorizatio - Roles

More information

Quantitative Computer Architecture

Quantitative Computer Architecture Performace Measuremet ad Aalysis i Computer Quatitative Computer Measuremet Model Iovatio Proposed How to measure, aalyze, ad specify computer system performace or My computer is faster tha your computer!

More information

Lecture 2: Karger s Min Cut Algorithm

Lecture 2: Karger s Min Cut Algorithm priceto uiv. F 3 cos 5: Advaced Algorithm Desig Lecture : Karger s Mi Cut Algorithm Lecturer: Sajeev Arora Scribe:Sajeev Today s topic is simple but gorgeous: Karger s mi cut algorithm ad its extesio.

More information

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations CS3A Hadout 3 Witer 00 February, 00 Solvig Recurrece Relatios Itroductio A wide variety of recurrece problems occur i models. Some of these recurrece relatios ca be solved usig iteratio or some other ad

More information

Serial ATA PCI Host Adapter AEC-6290/6295

Serial ATA PCI Host Adapter AEC-6290/6295 Serial ATA PCI Host Adapter AEC-6290/6295 User s Maual Versio:1.0 Copyright 2003 ACARD Techology Corp. Release: April 2003 Copyright ad Trademarks The iformatio of the product i this maual is subject to

More information

HSAs the American Fidelity Way:

HSAs the American Fidelity Way: Health Ser vices Admiistratio, LLC HSAs the America Fidelity Way: Kowledge, Experiece, Commitmet With over 30 years experiece i providig pre-tax services, America Fidelity is a pioeer i Sectio 125 flexible

More information

client communication

client communication CCH Portal cliet commuicatio facig today s challeges Like most accoutacy practices, we ow use email for most cliet commuicatio. It s quick ad easy, but we do worry about the security of sesitive data.

More information

3G Security VoIP Wi-Fi IP Telephony Routing/Switching Unified Communications. NetVanta. Business Networking Solutions

3G Security VoIP Wi-Fi IP Telephony Routing/Switching Unified Communications. NetVanta. Business Networking Solutions 3G Security VoIP Wi-Fi IP Telephoy Routig/Switchig Uified Commuicatios NetVata Busiess Networkig Solutios Opportuity to lower Total Cost of Owership ad improve Retur o Ivestmet The ADTRAN Advatage ADTRAN

More information

Automatic Tuning for FOREX Trading System Using Fuzzy Time Series

Automatic Tuning for FOREX Trading System Using Fuzzy Time Series utomatic Tuig for FOREX Tradig System Usig Fuzzy Time Series Kraimo Maeesilp ad Pitihate Soorasa bstract Efficiecy of the automatic currecy tradig system is time depedet due to usig fixed parameters which

More information

CS100: Introduction to Computer Science

CS100: Introduction to Computer Science I-class Exercise: CS100: Itroductio to Computer Sciece What is a flip-flop? What are the properties of flip-flops? Draw a simple flip-flop circuit? Lecture 3: Data Storage -- Mass storage & represetig

More information

Full Lifecycle Project Cost Controls

Full Lifecycle Project Cost Controls Full Lifecycle Project Cost Cotrols EcoSys EPC is a ext geeratio plaig ad cost cotrols software solutio deliverig best practices for full lifecycle project cost maagemet i a itegrated, easy-to-use web

More information

Neolane Reporting. Neolane v6.1

Neolane Reporting. Neolane v6.1 Neolae Reportig Neolae v6.1 This documet, ad the software it describes, are provided subject to a Licese Agreemet ad may ot be used or copied outside of the provisios of the Licese Agreemet. No part of

More information

PENSION ANNUITY. Policy Conditions Document reference: PPAS1(7) This is an important document. Please keep it in a safe place.

PENSION ANNUITY. Policy Conditions Document reference: PPAS1(7) This is an important document. Please keep it in a safe place. PENSION ANNUITY Policy Coditios Documet referece: PPAS1(7) This is a importat documet. Please keep it i a safe place. Pesio Auity Policy Coditios Welcome to LV=, ad thak you for choosig our Pesio Auity.

More information

5.4 Amortization. Question 1: How do you find the present value of an annuity? Question 2: How is a loan amortized?

5.4 Amortization. Question 1: How do you find the present value of an annuity? Question 2: How is a loan amortized? 5.4 Amortizatio Questio 1: How do you fid the preset value of a auity? Questio 2: How is a loa amortized? Questio 3: How do you make a amortizatio table? Oe of the most commo fiacial istrumets a perso

More information

Running Time ( 3.1) Analysis of Algorithms. Experimental Studies ( 3.1.1) Limitations of Experiments. Pseudocode ( 3.1.2) Theoretical Analysis

Running Time ( 3.1) Analysis of Algorithms. Experimental Studies ( 3.1.1) Limitations of Experiments. Pseudocode ( 3.1.2) Theoretical Analysis Ruig Time ( 3.) Aalysis of Algorithms Iput Algorithm Output A algorithm is a step-by-step procedure for solvig a problem i a fiite amout of time. Most algorithms trasform iput objects ito output objects.

More information

Ideate, Inc. Training Solutions to Give you the Leading Edge

Ideate, Inc. Training Solutions to Give you the Leading Edge Ideate, Ic. Traiig News 2014v1 Ideate, Ic. Traiig Solutios to Give you the Leadig Edge New Packages For All Your Traiig Needs! Bill Johso Seior MEP - Applicatio Specialist Revit MEP Fudametals Ad More!

More information

Hypergeometric Distributions

Hypergeometric Distributions 7.4 Hypergeometric Distributios Whe choosig the startig lie-up for a game, a coach obviously has to choose a differet player for each positio. Similarly, whe a uio elects delegates for a covetio or you

More information

Managed Oracle Database Service

Managed Oracle Database Service Maaged Oracle Database Service maaged oracle database service As a orgaisatio you eed to esure the highest levels of iformatio availability ad data protectio to support your applicatios. Dimesio Data ca

More information

Trusteed IRAs. Integrate and simplify your retirement and estate plans

Trusteed IRAs. Integrate and simplify your retirement and estate plans Trusteed IRAs Itegrate ad simplify your retiremet ad estate plas Trusteed IRAs from Merrill Lych Trust Compay To create the legacy of your dreams, you may eed more tha a Idividual Retiremet Accout ad a

More information

InventoryControl. The Complete Inventory Tracking Solution for Small Businesses

InventoryControl. The Complete Inventory Tracking Solution for Small Businesses IvetoryCotrol The Complete Ivetory Trackig Solutio for Small Busiesses Regular Logo 4C Productivity Solutios for Small Busiesses Logo Outlie Get i cotrol of your ivetory with Wasp Ivetory Cotrol the complete

More information

Data Center Ethernet Facilitation of Enterprise Clustering. David Flynn, Linux Networx Orlando, Florida March 16, 2004

Data Center Ethernet Facilitation of Enterprise Clustering. David Flynn, Linux Networx Orlando, Florida March 16, 2004 Data Ceter Etheret Facilitatio of Eterprise Clusterig David Fly, Liux Networx Orlado, Florida March 16, 2004 1 2 Liux Networx builds COTS based clusters 3 Clusters Offer Improved Performace Scalability

More information

A guide to School Employees' Well-Being

A guide to School Employees' Well-Being A guide to School Employees' Well-Beig Backgroud The public school systems i the Uited States employ more tha 6.7 millio people. This large workforce is charged with oe of the atio s critical tasks to

More information

For customers Income protection the facts

For customers Income protection the facts For customers Icome protectio the facts We ve desiged this documet to give you more iformatio about our icome protectio beefits. It does t form part of ay cotract betwee you ad/or us. This iformatio refers

More information