SlideShare ist ein Scribd-Unternehmen logo
1 von 50
Downloaden Sie, um offline zu lesen
Collective Imagination 2021 is a Gallery Systems Event
A CRASH COURSE IN SQL SERVER ADMINISTRATION
FOR RELUCTANT DATABASE ADMINISTRATORS
Chad Petrovay, TMS Administrator, The Morgan Library & Museum
Collective Imagination 2021 is a Gallery Systems Event
Reluctant DBAs are those of us who haven't
had formal training in administering a
database and are surviving on a
combination of our wits, Books Online
(BOL), and technical manuals.
- Josef Finsel
Collective Imagination 2021 is a Gallery Systems Event
THE RELUCTANT DBA
•The goal is NOT perfection
•The goal is a stable, reliable
database server
Collective Imagination 2021 is a Gallery Systems Event
WHAT IS SQL SERVER?
TMS
(Database)
Physical Server
(Hardware/OS)
Database Engine
(Software)
Collective Imagination 2021 is a Gallery Systems Event
SERVICES
• A service is an application that runs in the
background
• Windows Services Manager
• Know how to open it
• Know how to start and stop services with it
Collective Imagination 2021 is a Gallery Systems Event
BASIC TOOLS
• Have an account with Local Admin Rights
• Install SQL Server Management Studio (SSMS)
• https://docs.microsoft.com/sql/ssms/download-
sql-server-management-studio-ssms
• https://sqlserverupdates.com/
Collective Imagination 2021 is a Gallery Systems Event
BEST PRACTICES
Versions, Editions & Licensing
Collective Imagination 2021 is a Gallery Systems Event
SQL SERVER VERSIONS
Version Release Date Support Until Extended Until TMS Version
SQL Server 2008 11/6/2008 7/8/2014 7/9/2019 TMS 2014*
SQL Server 2008 R2 7/20/2010 7/8/2014 7/9/2019 TMS 2014
SQL Server 2012 5/20/2012 7/11/2017 7/12/2022 TMS 2014, 2016, 2017*, 2018*
SQL Server 2014 5/6/2014 7/9/2019 7/9/2024 TMS 2014, 2016, 2017, 2018
SQL Server 2016 6/1/2016 7/13/2021 7/14/2026 TMS 2016, 2017, 2018, 2020, 2021
SQL Server 2017 9/29/2017 10/11/2022 10/12/2027 TMS 2017*, 2018, 2020, 2021
SQL Server 2019 11/4/2019 1/7/2025 1/8/2030 TMS 2020, 2021
* presumed, but no longer officially supported by Gallery Systems
Collective Imagination 2021 is a Gallery Systems Event
Express
• Minimal feature set
• Limitations:
• Lesser of 1 socket
or 4 cores
• 1410 MB RAM
• 10 GB database
• Free
Standard
• Lacks advanced
features from
Enterprise edition
• Limitations:
• Lesser of 4 sockets
or 24 cores
• 128 GB RAM
• Paid
Enterprise
• Full feature set
• Always On
Availability Group
• Clustering
• No limitations
• Paid ($$$)
Developer
• Same as Enterprise
edition
• Single user for
development
• Free
SQL SERVER EDITIONS
Collective Imagination 2021 is a Gallery Systems Event
Core Based
• Unlimited number
of users/devices
• Pay for the number of cores
on the physical CPU
• Core licenses are sold in
packs of two
Server + CAL
• License any physical
operating system running
SQL server
• Purchase a Client Access
License (CAL) for every
user/device
HOW IS SQL SERVER LICENSED?
Collective Imagination 2021 is a Gallery Systems Event
RESOURCES
https://sqlserverupdates.com/
https://sqlserverbuilds.blogspot.com/
https://metrixdata360.com/license-series/sql-
server-licensing-explained/
Third-Party Software Compatibility PDF
Collective Imagination 2021 is a Gallery Systems Event
BEST PRACTICES
Best Practices
Collective Imagination 2021 is a Gallery Systems Event
DEDICATED SERVER
• Have a dedicated physical server or virtual
machine for your database engine
• Avoid having multiple instances of SQL Server
on the same physical server or virtual
machine
Collective Imagination 2021 is a Gallery Systems Event
Feature required:
• Database Engine
Services
• Client Tools
Connectivity
ONLY INSTALL WHAT YOU NEED
Collective Imagination 2021 is a Gallery Systems Event
SQL SERVER AGENT
• A job is a task to be executed
• Can be scheduled
• Can be in response to a specific event
• Can be on demand
• Start SQL Server Agent!!
Collective Imagination 2021 is a Gallery Systems Event
MULTIPLE DRIVES
Database and Log
Files
TempDB Files
Operating System
C:
Collective Imagination 2021 is a Gallery Systems Event
MULTIPLE TEMPDB FILES
• A single database file can become a
bottleneck
• Add 7 additional database files
• Make all the files the same size, filling the
drive
Collective Imagination 2021 is a Gallery Systems Event
• Use Domain accounts
• Complex password
• Managed Service
Account (MSA)
• Only make changes in
SQL Server
Configuration Manager
SEPARATE SERVICE ACCOUNTS
Collective Imagination 2021 is a Gallery Systems Event
SECURE YOUR SA ACCOUNT
1. Change the password to a strong password:
https://passwordgenerator.net
2. Rename “sa” account
• Avoid “sysadmin”, “admin” and “nimda”
3. Disable the account
Collective Imagination 2021 is a Gallery Systems Event
ENABLE & CONFIGURE DATABASE MAIL
• Sends emails directly from the database
engine using sp_send_dbmail
• Use a dedicated email address
• To configure, you will need:
• Email address & password
• Email server address
• Email server port number
Collective Imagination 2021 is a Gallery Systems Event
BEST PRACTICES
Disaster Recovery
Collective Imagination 2021 is a Gallery Systems Event
SEPARATE DRIVE FOR BACKUPS
• Use a network drive
• Make sure your SQL Server Agent service
account has read/write access to this location
• Reference with a UNC path,
instead of a mapped network drive
Collective Imagination 2021 is a Gallery Systems Event
RAID, snapshots, and machine
images are NOT database
backups!!
- Chad Petrovay
Collective Imagination 2021 is a Gallery Systems Event
Full
• Complete copy of the
database
• Allows the simplest
form of database
restoration
Differential
• Contains only
changes that have
occurred since the
last full backup
• Smaller in size
• Adds steps to the
restoration process
Log
• Contains a log of
every change of data
• The most
complicated
restoration process
• Permits restoration
to a specific point in
time
BACKUP TYPES
Collective Imagination 2021 is a Gallery Systems Event
RPO
• Recovery Point Objective
• Maximum length of time
permitted that data can be
restored from, which may or
may not mean data loss.
RTO
• Recovery Time Objective
• Targeted duration of time
between the event of failure
and the point where
operations resume.
WHAT’S YOUR NUMBER?
Collective Imagination 2021 is a Gallery Systems Event
Full
• Saturday
• 11PM
• Retain 90 days
Differential
• Monday to Friday
• 11PM
• Retain 30 days
Log
• Daily
• Every 15 minutes
• Retain 48 hours
THE MORGAN’S STRATEGY
Collective Imagination 2021 is a Gallery Systems Event
HOW TO AUTOMATE BACKUPS
• Maintenance Plans
• Right-click on Management » Maintenance Plans
• Select Maintenance Plan Wizard
• Ola Hallengren’s free backup script
• https://ola.hallengren.com/
• Third Party Tool
• SqlBackupAndFTP
• Idera’s SQL Safe Backup
Collective Imagination 2021 is a Gallery Systems Event
TEST YOUR BACKUPS & PRACTICE RESTORES
• Test restorations on a sandbox server
• Develop a checklist
• Document the restoration process
• Periodically test the backups by performing
restorations
Collective Imagination 2021 is a Gallery Systems Event
BEST PRACTICES
Reliability / Performance
Collective Imagination 2021 is a Gallery Systems Event
SQL SERVER IS A MEMORY HOG
• SQL Server does not release memory back to
the operating system (OS)
• Try to get as much memory as you can
• Express: 1410 MB RAM max
• Standard: 128 GB RAM max
Collective Imagination 2021 is a Gallery Systems Event
CONFIGURE MAX SERVER MEMORY
• M = x - y
• x = total RAM in MB
• Conversion: 1 GB = 1024 MB
• y = the larger of 4096 or (0.1x)
• M = Max Server Memory
• Set Max Server Memory in Server Properties
• Assumes no additional instances or services
Collective Imagination 2021 is a Gallery Systems Event
• Disable: SQL Server
Telemetry
• Disable: SQL Server
CEIP service
• Automatic: SQL
Server Agent
SERVICES
Collective Imagination 2021 is a Gallery Systems Event
DATABASE & JOB OWNERSHIP
• Avoid ownership
problems
• Change owner to
your renamed “sa”
account
Collective Imagination 2021 is a Gallery Systems Event
SQL SERVER AGENT ALERT SYSTEM
• Enable the Alert System
• Specify profile from Database Mail
• Add Operators
• Consider using a distribution list to notify
multiple people simultaneously
Collective Imagination 2021 is a Gallery Systems Event
ADD NOTIFICATIONS TO JOBS
• Specify an operator
• Specify when to be
notified:
• On failure
• On success
• On completion
Collective Imagination 2021 is a Gallery Systems Event
ADD ALERTS TO SQL SERVER AGENT
• Enable Alerts for …
• Severity 17 and higher
• Error number 823, 824, 825
• https://www.brentozar.com/go/alert
• Test alerts using RAISERROR
Collective Imagination 2021 is a Gallery Systems Event
After this change, you’ll be able to sleep at night
knowing your SQL Server is working well. Or
you’ll be awakened constantly by the sound of
your phone because SQL isn’t working well.
Either way, you’re a winner.
- Brent Ozar
Collective Imagination 2021 is a Gallery Systems Event
BEST PRACTICES
Server/Database Health
Collective Imagination 2021 is a Gallery Systems Event
PATCHES & UPDATES
• Keep your Operating System up to date
• Keep your SQL Server Instance up to date
• https://sqlserverupdates.com/
• https://sqlserverbuilds.blogspot.com/
Collective Imagination 2021 is a Gallery Systems Event
CHECK DATABASE INTEGRITY
• SQL: DBCC CHECKDB
• DBConfig
• Management » Database » Run DBCC CheckDB()
• Maintenance Plans
• Check Database Integrity
• Ola Hallengren’s SQL Server Maintenance
Solution
Collective Imagination 2021 is a Gallery Systems Event
INDEX MAINTAIN INDEX & COLUMN STATISTICS
• DBConfig
• Management » Database » Update DB
Statistic
• Maintenance Plans
• Reorganize Index, Rebuild Index, Update
Statistics
• Ola Hallengren’s SQL Server Maintenance
Solution
Collective Imagination 2021 is a Gallery Systems Event
A LITTLE CLEANUP
• Only Shrink Database when needed
• Remove older data from MSDB
• Job History
• Backup History
• Database Mail Sent Items
Collective Imagination 2021 is a Gallery Systems Event
BEST PRACTICES
Tips & a great feature
Collective Imagination 2021 is a Gallery Systems Event
GETTING HELP
• Stack Exchange is a network of Q-and-A
website
• Stack Overflow
• Database Administrators
• Follow the rules
• Proactively build reputation
Collective Imagination 2021 is a Gallery Systems Event
CHANGING THEMES IN SSMS
• Select Themes
• Tools » Options » Environment » General
• A Dark Theme option is suppressed in the UI
• Google your version of SSMS for instructions
for making it available
Collective Imagination 2021 is a Gallery Systems Event
XP_CMDSHELL STORED PROCEDURE
• Execute DOS commands directly from the
database engine using xp_cmdshell
• Secure your “sa” account before enabling
• Who remembers DOS?
Collective Imagination 2021 is a Gallery Systems Event
Fix your security and then turn on
xp_cmdshell. It’s a wonderful tool and
you’re missing out on it because of
bad security practices and myth.
- Jeff Moden
Collective Imagination 2021 is a Gallery Systems Event
XP_CMDSHELL STORED PROCEDURE
• Execute DOS commands directly from the
database engine using xp_cmdshell
• Secure your “sa” account before enabling
• Who remembers DOS?
Collective Imagination 2021 is a Gallery Systems Event
THE RELUCTANT DBA
•The goal is NOT perfection
•The goal is a stable, reliable
database server
Collective Imagination 2021 is a Gallery Systems Event
Q & A
Chad Petrovay
cpetrovay@themorgan.org
chad@petrovay.com
http://www.petrovay.com/tag/reluctant-dba/

