Patient A SQL Critical Care Part 1: Health Triage Findings

Size: px
Start display at page:

Download "Patient A SQL Critical Care Part 1: Health Triage Findings"

Transcription

1 Background PatientA got in touch because they were having performance pain with $VENDOR s applications. PatientA wasn t sure if the problem was hardware, their configuration, or something in $VENDOR s code. $VENDOR wasn t sure either, but they were pretty sure it wasn t their code. PatientA also wanted help with maintenance and best practices Check out what happened next!

2 Patient A SQL Critical Care Part 1: Health Triage Findings AKA: Are we going to lose data? 2016 Brent Ozar Unlimited. All Rights Reserved. For details:

3 We re Brent Ozar Unlimited. RICHIE RUMP ANGELA WALKER DOUG LANE TARA KIZER BRENT OZAR JESSICA CONNORS ERIK DARLING

4 What instance did we look at? Instance: [REDACTED] Applications involved: [REDACTED] Memory Size: 144GB Number of logical cores: 8 vcpu SQL Server version and edition: SQL Server 2012 SP1 (with fix for initial SP1 release). Enterprise Edition. Virtualized? Yes. [REDACTED DETAILS]

5 RPO and RTO Recovery Point Objective (RPO): How many minutes of data can you lose in a worst case scenario? Recovery Time Objective (RTO): How many minutes can you be offlinein a worst case scenario? Minutes of data loss allowed Minutes of downtime allowed Server Offline Corrupt data Oops deletes Datacenter offline 4 hours 4 hours 4 hours 4 hours 4 hours 4 hours 4 hours 4 hours

6 This presentation focuses on avoiding data loss We re not solving all your pain points here We re talking about: 1. Making sure you don t lose more data than is acceptable, even if multiple things go wrong 2. Detecting corruption if it happens 3. Getting data back to a point in time if it s incorrect or corrupt This can be done with pretty simple steps, there s just a few of them

7 Your Steps to Prevent Data Loss

8 Take regular log backups Determine the frequency of them this way: If we lost the SAN, how much data do we want to lose? For RedactedImportantDB, this means backing up the transaction log every 5 minutes or every 1 minute (just answer the question above)

9 Regular log backups can help avoid this Every time these happen, everyone doing a write hast to wait a very long time! The problem is multiple things: The log file was shrunk Log backups aren t running frequently enough to let it reuse space in the file Log growths are set to a percentage, not a fixed unit REDACTED: screenshot showing 2-3 minute log growths

10 Regular log backups are good for performance, too! Your existing maintenance did one log backup each day, at night: One log backup Shrink the log All throughout the day, the log was periodically having to grow This led to big delays You re much better off doing frequent log backups and never shrinking the log file!

11 Don t back up to local storage You re currently taking full backups to a drive on the production VM, using the same SAN This is risky What if the SAN failed? What if the VM couldn t start up how long would it take to get to the files? A better option Run the all backups to a UNC path for a fileshare using separate storage

12 Speeding up backups: short term There s a few tricks to this For large databases, writing the backup out to multiple files can improve efficiency With Ola Hallengren s backup job, parameter can do this easily first on your RedactedImportantDBdatabase Test restoring the database too, so you know how the commands work Third party tools like $SQLVENDORTOOL1 make tuning backup speed, filecounts, and restores easier

13 Test your backups: can you meet your RTO? Test restoring database full and log backups to a nonproduction server Can you restore many log files quickly? Can you restore to a single point in time? Find a PowerShell script or tool (but beware scripts that require xp_cmdshell shouldn t be needed for this task) Document and /or automate the process Can someone else do this quickly if you re not available? Have you completed this within your RTO of 4 hours?

14 Manage backup history and messages Set up a job to purge backup history from MSDB once a week using sp_delete_backuphistory Ola Hallengren s maintenance includes a job for this: Ola.Hallengren.com You provide Implement trace flag 3226 so that successful backups don t get written to the SQL Server Error log Failures will still be written All backups will still be recorded in MSDB

15 Speeding up backups: long term $SANVENDOR$ $SANTOOL$can help speed up backups This does require more licensing at the SAN level May require reconfiguring drive assignments for data files But it also can replicate the backups to other locations, which is useful for DR Danger: currently your SAN snapshots do not talk to the VSS provider your databases may be corrupt and non-usable upon restore!

16 Create and test SQL Agent alerts Create alerts for high severity errors and corruption Set the alerts to notify you through an operator and database mail Script to create them: To test that it all works, run: RAISERROR('TESTALERT',18,1) WITH LOG; Make sure you get the !

17 Set Agent Jobs to notify on failure Lots of jobs currently won t let an operator know if they fail (too many to list here just run our sp_blitz script anytime to get a full list) Set the jobs to notify your operator when they fail At minimum, do this for all database and log backup jobs To test: set one of the jobs to notify on completion and make sure you get the . Then switch it back to notify on failure.

18 Set a failsafe operator Tell your SQL Server Agent who it can notify in case of an emergency Set this on SQL Agent properties Note: When you first set up the mail profile, you will need to restart the SQL Server Agent service.

