About Me Terry Brothers. About IT Take Away An understanding of SQL Server Log Shipping.

Slides:



Advertisements
Similar presentations
Refeng Wu CQ5 WCM System Administrator
Advertisements

Burt King We will cover: Essentials --No command line needed here (mott) What is SQL Server How does it come to life What are the.
Maintaining and Automating SQL Server
SQL Server Best Practices Keep Your Database In Top Performance Shape and Maintain Effective Backups September, 2007 Richard Kokoski.
SQL Server 2005 Implementation and Maintenance Chapter 10: Maintaining and Automating SQL Server.
©2006 ITT Educational Services Inc. Course Name: IT390 Business Database Administration Unit 5 Slide 1 IT390 Business Database Administration Unit 5 :
Managing and Maintaining Indexes and Statistics. Table Fragmentation Causes 1 Massive Updates or deletes 2 Frequent Page Splitting 3 Disk space contention.
Database Optimization & Maintenance Tim Richard ECM Training Conference#dbwestECM Agenda SQL Configuration OnBase DB Planning Backups Integrity.
Introduction to MySQL Administration.  Server startup and shutdown ◦ How to manually start and stop it from the command line ◦ How to arrange an automated.
SharePoint and SQL Server integration Demo: SQL Server Optimizing Configurations SQL Server 2014 for SharePoint 2013 Avoiding ginormous transaction.
Backup, Integrity Check and Index and Statistics Maintenance
Manage backup vaults and servers Download and install backup agent Download a vault agent Create backup vault.
Backups, Archives, Exports l Backup - Used to make a duplicate of a database, table, or log as a safety measure. Use SQL Enterprise Manager l Archive -
Proper Care and Feeding of your SQL MDB -Recommendations for General MDB Maintenance -Read the notes on the foils! -Revised October
Module 7: Restoring Databases. Overview SQL Server Recovery Process Preparing to Restore a Database Restoring Backups Restoring Databases from Different.
CS27510 Commercial Database Applications. Maintenance Maintenance Disaster Recovery Disaster Recovery.
SQL Server Management Studio Introduction
Chapter 2 Administrating DB Engine. Database Engine  The Database Engine is the core service for storing, processing, and securing data.  It provides.
Today’s Agenda Chapter 12 Admin Tasks Chapter 13 Automating Admin Tasks.
Overview What is SQL Server? Creating databases Administration Security Backup.
Module 8: Server Management. Overview Server-level and instance-level resources such as memory and processes Database-level resources such as logical.
Maintaining a Microsoft SQL Server 2008 Database SQLServer-Training.com.
Chapter 4 SQL. SQL server Microsoft SQL Server is a client/server database management system. Microsoft SQL Server is a client/server database management.
Maintaining a Mirrored Database Tips and Tricks by Paul G. Hiles.
Agenda for Today Chapter 5 –Skip Lesson 2 Review questions Midterm Chapter 6 Review questions.
Informix IDS Administration with the New Server Studio 4.0 By Lester Knutsen My experience with the beta of Server Studio and the new Informix database.
Learningcomputer.com SQL Server 2008 – Administration, Maintenance and Job Automation.
IT 456 Seminar 5 Dr Jeffrey A Robinson. Overview of Course Week 1 – Introduction Week 2 – Installation of SQL and management Tools Week 3 - Creating and.
Module 10: Maintaining High-Availability. Overview Introduction to Availability Increasing Availability Using Failover Clustering Standby Servers and.
Module 16: Performing Ongoing Database Maintenance
Microsoft SQL Server 2008 R2 IT:Network:Applications.
Module 5: Upgrading to SQL Server 7.0. Overview Planning an Upgrade Preparing to Upgrade Verifying the Upgrade Setting a Compatibility Level.
1 Chapter Overview Preparing to Upgrade Performing a Version Upgrade from Microsoft SQL Server 7.0 Performing an Online Database Upgrade from SQL Server.
1 Chapter Overview Performing Configuration Tasks Setting Up Additional Features Performing Maintenance Tasks.
Week 7 : Chapter 7 Agenda SQL 710 Maintenance Plan:
1 Chapter Overview Defining Operators Creating Jobs Configuring Alerts Creating a Database Maintenance Plan Creating Multiserver Jobs.
SQL School is strongly committed to provide COMPLETE PRACTICAL REALTIME Trainings on SQL Server Technologies – Dev, SQL DBA, MSBI (SSIS, SSAS, SSRS) and.
IT System Administration Lesson 3 Dr Jeffrey A Robinson.
Learningcomputer.com SQL Server 2008 – Backup and Restore Database.
Backing Up and Restoring Databases by Using the SQL Server 2000.
Maintenance Practices. Goal  Automate the necessary DBA chores to put organizations on the path of having healthier, consistent and more trustworthy.
SharePoint 2013 Configuration steps. Add Permissions to SQL 1.Run the SharePoint Management shell on one of the farm servers, while logged in.
Backup Tables in SQL Server. Backup table method Cape_Codd database is used in this example 1.Righ click the database that contains the table you want.
1 Chapter Overview Using Standby Servers Using Failover Clustering.
Praveen Srivatsa Director| AstrhaSoft Consulting blogs.asthrasoft.com/praveens |
SQL SERVER MAINTENANCE PLANS Kat
Strategies for Working with Texas-sized Databases Robert L Davis Database Engineer
SSIS ETL Data Resource Management. Create an ETL package using a wizard database server to database server The business goal of this ETL package is to.
New Instance… Now What? Presented by: James Donahoe Senior Solutions Engineer – TeleTracking Technologies MCSA: SQL Server 2012.
Database Administration for the Non-DBA Denny Cherry twitter.com/mrdenny.
Work Smarter Not Harder Standardize Your Environment With Best Practices.
Are You High? Can You Recover? Robert Douglas SQL Saturday #468, Sydney 27 th February 2016.
ProgressBook Suite Maintenance
SQL Replication for RCSQL Reporting
DB Programming – Basic analysis
SQL Replication for RCSQL 4.5
Glasgow, SQL Server Meetup
Finding more space for your tight environment
Designing Database Solutions for SQL Server
Contained DB? Did it do something wrong?
Chapter Overview Understanding the Database Architecture
Automating SQL Server Management
SQL Server May Let You Do It, But it Doesn’t Mean You Should
Dynamics AX Performance
The Ultimate Maintenance Plan By Ed Roepe Perimeter DBA, LLC
dbatools - PowerShell and SQL Server Working Together
AlwaysOn Availability Groups
Disaster Recovery Done Dirt Cheap Founder Curnutt Data Solutions
Sql Saturday Philadelphia
Presentation transcript:

About Me Terry Brothers

About IT

Take Away An understanding of SQL Server Log Shipping

Database Log Shipping Easy to configure Reliable Easy to Recover

Log Shipping Process

Create Secondary Server Build a SQL Server from scratch Clone the eAutomate VM Restore from Backup Exec to a VM Restore from AppAssure to a VM Some other method

Configure Log Shipping Production: ESI-EAM Secondary: ESI-EAM-BAK

Configure Log Shipping

Recover Secondary Server USE master GO EXEC = = = = = = = null

Rename Windows Server ESI-EAM-BAK ESI-EAM

Rename SQL Server sp_helpserver exec sp_dropserver 'ESI-EAM-BAK' sp_addserver 'ESI-EAM', LOCAL

Rename SQL Server

Additional DR Preparation Backup SQL Logins Backup SQL Agent Jobs

SQL Logins

SQL Agent Jobs

eAdmin for eAutomate

SQL Administration Database Integrity Reorganize Indexes Rebuild Indexes Database Mail Recap from Last Year

Database Maintenance Check Database Integrity The Check Database Integrity task checks the allocation and structural integrity of all the objects in the specified database.

Database Maintenance Reorganize Index Task The Reorganize Index task defragments and compacts indexes on tables and views. This improves index-scanning performance.

Database Maintenance Rebuild Index Task The Rebuild task reorganizes data on the data and index pages by rebuilding indexes. This improves performance of index scans and seeks. This task also optimizes the distribution of data and free space allowing faster future growth.

Maintenance Plan Wizard SQL Server Management Studio

Database Mail

Be the Hero – Not the Villain