Weitere ähnliche Inhalte

Was ist angesagt?

Master Data Services - used for than just data
Master Data Services - used for than just dataMaster Data Services - used for than just data
Master Data Services - used for than just dataKenneth Michael Nielsen
 
Master Data Management
Master Data ManagementMaster Data Management
Master Data ManagementHai Nguyen
 
Introduction to Microsoft SQL Server 2008 R2 Analysis Service
Introduction to Microsoft SQL Server 2008 R2 Analysis ServiceIntroduction to Microsoft SQL Server 2008 R2 Analysis Service
Introduction to Microsoft SQL Server 2008 R2 Analysis ServiceQuang Nguyễn Bá
 
Building Data Warehouse in SQL Server
Building Data Warehouse in SQL ServerBuilding Data Warehouse in SQL Server
Building Data Warehouse in SQL ServerAntonios Chatzipavlis
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Eduardo Castro
 
SQL Server 2008 New Features
SQL Server 2008 New FeaturesSQL Server 2008 New Features
SQL Server 2008 New FeaturesDan English
 
Taming the shrew, Optimizing Power BI Options
Taming the shrew, Optimizing Power BI OptionsTaming the shrew, Optimizing Power BI Options
Taming the shrew, Optimizing Power BI OptionsKellyn Pot'Vin-Gorman
 