19 You need CHECKDB, but you need to be careful CHECKDB reads pages from disk and looks for corruption This should be run against all system and user databases One place to be cautious: This is performance intensive, and your RedactedImportantDBdatabase doesn t have a lot of free time in the nightly maintenance cycle

20 Automate CHECKDB for all databases Make sure you find out about corruption as soon as you can 1. Add CHECKDB for all databases except RedactedImportantDB on a nightly basis Exclude RedactedImportantDB from Ola Hallengren s job and schedule it nightly 2. Add CHECKDB for RedactedImportantDB databases on a weekly basis This will require a copy of the job which only does that database Set up the job on both replicas Make sure that this does not overlap with full backups or index maintenance, ever! Watch the job closely on the first run and make sure it doesn t cause a failover or those 15 second messages in the SQL Server log

21 Don t delete backups until you run CHECKDB You can end up with data corruption in production and in all your backups Rule of thumb: only delete a full backup after you get a reasonable assurance that it isn t corrupt You can do this by: Restoring the backup and running CHECKDB Running CHECKDB against the production database after the full backup completes Make sure: You have the backups on separate storage You re retaining enough copies to answer what was the data like N days ago? Some customers keep multiple copies of backup files if restoring to a historical point in time can be important to their business.

22 Enable the Remote DAC And practice using it! This is the Dedicated Admin Connection One sysadmin can use it at a time SQL Server reserves a special CPU for it (even if you don t have remote access enabled) This comes in very handy in a performance crisis Learn how to enable it and practice using it at BrentOzar.com/go/DAC

23 Questions?

24 Now let s get you in to see one of our performance specialists. Not quite like this guy

Background. Let s see what we prescribed.

Background. Let s see what we prescribed. Background PatientB scustom application had slowed down as their data grew. They d tried several different relief efforts over time, but performance issues kept popping up especially deadlocks. They wanted

More information

Background. $VENDOR wasn t sure either, but they were pretty sure it wasn t their code.

Background. $VENDOR wasn t sure either, but they were pretty sure it wasn t their code. Background Patient A got in touch because they were having performance pain with $VENDOR s applications. Patient A wasn t sure if the problem was hardware, their configuration, or something in $VENDOR

More information

Background. Let s see what we prescribed.

Background. Let s see what we prescribed. Background Patient B s custom application had slowed down as their data grew. They d tried several different relief efforts over time, but performance issues kept popping up especially deadlocks. They

More information

Patient C SQL Critical Care

Patient C SQL Critical Care Background This patient called us because they had outages lasting for several hours. Big complaints from users. They said 1 hour of downtime would be okay for downtime, but not great. They were using

More information

AlwaysOn Availability Groups: Backups, Restores, and CHECKDB

AlwaysOn Availability Groups: Backups, Restores, and CHECKDB AlwaysOn Availability Groups: Backups, Restores, and CHECKDB www.brentozar.com sp_blitz sp_blitzfirst email newsletter videos SQL Critical Care 2016 Brent Ozar Unlimited. All rights reserved. 1 What I

More information

High Availability- Disaster Recovery 101

High Availability- Disaster Recovery 101 High Availability- Disaster Recovery 101 DBA-100 Glenn Berry, Principal Consultant, SQLskills.com Glenn Berry Consultant/Trainer/Speaker/Author Principal Consultant, SQLskills.com Email: Glenn@SQLskills.com

More information

How to Build a Microsoft SQL Server Disaster Recovery Plan with Google Compute Engine

How to Build a Microsoft SQL Server Disaster Recovery Plan with Google Compute Engine How to Build a Microsoft SQL Server Disaster Recovery Plan with Google Compute Engine Author: Tara Kizer Technical Reviewer: Brent Ozar 2017 Brent Ozar Unlimited. Version: v1.0, 2017-03-03. To get the

More information

High Availability- Disaster Recovery 101

High Availability- Disaster Recovery 101 High Availability- Disaster Recovery 101 DBA-100 Glenn Berry, Principal Consultant, SQLskills.com Glenn Berry Consultant/Trainer/Speaker/Author Principal Consultant, SQLskills.com Email: Glenn@SQLskills.com

More information

Are AGs A Good Fit For Your Database? Doug Purnell

Are AGs A Good Fit For Your Database? Doug Purnell Are AGs A Good Fit For Your Database? Doug Purnell About Me DBA for Elon University Co-leader for WinstonSalem BI User Group All things Nikon Photography Bring on the BBQ! Goals Understand HA & DR Types

More information

Chapter 10 Protecting Virtual Environments

Chapter 10 Protecting Virtual Environments Chapter 10 Protecting Virtual Environments 164 - Protecting Virtual Environments As more datacenters move to virtualize their environments and the number of virtual machines and the physical hosts they

More information

MD-HQ Utilizes Atlantic.Net s Private Cloud Solutions to Realize Tremendous Growth

