Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
SQL Server 2019 Administrator's Guide - Second Edition

You're reading from  SQL Server 2019 Administrator's Guide - Second Edition

Product type Book
Published in Sep 2020
Publisher Packt
ISBN-13 9781789954326
Pages 522 pages
Edition 2nd Edition
Languages
Authors (2):
Marek Chmel Marek Chmel
Profile icon Marek Chmel
Vladimír Mužný Vladimír Mužný
Profile icon Vladimír Mužný
View More author details

Table of Contents (17) Chapters

Preface 1. Section 1: Provisioning the SQL Server Environment
2. Chapter 1: Setting Up SQL Server 2019 3. Chapter 2: Keeping Your SQL Server Environment Healthy 4. Section 2: Server and Database Maintenance
5. Chapter 3: Implementing Backup and Recovery 6. Chapter 4: Securing Your SQL Server 7. Chapter 5: Working with Disaster Recovery Options 8. Chapter 6: Indexing and Performance 9. Section 3: High Availability and the Cloud with SQL Server 2019
10. Chapter 7: Planning Migration and Upgrade 11. Chapter 8: Automation – Using Tools to Manage and Monitor SQL Server 2019 12. Chapter 9: Configuring Always On High Availability Features 13. Chapter 10: In-Memory OLTP – Why and How to Use it 14. Chapter 11: Combining SQL Server 2019 with Azure 15. Chapter 12: Taming Big Data with SQL Server 16. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "ActiveDirectory is automatically managing the account password without any service disruption."

A block of code is set as follows:

-- bringing data back
alter table MovieRatings set (remote_data_archive (migration_state = inbound))
go
-- leaving data in Azure
alter table MovieRatings set 
(remote_data_archive = off_without_data_recovery 
(migration_state = paused))
go

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

use [AdventureWorks]
exec sp_replicationdboption @dbname = N'AdventureWorks', 
    @optname = N'publish', 
    @value = N'true'
GO 

Any command-line input or output is written as follows:

EXEC sp_configure 'backup compression default', 1
GO
RECONFIGURE
GO

Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Once Replication is enabled for the database, you can create the publication and add the snapshot."

Tips or important notes

You may find many errors in the error log of your SQL Server, which will lead you to the required TLS1.2 hotfix installation.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}