DB PowerStudio XE DataSheet
DB PowerStudio XE DataSheetDB PowerStudio XE DataSheet
DB PowerStudio XE DataSheetANIL MAHADEV
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Eduardo Castro
 
SKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSING
SKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSINGSKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSING
SKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSINGSkillwise Group
 
SQL - Parallel Data Warehouse (PDW)
SQL - Parallel Data Warehouse (PDW)SQL - Parallel Data Warehouse (PDW)
SQL - Parallel Data Warehouse (PDW) Karan Gulati
 
Data virtualization
Data virtualizationData virtualization
Data virtualizationHamed Hatami
 
Introduction to Business Intelligence in Microsoft SQL Server 2008 R2
Introduction to Business Intelligence in Microsoft SQL Server 2008 R2Introduction to Business Intelligence in Microsoft SQL Server 2008 R2
Introduction to Business Intelligence in Microsoft SQL Server 2008 R2Quang Nguyễn Bá
 
Whats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 CwWhats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 CwEduardo Castro
 
Data Vault Automation at the Bijenkorf
Data Vault Automation at the BijenkorfData Vault Automation at the Bijenkorf
Data Vault Automation at the BijenkorfRob Winters
 
Considerations for Data Access in the Lakehouse
Considerations for Data Access in the LakehouseConsiderations for Data Access in the Lakehouse
Considerations for Data Access in the LakehouseDatabricks
 