MD-HQ Utilizes Atlantic.Net s Private Cloud Solutions to Realize Tremendous Growth Success Story: MD-HQ Utilizes Atlantic.Net s Private Cloud Solutions to Realize Tremendous Growth Atlantic.Net specializes in providing security and compliance hosting solutions, most specifically in the

More information

Understanding Virtual System Data Protection

Understanding Virtual System Data Protection Understanding Virtual System Data Protection Server virtualization is the most important new technology introduced in the data center in the past decade. It has changed the way we think about computing

More information

Slide 1. Slide 2 Housekeeping. Slide 3 Overview or Agenda

Slide 1. Slide 2 Housekeeping. Slide 3 Overview or Agenda Slide 1 SQL Server Maintenance Plans Jerome Espinoza Database Administrator 1 Slide 2 Housekeeping Please turn off cell phones If you must leave the session early, please do so as discreetly as possible

More information

5 REASONS YOUR BUSINESS NEEDS NETWORK MONITORING

5 REASONS YOUR BUSINESS NEEDS NETWORK MONITORING 5 REASONS YOUR BUSINESS NEEDS NETWORK MONITORING www.intivix.com (415) 543 1033 NETWORK MONITORING WILL ENSURE YOUR NETWORK IS OPERATING AT FULL CAPACITY 5 Reasons Your Business Needs Network Monitoring

More information

Managed IT Solutions. Managed IT Solutions

Managed IT Solutions. Managed IT Solutions Designing a Recovery Strategy Or, Backups are Only Good if You Can Restore Them August 6, 2014 About Me 15 years in IT, 7 as a SQL Server DBA Fan of all things internal President of the Chicago SQL Server

More information

Identifying and Fixing Parameter Sniffing

Identifying and Fixing Parameter Sniffing Identifying and Fixing Parameter Sniffing Brent Ozar www.brentozar.com sp_blitz sp_blitzfirst email newsletter videos SQL Critical Care 2017 Brent Ozar Unlimited. All rights reserved. 1 This is genuinely

More information

How to be a Great Production DBA

How to be a Great Production DBA How to be a Great Production DBA Because Performance Matters Presented by: Jeff Garbus CEO Soaring Eagle Consulting, Inc. About Soaring Eagle Since 1997, Soaring Eagle Consulting has been helping enterprise

More information

Chapter 11. SnapProtect Technology

Chapter 11. SnapProtect Technology Chapter 11 SnapProtect Technology Hardware based snapshot technology provides the ability to use optimized hardware and disk appliances to snap data on disk arrays providing quick recovery by reverting

More information

Case study: Building bi-directional DR. Joep Piscaer, VMware vexpert, VCDX #101

Case study: Building bi-directional DR. Joep Piscaer, VMware vexpert, VCDX #101 Case study: Building bi-directional DR Joep Piscaer, VMware vexpert, VCDX #101 Agenda Introduction Project description, goals, requirements, constraints High level overview: product and component overview

More information

MINION ENTERPRISE FEATURES LIST

MINION ENTERPRISE FEATURES LIST MINION ENTERPRISE FEATURES LIST Minion Enterprise is an automation and management tool for SQL Server. It provides you with the 10,000- foot view, detailed view, and fine-grained alerting and controls

More information

Disaster Recovery How to NOT do it. Derek Martin Senior TSP Azure

Disaster Recovery How to NOT do it. Derek Martin Senior TSP Azure Disaster Recovery How to NOT do it Derek Martin Senior TSP Azure Infastructure @thebookofdoodle 1 A Bit About Me Derek Martin Senior TSP Azure Infrastructure @thebookofdoodle @doodlemania on Peepeth www.derekmartin.org

More information

Disaster Recovery-to-the- Cloud Best Practices

Disaster Recovery-to-the- Cloud Best Practices Disaster Recovery-to-the- Cloud Best Practices HOW TO EFFECTIVELY CONFIGURE YOUR OWN SELF-MANAGED RECOVERY PLANS AND THE REPLICATION OF CRITICAL VMWARE VIRTUAL MACHINES FROM ON-PREMISES TO A CLOUD SERVICE

More information

Microsoft SQL Server

Microsoft SQL Server Microsoft SQL Server Abstract This white paper outlines the best practices for Microsoft SQL Server Failover Cluster Instance data protection with Cohesity DataPlatform. December 2017 Table of Contents

More information

ECE Engineering Robust Server Software. Spring 2018

ECE Engineering Robust Server Software. Spring 2018 ECE590-02 Engineering Robust Server Software Spring 2018 Business Continuity: Disaster Recovery Tyler Bletsch Duke University Includes material adapted from the course Information Storage and Management

More information

BC/DR Strategy with VMware

BC/DR Strategy with VMware BC/DR Strategy with VMware VMware vforum, 2014 Andrea Teobaldi Systems Engineer @teob77 2014 VMware Inc. All rights reserved. What s on the agenda? Defining the problem Definitions VMware technologies

More information

Vembu v4.0 Vembu ImageBackup

Vembu v4.0 Vembu ImageBackup Vembu extends to Vembu v4.0 Vembusupport ImageBackup Vembu Technologies Experience 100+ Countries 2 Headquartered in Chennai Vembu BDR Suite Vembu BDR Suite is a portfolio of products designed to backup

