SQL Server 2019 Administration
SQL Server 2019 Administration
New features in SQL Server 2019, such as Big Data Clusters and
improved security features
SQL Server 2019 licensing and pricing models
Comparison of SQL Server 2019 editions and versions
Installation and configuration of SQL Server 2019: This module covers the
steps involved in installing and configuring SQL Server 2019, including the
following topics:
Reference Link:
https://docs.microsoft.com/en-us/sql/sql-server/install/install-sql-server?
view=sql-server-ver15
Overall, this module provides students with a foundation for
understanding SQL Server 2019 and how to install and configure it. It's an
essential first step for any SQL Server 2019 administrator.
Reference links:
To create a database backup in SQL Server, you can use the Transact-SQL
BACKUP statement, SQL Server Management Studio, or PowerShell. A full
database backup backs up the entire database, while a differential backup
backs up the changes since the last full backup, and a transaction log
backup backs up the transaction log. SQL Server also provides backup
compression to reduce the size of backup files.
You can also schedule backups using SQL Server Agent jobs, and
configure backup retention policies to manage backup files. SQL Server
also supports backup to Azure Blob storage for offsite backup storage and
disaster recovery.
A full database restore replaces the existing database with the backup,
while a differential restore applies the differential backup to the last full
backup to bring the database up to the point of failure. A transaction log
restore applies the transaction log backups to bring the database to a
specific point in time.
SQL Server also supports point-in-time recovery, where you can restore
the database to a specific transaction log backup to recover the database
up to a specific point in time. SQL Server also provides restore validation
to verify the integrity of the backup files before restoring.