Was ist angesagt? (20)

Master Data Services - used for than just data
Master Data Services - used for than just dataMaster Data Services - used for than just data
Master Data Services - used for than just data
 
Master Data Management
Master Data ManagementMaster Data Management
Master Data Management
 
Introduction to Microsoft SQL Server 2008 R2 Analysis Service
Introduction to Microsoft SQL Server 2008 R2 Analysis ServiceIntroduction to Microsoft SQL Server 2008 R2 Analysis Service
Introduction to Microsoft SQL Server 2008 R2 Analysis Service
 
Building Data Warehouse in SQL Server
Building Data Warehouse in SQL ServerBuilding Data Warehouse in SQL Server
Building Data Warehouse in SQL Server
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2
 
Ibm info sphere datastage tutorial part 1 architecture examples
Ibm info sphere datastage tutorial part 1  architecture examplesIbm info sphere datastage tutorial part 1  architecture examples
Ibm info sphere datastage tutorial part 1 architecture examples
 
SQL Server 2008 New Features
SQL Server 2008 New FeaturesSQL Server 2008 New Features
SQL Server 2008 New Features
 
Taming the shrew, Optimizing Power BI Options
Taming the shrew, Optimizing Power BI OptionsTaming the shrew, Optimizing Power BI Options
Taming the shrew, Optimizing Power BI Options
 
DB PowerStudio XE DataSheet
DB PowerStudio XE DataSheetDB PowerStudio XE DataSheet
DB PowerStudio XE DataSheet
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2
 
SKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSING
SKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSINGSKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSING
SKILLWISE-SSIS DESIGN PATTERN FOR DATA WAREHOUSING
 
SQL - Parallel Data Warehouse (PDW)
SQL - Parallel Data Warehouse (PDW)SQL - Parallel Data Warehouse (PDW)
SQL - Parallel Data Warehouse (PDW)
 
SQL_DBA USA_M&T Bank
SQL_DBA USA_M&T BankSQL_DBA USA_M&T Bank
SQL_DBA USA_M&T Bank
 
Statistics and Indexes Internals
Statistics and Indexes InternalsStatistics and Indexes Internals
Statistics and Indexes Internals
 
Data virtualization
Data virtualizationData virtualization
Data virtualization
 
Introduction to Business Intelligence in Microsoft SQL Server 2008 R2
Introduction to Business Intelligence in Microsoft SQL Server 2008 R2Introduction to Business Intelligence in Microsoft SQL Server 2008 R2
Introduction to Business Intelligence in Microsoft SQL Server 2008 R2
 
Whats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 CwWhats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 Cw
 
Data Vault Automation at the Bijenkorf
Data Vault Automation at the BijenkorfData Vault Automation at the Bijenkorf
Data Vault Automation at the Bijenkorf
 
It ready dw_day3_rev00
It ready dw_day3_rev00It ready dw_day3_rev00
It ready dw_day3_rev00
 
Considerations for Data Access in the Lakehouse
Considerations for Data Access in the LakehouseConsiderations for Data Access in the Lakehouse
Considerations for Data Access in the Lakehouse
 

Ähnlich wie A Crash Course in SQL Server Administration for Reluctant Database Administrators

Common SQL Server Mistakes and How to Avoid Them with Tim Radney
Common SQL Server Mistakes and How to Avoid Them with Tim RadneyCommon SQL Server Mistakes and How to Avoid Them with Tim Radney
Common SQL Server Mistakes and How to Avoid Them with Tim RadneyEmbarcadero Technologies
 
Stay productive_while_slicing_up_the_monolith
Stay productive_while_slicing_up_the_monolithStay productive_while_slicing_up_the_monolith
Stay productive_while_slicing_up_the_monolithMarkus Eisele
 
Oracle database connection with the .net developers
Oracle database connection with the .net developersOracle database connection with the .net developers
Oracle database connection with the .net developersveerendramb3
 
Pre and post tips to installing sql server correctly
Pre and post tips to installing sql server correctlyPre and post tips to installing sql server correctly
Pre and post tips to installing sql server correctlyAntonios Chatzipavlis
 
Tech Talk on Cloud Computing
Tech Talk on Cloud ComputingTech Talk on Cloud Computing
Tech Talk on Cloud ComputingITviec
 
Building Scalable Applications with Microsoft Azure
Building Scalable Applications with Microsoft AzureBuilding Scalable Applications with Microsoft Azure
Building Scalable Applications with Microsoft AzureFisnik Doko
 
SQL Server Lift & Shift on Azure - SQL Saturday 921
SQL Server Lift & Shift on Azure - SQL Saturday 921SQL Server Lift & Shift on Azure - SQL Saturday 921
SQL Server Lift & Shift on Azure - SQL Saturday 921Marco Obinu
 
Cognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & TricksCognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & TricksSenturus
 
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server ManagementWindows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server ManagementSharkrit JOBBO
 
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...Nicolas Henry
 
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft EngineerPLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft EngineerMarek Maśko
 