More information

Using Computer Associates BrightStor ARCserve Backup with Microsoft Data Protection Manager

Using Computer Associates BrightStor ARCserve Backup with Microsoft Data Protection Manager White Paper Using Computer Associates BrightStor ARCserve Backup with Microsoft Data Protection Manager Author(s): Computer Associates International and Microsoft Corporation Published September 2005 Abstract

More information

Balancing the pressures of a healthcare SQL Server DBA

Balancing the pressures of a healthcare SQL Server DBA Balancing the pressures of a healthcare SQL Server DBA More than security, compliance and auditing? Working with SQL Server in the healthcare industry presents many unique challenges. The majority of these

More information

SQL Server Virtualization 201

SQL Server Virtualization 201 Virtualization 201 Management and Risk Mitigation PASS Virtualization Virtual Chapter 2014.05.15 About David Klee @kleegeek davidklee.net gplus.to/kleegeek linked.com/a/davidaklee Specialties / Focus Areas

More information

Still All on One Server: Perforce at Scale

Still All on One Server: Perforce at Scale Still All on One Server: Perforce at Scale Dan Bloch Senior Site Reliability Engineer Google Inc. June 3, 2011 GOOGLE Google's mission: Organize the world's information and make it universally accessible

More information

Vembu v4.0 Vembu ImageBackup

Vembu v4.0 Vembu ImageBackup Vembu extends support to -Vembu v4.0 Vembu ImageBackup Free edition Vembu Technologies Experience 100+ Countries 2 Headquartered in Chennai Vembu BDR Suite Vembu BDR Suite is a portfolio of products designed

More information

XP: Backup Your Important Files for Safety

XP: Backup Your Important Files for Safety XP: Backup Your Important Files for Safety X 380 / 1 Protect Your Personal Files Against Accidental Loss with XP s Backup Wizard Your computer contains a great many important files, but when it comes to

More information

Thank You Sponsors! Visit the Sponsor tables to enter their end of day raffles.

Thank You Sponsors! Visit the Sponsor tables to enter their end of day raffles. Thank You Sponsors! Visit the Sponsor tables to enter their end of day raffles. Turn in your completed Event Evaluation form at the end of the day in the Registration area to be entered in additional drawings.

More information

12 Common Mistakes while Backing Up Databases

12 Common Mistakes while Backing Up Databases 12 Common Mistakes while Backing Up Databases This article was initially intended for Firebird DBMS developers and administrators, but contacts with administrators of other databases made it clear that

More information

Successfully migrate existing databases to Azure SQL Database. John Sterrett Principal Consultant

Successfully migrate existing databases to Azure SQL Database. John Sterrett Principal Consultant Successfully migrate existing databases to Azure SQL Database John Sterrett Principal Consultant Common Migration failures Plan Test Execute Manage Free Reference Material Videos, Reference Links, Tips,

More information

Asigra Cloud Backup Provides Comprehensive Virtual Machine Data Protection Including Replication

Asigra Cloud Backup Provides Comprehensive Virtual Machine Data Protection Including Replication Datasheet Asigra Cloud Backup Provides Comprehensive Virtual Machine Data Protection Including Replication Virtual Machines (VMs) have become a staple of the modern enterprise data center, but as the usage

More information

SERVICE DESCRIPTION MANAGED BACKUP & RECOVERY

SERVICE DESCRIPTION MANAGED BACKUP & RECOVERY Contents Service Overview.... 3 Key Features... 3 Implementation... 4 Validation... 4 Implementation Process.... 4 Internal Kick-Off... 4 Customer Kick-Off... 5 Provisioning & Testing.... 5 Billing....

More information

Paragon Protect & Restore

Paragon Protect & Restore Paragon Function overview and Edition Comparison of extended backup and disaster recovery solution for virtual and physical IT infrastructures Functions Protection Agentless backup of guests Agentless

More information

Exchange 2010 Transaction Logs Not Clearing After Full Backup

Exchange 2010 Transaction Logs Not Clearing After Full Backup Exchange 2010 Transaction Logs Not Clearing After Full Backup I would like to delete the logs if I can safely do so, also, If I have to reseed the -script-updatedtroubleshoot-exchange-2013-and-2010-database-backups.aspx.

More information

Dell SC Series Snapshots and SQL Server Backups Comparison

Dell SC Series Snapshots and SQL Server Backups Comparison Dell SC Series Snapshots and SQL Server Backups Comparison Dell Storage Engineering January 2017 A Dell EMC Best practice guide Revisions Date August 2010 Description Initial release January 2012 Revision

More information

HP Dynamic Deduplication achieving a 50:1 ratio

HP Dynamic Deduplication achieving a 50:1 ratio HP Dynamic Deduplication achieving a 50:1 ratio Table of contents Introduction... 2 Data deduplication the hottest topic in data protection... 2 The benefits of data deduplication... 2 How does data deduplication

More information

VCAP5-DCD. Vmware. VMware Certified Advanced Professional 5 - Data Center Design

VCAP5-DCD. Vmware. VMware Certified Advanced Professional 5 - Data Center Design Vmware VCAP5-DCD VMware Certified Advanced Professional 5 - Data Center Design Download Full Version : https://killexams.com/pass4sure/exam-detail/vcap5-dcd QUESTION: 262 A multitier website has an RTO

More information

Manual Backup Sql Server Express 2008 Schedule Database Using Sql Agent

Manual Backup Sql Server Express 2008 Schedule Database Using Sql Agent Manual Backup Sql Server Express 2008 Schedule Database Using Sql Agent This ensures that your server is ready with the latest version of the database software. Unless you are using applications that make

More information

CONFIGURING SQL SERVER FOR PERFORMANCE LIKE A MICROSOFT CERTIFIED MASTER

CONFIGURING SQL SERVER FOR PERFORMANCE LIKE A MICROSOFT CERTIFIED MASTER CONFIGURING SQL SERVER FOR PERFORMANCE LIKE A MICROSOFT CERTIFIED MASTER TIM CHAPMAN PREMIERE FIELD ENGINEER MICROSOFT THOMAS LAROCK HEAD GEEK SOLARWINDS A LITTLE ABOUT TIM Tim is a Microsoft Dedicated

More information

Microsoft Azure Windows Server Microsoft System Center

Microsoft Azure Windows Server Microsoft System Center Windows Server Microsoft System Center Microsoft s Disaster Recovery Stack Simplified protection and recovery, built into Windows Server with Windows Server Backup Enhanced through integration with Backup

More information

The Evolution of IT Resilience & Assurance

The Evolution of IT Resilience & Assurance White Paper The Evolution of IT Resilience & Assurance Executive Summary Protection of business data and applications has evolved dramatically over the past several decades mostly driven by businesses

More information

Veeam and HP: Meet your backup data protection goals

Veeam and HP: Meet your backup data protection goals Sponsored by Veeam and HP: Meet your backup data protection goals Eric Machabert Сonsultant and virtualization expert Introduction With virtualization systems becoming mainstream in recent years, backups

More information

SEMINAR. Achieve 100% Backup Success! Achieve 100% Backup Success! Today s Goals. Today s Goals

SEMINAR. Achieve 100% Backup Success! Achieve 100% Backup Success! Today s Goals. Today s Goals Presented by: George Crump President and Founder, Storage Switzerland www.storagedecisions.com Today s Goals Achieve 100% Backup Success! o The Data Protection Problem Bad Foundation, New Problems o Fixing

More information

Data Loss and Component Failover

Data Loss and Component Failover This chapter provides information about data loss and component failover. Unified CCE uses sophisticated techniques in gathering and storing data. Due to the complexity of the system, the amount of data

More information

Availability and the Always-on Enterprise: Why Backup is Dead

Availability and the Always-on Enterprise: Why Backup is Dead Availability and the Always-on Enterprise: Why Backup is Dead Backups certainly fit the bill at one time, but data center needs have evolved and expanded. By Nick Cavalancia Every business has experienced

More information

Chapter 2 CommVault Data Management Concepts

Chapter 2 CommVault Data Management Concepts Chapter 2 CommVault Data Management Concepts 10 - CommVault Data Management Concepts The Simpana product suite offers a wide range of features and options to provide great flexibility in configuring and

More information

The Top 25 Questions, Issues, and Complaints of Cloud Business. Doug Pitcher RoseASP

The Top 25 Questions, Issues, and Complaints of Cloud Business. Doug Pitcher RoseASP The Top 25 Questions, Issues, and Complaints of Cloud Business Doug Pitcher RoseASP Doug.pitcher@roseasp.com Overview 1. Who is a likely hosting customer 2. It depends 3. Top 25 questions from customers

More information

Introduction. Read on and learn some facts about backup and recovery that could protect your small business.

Introduction. Read on and learn some facts about backup and recovery that could protect your small business. Introduction No business can afford to lose vital company information. Small-business owners in particular must take steps to ensure that client and vendor files, company financial data and employee records

More information

Hystax. Live Migration and Disaster Recovery. Hystax B.V. Copyright

Hystax. Live Migration and Disaster Recovery. Hystax B.V. Copyright Hystax Live Migration and Disaster Recovery Hystax B.V. Copyright 2016-2018 Migration and Disaster Recovery: Source and Target Platforms Source Platform Target Platform Ø VMware Ø Hyper-V Ø Amazon AWS

More information

MANAGE YOUR SHOP WITH POLICY BASED MANAGEMENT & CENTRAL MANAGEMENT SERVER

MANAGE YOUR SHOP WITH POLICY BASED MANAGEMENT & CENTRAL MANAGEMENT SERVER MANAGE YOUR SHOP WITH POLICY BASED MANAGEMENT & CENTRAL MANAGEMENT SERVER Ryan Adams Blog - http://ryanjadams.com Twitter - @ryanjadams Email ryan@ryanjadams.com Objectives CMS Configuration CMS Import

More information

Running and maintaining a secure Unity RIS/CVIS/PACS