Oracle Enterprise Manager 12c: updates and upgrades.
Oracle Enterprise Manager 12c: updates and upgrades.Oracle Enterprise Manager 12c: updates and upgrades.
Oracle Enterprise Manager 12c: updates and upgrades.Rolta
 
Presentation desarrollos cloud con oracle virtualization
Presentation   desarrollos cloud con oracle virtualizationPresentation   desarrollos cloud con oracle virtualization
Presentation desarrollos cloud con oracle virtualizationxKinAnx
 
Understanding cloud with Google Cloud Platform
Understanding cloud with Google Cloud PlatformUnderstanding cloud with Google Cloud Platform
Understanding cloud with Google Cloud PlatformDr. Ketan Parmar
 
Ohio Devfest - Visual Analysis with GCP
Ohio Devfest - Visual Analysis with GCPOhio Devfest - Visual Analysis with GCP
Ohio Devfest - Visual Analysis with GCPWesley Workman
 
Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Antonios Chatzipavlis
 
Citrix XenServer Success
Citrix XenServer SuccessCitrix XenServer Success
Citrix XenServer SuccesseG Innovations
 
Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...
Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...
Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...LarryZaman
 

Ähnlich wie A Crash Course in SQL Server Administration for Reluctant Database Administrators (20)

Common SQL Server Mistakes and How to Avoid Them with Tim Radney
Common SQL Server Mistakes and How to Avoid Them with Tim RadneyCommon SQL Server Mistakes and How to Avoid Them with Tim Radney
Common SQL Server Mistakes and How to Avoid Them with Tim Radney
 
Stay productive_while_slicing_up_the_monolith
Stay productive_while_slicing_up_the_monolithStay productive_while_slicing_up_the_monolith
Stay productive_while_slicing_up_the_monolith
 
Exploring sql server 2016
Exploring sql server 2016Exploring sql server 2016
Exploring sql server 2016
 
Oracle database connection with the .net developers
Oracle database connection with the .net developersOracle database connection with the .net developers
Oracle database connection with the .net developers
 
Pre and post tips to installing sql server correctly
Pre and post tips to installing sql server correctlyPre and post tips to installing sql server correctly
Pre and post tips to installing sql server correctly
 
Tech Talk on Cloud Computing
Tech Talk on Cloud ComputingTech Talk on Cloud Computing
Tech Talk on Cloud Computing
 
A to z for sql azure databases
A to z for sql azure databasesA to z for sql azure databases
A to z for sql azure databases
 
Building Scalable Applications with Microsoft Azure
Building Scalable Applications with Microsoft AzureBuilding Scalable Applications with Microsoft Azure
Building Scalable Applications with Microsoft Azure
 
SQL Server Lift & Shift on Azure - SQL Saturday 921
SQL Server Lift & Shift on Azure - SQL Saturday 921SQL Server Lift & Shift on Azure - SQL Saturday 921
SQL Server Lift & Shift on Azure - SQL Saturday 921
 
Cognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & TricksCognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & Tricks
 
Windows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server ManagementWindows 2012 R2 Multi Server Management
Windows 2012 R2 Multi Server Management
 
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
 
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft EngineerPLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
 
Oracle Enterprise Manager 12c: updates and upgrades.
Oracle Enterprise Manager 12c: updates and upgrades.Oracle Enterprise Manager 12c: updates and upgrades.
Oracle Enterprise Manager 12c: updates and upgrades.
 
Presentation desarrollos cloud con oracle virtualization
Presentation   desarrollos cloud con oracle virtualizationPresentation   desarrollos cloud con oracle virtualization
Presentation desarrollos cloud con oracle virtualization
 
Understanding cloud with Google Cloud Platform
Understanding cloud with Google Cloud PlatformUnderstanding cloud with Google Cloud Platform
Understanding cloud with Google Cloud Platform
 
Ohio Devfest - Visual Analysis with GCP
Ohio Devfest - Visual Analysis with GCPOhio Devfest - Visual Analysis with GCP
Ohio Devfest - Visual Analysis with GCP
 
Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019Modernizing your database with SQL Server 2019
Modernizing your database with SQL Server 2019
 
Citrix XenServer Success
Citrix XenServer SuccessCitrix XenServer Success
Citrix XenServer Success
 
Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...
Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...
Business_Continuity_Planning_with_SQL_Server_HADR_options_TechEd_Bangalore_20...
 

Mehr von Chad Petrovay

Developing Dynamic Reports for TMS Using Crystal Reports
Developing Dynamic Reports for TMS Using Crystal ReportsDeveloping Dynamic Reports for TMS Using Crystal Reports
Developing Dynamic Reports for TMS Using Crystal ReportsChad Petrovay
 
How Clean is your Database? Data Scrubbing for all Skill Sets
How Clean is your Database? Data Scrubbing for all Skill SetsHow Clean is your Database? Data Scrubbing for all Skill Sets
How Clean is your Database? Data Scrubbing for all Skill SetsChad Petrovay
 