Running and maintaining a secure Unity RIS/CVIS/PACS TechNote: Unity System Backend for System Administrators Running and maintaining a secure Unity RIS/CVIS/PACS Unity Releases 9, 10, and 11 April 3, 2015 For system administrators Contents Getting started...

More information

Backup and Disaster Recovery: DIY or Buy? Presented by: Stanley Louissaint

Backup and Disaster Recovery: DIY or Buy? Presented by: Stanley Louissaint Backup and Disaster Recovery: DIY or Buy? Presented by: Stanley Louissaint Presenter Stanley Louissaint Principal and Founder, Fluid Designs Managed Service Provider Business Continuity Solutions Computer

More information

Real-time Monitoring, Inventory and Change Tracking for. Track. Report. RESOLVE!

Real-time Monitoring, Inventory and Change Tracking for. Track. Report. RESOLVE! Real-time Monitoring, Inventory and Change Tracking for Track. Report. RESOLVE! Powerful Monitoring Tool for Full Visibility over Your Hyper-V Environment VirtualMetric provides the most comprehensive

More information

Business Continuity and Disaster Recovery Disaster-Proof Your Business

Business Continuity and Disaster Recovery Disaster-Proof Your Business Business Continuity and Disaster Recovery Disaster-Proof Your Business Jon Bock Senior Product Marketing Manager October 16, 2008 Agenda Disaster Recovery Requirements and Challenges Disaster Recovery

More information

StorageCraft OneXafe and Veeam 9.5

StorageCraft OneXafe and Veeam 9.5 TECHNICAL DEPLOYMENT GUIDE NOV 2018 StorageCraft OneXafe and Veeam 9.5 Expert Deployment Guide Overview StorageCraft, with its scale-out storage solution OneXafe, compliments Veeam to create a differentiated

More information

Virtual protection gets real

Virtual protection gets real Virtual protection gets real How to protect virtual machines from downtime and data loss 5 must-have features for VM backup Businesses virtualize to consolidate resources, reduce costs and increase workforce

More information

This video is part of the Microsoft Virtual Academy.

This video is part of the Microsoft Virtual Academy. This video is part of the Microsoft Virtual Academy. 1 In this session we re going to talk about building for the private cloud using the Microsoft deployment toolkit 2012, my name s Mike Niehaus, I m

More information

Red Hat Enterprise Virtualization (RHEV) Backups by SEP

Red Hat Enterprise Virtualization (RHEV) Backups by SEP Red Hat Enterprise Virtualization (RHEV) Backups by SEP info@sepusa.com www.sepusa.com Table of Contents INTRODUCTION AND OVERVIEW AGENT BASED BACKUP IMAGE LEVEL BACKUP VIA RHEV API RHEV BACKUP WITH SEP

More information

Arcserve Unified Data Protection Virtualization Solution Brief

Arcserve Unified Data Protection Virtualization Solution Brief Arcserve Unified Data Protection Virtualization Solution Brief Server and desktop virtualization have become very pervasive in most organizations, and not just in the enterprise. Everybody agrees that

More information

Check Table Size In Sql Server 2008 R2 >>>CLICK HERE<<<

Check Table Size In Sql Server 2008 R2 >>>CLICK HERE<<< Check Table Size In Sql Server 2008 R2 My scenario is that I am using sql server 2008 r2 on my end. So my purpose is that I want to fix the table size of those tables(log tables) and want to move When

More information

Veritas Storage Foundation for Windows by Symantec

Veritas Storage Foundation for Windows by Symantec Veritas Storage Foundation for Windows by Symantec Advanced online storage management Veritas Storage Foundation 5.1 for Windows brings advanced online storage management to Microsoft Windows Server environments,

More information

Simplifying HDS Thin Image (HTI) Operations

Simplifying HDS Thin Image (HTI) Operations Simplifying HDS Thin Image (HTI) Operations USING COMMVAULT INTELLISNAP TECHNOLOGY Simplifying the Move to Snapshots: As application data sizes grow ever larger, more organizations are turning to storage

More information

CIO Guide: Disaster recovery solutions that work. Making it happen with Azure in the public cloud

CIO Guide: Disaster recovery solutions that work. Making it happen with Azure in the public cloud CIO Guide: Disaster recovery solutions that work Making it happen with Azure in the public cloud Consult Build Transform Support When you re considering a shift to Disaster Recovery as a service (DRaaS),

More information

Performing an ObserveIT Upgrade Using the Interactive Installer

Performing an ObserveIT Upgrade Using the Interactive Installer Performing an ObserveIT Upgrade Using the Interactive Installer ABOUT THIS DOCUMENT This document contains detailed procedures and instructions on how to upgrade ObserveIT by using the interactive "One

More information

Data Storage, Recovery and Backup Checklists for Public Health Laboratories

Data Storage, Recovery and Backup Checklists for Public Health Laboratories Data Storage, Recovery and Backup Checklists for Public Health Laboratories DECEMBER 2018 Introduction Data play a critical role in the operation of a laboratory information management system (LIMS) and