The Museum System & Social Media: Changing their relationship status from ‘It...
The Museum System & Social Media: Changing their relationship status from ‘It...The Museum System & Social Media: Changing their relationship status from ‘It...
The Museum System & Social Media: Changing their relationship status from ‘It...Chad Petrovay
 
The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...
The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...
The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...Chad Petrovay
 
How Clean is your database? Data scrubbing for all skills sets
How Clean is your database? Data scrubbing for all skills setsHow Clean is your database? Data scrubbing for all skills sets
How Clean is your database? Data scrubbing for all skills setsChad Petrovay
 
Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...
Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...
Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...Chad Petrovay
 
The Rest of the Collection: Using virtual objects to manage abstract objects,...
The Rest of the Collection: Using virtual objects to manage abstract objects,...The Rest of the Collection: Using virtual objects to manage abstract objects,...
The Rest of the Collection: Using virtual objects to manage abstract objects,...Chad Petrovay
 
TMS as a Remote Application
TMS as a Remote ApplicationTMS as a Remote Application
TMS as a Remote ApplicationChad Petrovay
 

Mehr von Chad Petrovay (8)

Developing Dynamic Reports for TMS Using Crystal Reports
Developing Dynamic Reports for TMS Using Crystal ReportsDeveloping Dynamic Reports for TMS Using Crystal Reports
Developing Dynamic Reports for TMS Using Crystal Reports
 
How Clean is your Database? Data Scrubbing for all Skill Sets
How Clean is your Database? Data Scrubbing for all Skill SetsHow Clean is your Database? Data Scrubbing for all Skill Sets
How Clean is your Database? Data Scrubbing for all Skill Sets
 
The Museum System & Social Media: Changing their relationship status from ‘It...
The Museum System & Social Media: Changing their relationship status from ‘It...The Museum System & Social Media: Changing their relationship status from ‘It...
The Museum System & Social Media: Changing their relationship status from ‘It...
 
The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...
The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...
The Museum System (TMS) & Researchers: Synergizing Collection and Library Inf...
 
How Clean is your database? Data scrubbing for all skills sets
How Clean is your database? Data scrubbing for all skills setsHow Clean is your database? Data scrubbing for all skills sets
How Clean is your database? Data scrubbing for all skills sets
 
Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...
Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...
Advanced Crystal Reports: Techniques for compiling Annual Reports & other sta...
 
The Rest of the Collection: Using virtual objects to manage abstract objects,...
The Rest of the Collection: Using virtual objects to manage abstract objects,...The Rest of the Collection: Using virtual objects to manage abstract objects,...
The Rest of the Collection: Using virtual objects to manage abstract objects,...
 
TMS as a Remote Application
TMS as a Remote ApplicationTMS as a Remote Application
TMS as a Remote Application
 

Kürzlich hochgeladen

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
tonesoftg
tonesoftgtonesoftg
tonesoftglanshi9
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 

Kürzlich hochgeladen (20)

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 

A Crash Course in SQL Server Administration for Reluctant Database Administrators

  • 1. Collective Imagination 2021 is a Gallery Systems Event A CRASH COURSE IN SQL SERVER ADMINISTRATION FOR RELUCTANT DATABASE ADMINISTRATORS Chad Petrovay, TMS Administrator, The Morgan Library & Museum
  • 2. Collective Imagination 2021 is a Gallery Systems Event Reluctant DBAs are those of us who haven't had formal training in administering a database and are surviving on a combination of our wits, Books Online (BOL), and technical manuals. - Josef Finsel
  • 3. Collective Imagination 2021 is a Gallery Systems Event THE RELUCTANT DBA •The goal is NOT perfection •The goal is a stable, reliable database server
  • 4. Collective Imagination 2021 is a Gallery Systems Event WHAT IS SQL SERVER? TMS (Database) Physical Server (Hardware/OS) Database Engine (Software)
  • 5. Collective Imagination 2021 is a Gallery Systems Event SERVICES • A service is an application that runs in the background • Windows Services Manager • Know how to open it • Know how to start and stop services with it
  • 6. Collective Imagination 2021 is a Gallery Systems Event BASIC TOOLS • Have an account with Local Admin Rights • Install SQL Server Management Studio (SSMS) • https://docs.microsoft.com/sql/ssms/download- sql-server-management-studio-ssms • https://sqlserverupdates.com/
  • 7. Collective Imagination 2021 is a Gallery Systems Event BEST PRACTICES Versions, Editions & Licensing
  • 8. Collective Imagination 2021 is a Gallery Systems Event SQL SERVER VERSIONS Version Release Date Support Until Extended Until TMS Version SQL Server 2008 11/6/2008 7/8/2014 7/9/2019 TMS 2014* SQL Server 2008 R2 7/20/2010 7/8/2014 7/9/2019 TMS 2014 SQL Server 2012 5/20/2012 7/11/2017 7/12/2022 TMS 2014, 2016, 2017*, 2018* SQL Server 2014 5/6/2014 7/9/2019 7/9/2024 TMS 2014, 2016, 2017, 2018 SQL Server 2016 6/1/2016 7/13/2021 7/14/2026 TMS 2016, 2017, 2018, 2020, 2021 SQL Server 2017 9/29/2017 10/11/2022 10/12/2027 TMS 2017*, 2018, 2020, 2021 SQL Server 2019 11/4/2019 1/7/2025 1/8/2030 TMS 2020, 2021 * presumed, but no longer officially supported by Gallery Systems
  • 9. Collective Imagination 2021 is a Gallery Systems Event Express • Minimal feature set • Limitations: • Lesser of 1 socket or 4 cores • 1410 MB RAM • 10 GB database • Free Standard • Lacks advanced features from Enterprise edition • Limitations: • Lesser of 4 sockets or 24 cores • 128 GB RAM • Paid Enterprise • Full feature set • Always On Availability Group • Clustering • No limitations • Paid ($$$) Developer • Same as Enterprise edition • Single user for development • Free SQL SERVER EDITIONS
  • 10. Collective Imagination 2021 is a Gallery Systems Event Core Based • Unlimited number of users/devices • Pay for the number of cores on the physical CPU • Core licenses are sold in packs of two Server + CAL • License any physical operating system running SQL server • Purchase a Client Access License (CAL) for every user/device HOW IS SQL SERVER LICENSED?
  • 11. Collective Imagination 2021 is a Gallery Systems Event RESOURCES https://sqlserverupdates.com/ https://sqlserverbuilds.blogspot.com/ https://metrixdata360.com/license-series/sql- server-licensing-explained/ Third-Party Software Compatibility PDF
  • 12. Collective Imagination 2021 is a Gallery Systems Event BEST PRACTICES Best Practices
  • 13. Collective Imagination 2021 is a Gallery Systems Event DEDICATED SERVER • Have a dedicated physical server or virtual machine for your database engine • Avoid having multiple instances of SQL Server on the same physical server or virtual machine
  • 14. Collective Imagination 2021 is a Gallery Systems Event Feature required: • Database Engine Services • Client Tools Connectivity ONLY INSTALL WHAT YOU NEED
  • 15. Collective Imagination 2021 is a Gallery Systems Event SQL SERVER AGENT • A job is a task to be executed • Can be scheduled • Can be in response to a specific event • Can be on demand • Start SQL Server Agent!!
  • 16. Collective Imagination 2021 is a Gallery Systems Event MULTIPLE DRIVES Database and Log Files TempDB Files Operating System C:
  • 17. Collective Imagination 2021 is a Gallery Systems Event MULTIPLE TEMPDB FILES • A single database file can become a bottleneck • Add 7 additional database files • Make all the files the same size, filling the drive
  • 18. Collective Imagination 2021 is a Gallery Systems Event • Use Domain accounts • Complex password • Managed Service Account (MSA) • Only make changes in SQL Server Configuration Manager SEPARATE SERVICE ACCOUNTS
  • 19. Collective Imagination 2021 is a Gallery Systems Event SECURE YOUR SA ACCOUNT 1. Change the password to a strong password: https://passwordgenerator.net 2. Rename “sa” account • Avoid “sysadmin”, “admin” and “nimda” 3. Disable the account
  • 20. Collective Imagination 2021 is a Gallery Systems Event ENABLE & CONFIGURE DATABASE MAIL • Sends emails directly from the database engine using sp_send_dbmail • Use a dedicated email address • To configure, you will need: • Email address & password • Email server address • Email server port number
  • 21. Collective Imagination 2021 is a Gallery Systems Event BEST PRACTICES Disaster Recovery
  • 22. Collective Imagination 2021 is a Gallery Systems Event SEPARATE DRIVE FOR BACKUPS • Use a network drive • Make sure your SQL Server Agent service account has read/write access to this location • Reference with a UNC path, instead of a mapped network drive
  • 23. Collective Imagination 2021 is a Gallery Systems Event RAID, snapshots, and machine images are NOT database backups!! - Chad Petrovay
  • 24. Collective Imagination 2021 is a Gallery Systems Event Full • Complete copy of the database • Allows the simplest form of database restoration Differential • Contains only changes that have occurred since the last full backup • Smaller in size • Adds steps to the restoration process Log • Contains a log of every change of data • The most complicated restoration process • Permits restoration to a specific point in time BACKUP TYPES
  • 25. Collective Imagination 2021 is a Gallery Systems Event RPO • Recovery Point Objective • Maximum length of time permitted that data can be restored from, which may or may not mean data loss. RTO • Recovery Time Objective • Targeted duration of time between the event of failure and the point where operations resume. WHAT’S YOUR NUMBER?
  • 26. Collective Imagination 2021 is a Gallery Systems Event Full • Saturday • 11PM • Retain 90 days Differential • Monday to Friday • 11PM • Retain 30 days Log • Daily • Every 15 minutes • Retain 48 hours THE MORGAN’S STRATEGY
  • 27. Collective Imagination 2021 is a Gallery Systems Event HOW TO AUTOMATE BACKUPS • Maintenance Plans • Right-click on Management » Maintenance Plans • Select Maintenance Plan Wizard • Ola Hallengren’s free backup script • https://ola.hallengren.com/ • Third Party Tool • SqlBackupAndFTP • Idera’s SQL Safe Backup
  • 28. Collective Imagination 2021 is a Gallery Systems Event TEST YOUR BACKUPS & PRACTICE RESTORES • Test restorations on a sandbox server • Develop a checklist • Document the restoration process • Periodically test the backups by performing restorations
  • 29. Collective Imagination 2021 is a Gallery Systems Event BEST PRACTICES Reliability / Performance
  • 30. Collective Imagination 2021 is a Gallery Systems Event SQL SERVER IS A MEMORY HOG • SQL Server does not release memory back to the operating system (OS) • Try to get as much memory as you can • Express: 1410 MB RAM max • Standard: 128 GB RAM max
  • 31. Collective Imagination 2021 is a Gallery Systems Event CONFIGURE MAX SERVER MEMORY • M = x - y • x = total RAM in MB • Conversion: 1 GB = 1024 MB • y = the larger of 4096 or (0.1x) • M = Max Server Memory • Set Max Server Memory in Server Properties • Assumes no additional instances or services
  • 32. Collective Imagination 2021 is a Gallery Systems Event • Disable: SQL Server Telemetry • Disable: SQL Server CEIP service • Automatic: SQL Server Agent SERVICES
  • 33. Collective Imagination 2021 is a Gallery Systems Event DATABASE & JOB OWNERSHIP • Avoid ownership problems • Change owner to your renamed “sa” account
  • 34. Collective Imagination 2021 is a Gallery Systems Event SQL SERVER AGENT ALERT SYSTEM • Enable the Alert System • Specify profile from Database Mail • Add Operators • Consider using a distribution list to notify multiple people simultaneously
  • 35. Collective Imagination 2021 is a Gallery Systems Event ADD NOTIFICATIONS TO JOBS • Specify an operator • Specify when to be notified: • On failure • On success • On completion
  • 36. Collective Imagination 2021 is a Gallery Systems Event ADD ALERTS TO SQL SERVER AGENT • Enable Alerts for … • Severity 17 and higher • Error number 823, 824, 825 • https://www.brentozar.com/go/alert • Test alerts using RAISERROR
  • 37. Collective Imagination 2021 is a Gallery Systems Event After this change, you’ll be able to sleep at night knowing your SQL Server is working well. Or you’ll be awakened constantly by the sound of your phone because SQL isn’t working well. Either way, you’re a winner. - Brent Ozar
  • 38. Collective Imagination 2021 is a Gallery Systems Event BEST PRACTICES Server/Database Health
  • 39. Collective Imagination 2021 is a Gallery Systems Event PATCHES & UPDATES • Keep your Operating System up to date • Keep your SQL Server Instance up to date • https://sqlserverupdates.com/ • https://sqlserverbuilds.blogspot.com/
  • 40. Collective Imagination 2021 is a Gallery Systems Event CHECK DATABASE INTEGRITY • SQL: DBCC CHECKDB • DBConfig • Management » Database » Run DBCC CheckDB() • Maintenance Plans • Check Database Integrity • Ola Hallengren’s SQL Server Maintenance Solution
  • 41. Collective Imagination 2021 is a Gallery Systems Event INDEX MAINTAIN INDEX & COLUMN STATISTICS • DBConfig • Management » Database » Update DB Statistic • Maintenance Plans • Reorganize Index, Rebuild Index, Update Statistics • Ola Hallengren’s SQL Server Maintenance Solution
  • 42. Collective Imagination 2021 is a Gallery Systems Event A LITTLE CLEANUP • Only Shrink Database when needed • Remove older data from MSDB • Job History • Backup History • Database Mail Sent Items
  • 43. Collective Imagination 2021 is a Gallery Systems Event BEST PRACTICES Tips & a great feature
  • 44. Collective Imagination 2021 is a Gallery Systems Event GETTING HELP • Stack Exchange is a network of Q-and-A website • Stack Overflow • Database Administrators • Follow the rules • Proactively build reputation
  • 45. Collective Imagination 2021 is a Gallery Systems Event CHANGING THEMES IN SSMS • Select Themes • Tools » Options » Environment » General • A Dark Theme option is suppressed in the UI • Google your version of SSMS for instructions for making it available
  • 46. Collective Imagination 2021 is a Gallery Systems Event XP_CMDSHELL STORED PROCEDURE • Execute DOS commands directly from the database engine using xp_cmdshell • Secure your “sa” account before enabling • Who remembers DOS?
  • 47. Collective Imagination 2021 is a Gallery Systems Event Fix your security and then turn on xp_cmdshell. It’s a wonderful tool and you’re missing out on it because of bad security practices and myth. - Jeff Moden
  • 48. Collective Imagination 2021 is a Gallery Systems Event XP_CMDSHELL STORED PROCEDURE • Execute DOS commands directly from the database engine using xp_cmdshell • Secure your “sa” account before enabling • Who remembers DOS?
  • 49. Collective Imagination 2021 is a Gallery Systems Event THE RELUCTANT DBA •The goal is NOT perfection •The goal is a stable, reliable database server
  • 50. Collective Imagination 2021 is a Gallery Systems Event Q & A Chad Petrovay cpetrovay@themorgan.org chad@petrovay.com http://www.petrovay.com/tag/reluctant-dba/