More information

High Availability Without the Cluster (or the SAN) Josh Sekel IT Manager, Faculty of Business Brock University

High Availability Without the Cluster (or the SAN) Josh Sekel IT Manager, Faculty of Business Brock University High Availability Without the Cluster (or the SAN) Josh Sekel IT Manager, Faculty of Business Brock University File Services: Embarked on quest; after paying for too many data recoveries, to make saving

More information

VERITAS Storage Foundation 4.0 for Windows

VERITAS Storage Foundation 4.0 for Windows DATASHEET VERITAS Storage Foundation 4.0 for Windows Advanced Volume Management Technology for Microsoft Windows Server 2003 In distributed client/server environments, users demand that databases, mission-critical

More information

Veritas Storage Foundation for Windows by Symantec

Veritas Storage Foundation for Windows by Symantec Veritas Storage Foundation for Windows by Symantec Advanced online storage management Veritas Storage Foundation 5.0 for Windows brings advanced online storage management to Microsoft Windows Server environments.

More information

AUTOMATED RESTORE TESTING FOR TIVOLI STORAGE MANAGER

AUTOMATED RESTORE TESTING FOR TIVOLI STORAGE MANAGER AUTOMATED RESTORE TESTING FOR TIVOLI STORAGE MANAGER TSMworks, Inc. Based in Research Triangle area, NC, USA IBM Advanced Business Partner Big fans of Tivoli Storage Manager Broad experience with Fortune

More information

VERITAS Volume Manager for Windows 2000

VERITAS Volume Manager for Windows 2000 VERITAS Volume Manager for Windows 2000 Advanced Storage Management Technology for the Windows 2000 Platform In distributed client/server environments, users demand that databases, mission-critical applications

More information

If you lost your data and don t have a plan, its too late to for DR! When Disaster strikes, will you have HA protection?

If you lost your data and don t have a plan, its too late to for DR! When Disaster strikes, will you have HA protection? If you lost your data and don t have a plan, its too late to for DR! When Disaster strikes, will you have HA protection? Little about me Definitions History IBM I Disaster Recovery High Availability Disaster

More information

HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER

HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER SQL SATURDAY # 91 - OMAHA HIGH-AVAILABILITY & D/R OPTIONS FOR MICROSOFT SQL SERVER 8/27/11 Tim Plas, Virteva tim.plas@virteva.com 1 The Presenter Tim Plas, Principal Consultant at Virteva (Mpls) Operational

More information

Chapter Title. Time Warner Cable Business Class Online Backup. Windows User Guide. Version 2.6

Chapter Title. Time Warner Cable Business Class Online Backup. Windows User Guide. Version 2.6 Chapter Title Time Warner Cable Business Class Online Backup Windows User Guide Version 2.6 Table of Contents Table of Contents... 2 Chapter 1: About This Guide... 3 Chapter 2: Getting Started...4 Installing

More information

Configuration Guide for Veeam Backup & Replication with the HPE Hyper Converged 250 System

Configuration Guide for Veeam Backup & Replication with the HPE Hyper Converged 250 System Configuration Guide for Veeam Backup & Replication with the HPE Hyper Converged 250 System 1 + 1 = 3 HPE + Veeam Better Together Contents Intended audience...3 Veeam Backup & Replication overview...3 Adding

More information

Validating Your PSQL Database Backups

Validating Your PSQL Database Backups Validating Your PSQL Database Backups A White Paper From For more information, see our web site at Validating Your PSQL Database Backups Last Updated: 09/15/2016 Do you have a mission critical database

More information

CommVault Simpana 9 Virtual Server - Lab Validation

CommVault Simpana 9 Virtual Server - Lab Validation January 2012 CommVault Simpana 9 Virtual Server - Lab Validation Russ Fellows Evaluator Group Table of Contents Executive Summary... 1 Data Protection Challenges... 2 Overview of Evaluation... 2 Test Objectives...

More information

SAP HANA. HA and DR Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD.

SAP HANA. HA and DR Guide. Issue 03 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 03 Date 2018-05-23 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2019. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any

More information

Sample Exam ISTQB Advanced Test Analyst Answer Rationale. Prepared By

Sample Exam ISTQB Advanced Test Analyst Answer Rationale. Prepared By Sample Exam ISTQB Advanced Test Analyst Answer Rationale Prepared By Released March 2016 TTA-1.3.1 (K2) Summarize the generic risk factors that the Technical Test Analyst typically needs to consider #1

More information

Real-time Protection for Microsoft Hyper-V

Real-time Protection for Microsoft Hyper-V Real-time Protection for Microsoft Hyper-V Introduction Computer virtualization has come a long way in a very short time, triggered primarily by the rapid rate of customer adoption. Moving resources to

More information

Redefine Data Protection: Next Generation Backup And Business Continuity

Redefine Data Protection: Next Generation Backup And Business Continuity Redefine Data Protection: Next Generation Backup And Business Continuity 1 Business Is Being Redefined Leveraging the Power of Technology Megatrends CLOUD MOBILE SOCIAL BIG DATA 2 Creating New Next Gen

More information

Quick Startup Guide - EnsureDR for Zerto

Quick Startup Guide - EnsureDR for Zerto Quick Startup Guide - EnsureDR for Zerto Ver:1.0-11/05/17 EnsureDR LTD EnsureDR is a tool that can make sure your DR site will work when you need it. It automates DR testing and uncovers any issues that

More information

VMware admins: Can your DR do this?

VMware admins: Can your DR do this? VMware admins: Can your DR do this? Veeam Backup & Replication v6 Rick Vanover vexpert, VCP, MCITP Product Strategy Specialist Twitter @RickVanover Administrative Points on this Webinar Technical content,

More information

Vembu Technologies. Experience. Headquartered in Chennai Countries

Vembu Technologies. Experience. Headquartered in Chennai Countries Vembu extends Vembu v4.0 Vembu BDRsupport Suite - to Standard edition Vembu Technologies Experience 100+ Countries 2 Headquartered in Chennai Vembu BDR Suite Vembu BDR Suite is a portfolio of products

More information

UNITRENDS CLOUD BACKUP FOR OFFICE 365

UNITRENDS CLOUD BACKUP FOR OFFICE 365 UNITRENDS CLOUD BACKUP FOR OFFICE 365 FREQUENTLY ASKED QUESTIONS Unitrends Cloud Backup for Office 365 provides full, automatic protection that is purpose-built for Microsoft SaaS applications, eliminating

More information

VMware Backup and Replication using Vembu VMBackup

VMware Backup and Replication using Vembu VMBackup VMware Backup and Replication using Vembu VEMBU TECHNOLOGIES PARTNERS Vembu Technologies Founded in 2002 10+ Years of Experience Headquartered in Chennai 100+ Countries 4000+ Partners 2 60000+ Businesses

More information

Winning Strategies for Successful SharePoint Backup and Recovery

Winning Strategies for Successful SharePoint Backup and Recovery Winning Strategies for Successful SharePoint Backup and Recovery Michael Denzler, AvePoint Deutschland GmbH 05.06.2014 Accessible content is available upon request. michael.denzler @avepoint.com http://blog.denzman.com

More information

Provided as an educational service by: Introduction

Provided as an educational service by: Introduction DPC TECHNOLOGY THE GUIDE DISASTER PLANNING ESSENTIALS CLAY ARCHER DPC TECHNOLOGY Provided as an educational service by: Clay Archer, CEO DPC Technology 7845 Baymeadows Way, Jacksonville, FL 32256 (844)

More information

Optimizing and Managing File Storage in Windows Environments

Optimizing and Managing File Storage in Windows Environments Optimizing and Managing File Storage in Windows Environments A Powerful Solution Based on Microsoft DFS and Virtual File Manager September 2006 TR-3511 Abstract The Microsoft Distributed File System (DFS)

More information

Veritas Storage Foundation for Windows by Symantec

Veritas Storage Foundation for Windows by Symantec Veritas Storage Foundation for Windows by Symantec Advanced online storage management Data Sheet: Storage Management Overview Veritas Storage Foundation 6.0 for Windows brings advanced online storage management

More information

Disaster Recovery Is A Business Strategy

Disaster Recovery Is A Business Strategy Disaster Recovery Is A Business Strategy A White Paper By Table of Contents Preface Disaster Recovery Is a Business Strategy Disaster Recovery Is a Business Strategy... 2 Disaster Recovery: The Facts...

More information

Disaster Recovery and Mitigation: Is your business prepared when disaster hits?

Disaster Recovery and Mitigation: Is your business prepared when disaster hits? 1 Disaster Recovery and Mitigation: Is your business prepared when disaster hits? 2 Our speaker today: Catherine Roy, Director of PMO at Hosting 15 years Project Management experience At HOSTING since

More information

Why SaaS isn t Backup

Why SaaS isn t Backup EBOOK LOGO HERE Why SaaS isn t Backup Yes, You need to backup your cloud data. 1 One of the most business friendly innovations in recent years has been the proliferation of cloud apps like Google Apps,,

More information

SQL 2005 BACKUP AND RESTORE REPAIR MANUAL E-BOOK

SQL 2005 BACKUP AND RESTORE REPAIR MANUAL E-BOOK 06 December, 2017 SQL 2005 BACKUP AND RESTORE REPAIR MANUAL E-BOOK Document Filetype: PDF 201.55 KB 0 SQL 2005 BACKUP AND RESTORE REPAIR MANUAL E-BOOK I have a SQL 2005. Explains why SQL Server VDI backup

More information

Expert Oracle GoldenGate

Expert Oracle GoldenGate Expert Oracle GoldenGate Ben Prusinski Steve Phillips Richard Chung Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction...1 Distributed

More information

Maximizing Availability With Hyper-Converged Infrastructure

Maximizing Availability With Hyper-Converged Infrastructure Maximizing Availability With Hyper-Converged Infrastructure With the right solution, organizations of any size can use hyper-convergence to help achieve their most demanding availability objectives. Here

More information