SlideShare a Scribd company logo
SQL Server Tips From The Field
Three Things IT Leaders Need to Know…
Web: www.sqlwatchmen.com
Email: Jim.Murphy@sqlwatchmen.com
Twitter: @SQLMurph
Jim Murphy
CEO
SQLWatchmen, LLC.
1. Database Performance and Speed Matter
2
[ ]
1. Database Performance and Speed Matter
3
2. Backups and Disaster Recovery
Plans are not all created equal[ ]
[ ]
1. Database Performance and Speed Matter
4
2. Backups and Disaster Recovery
Plans are not all created equal[
3. High Availability / Disaster Recovery (HA/DR) is a
set of tools used for Proactive Disaster Protection
]
[ ]
[ ]
Who is SQLWatchmen?
● DBA Services – tuning, disaster recovery
planning, maintenance
● SQL Programming - views, SPs, triggers
● Integration Services - SSIS for trying
systems together
● Reporting - SSRS for custom analytics to
fill business needs
5
● Local to Austin
● Can serve as Remote / Fractional DBAs
● SQL Server Specialists (We work alongside
general tech consulting firms)
● Compliance (HIPPA, SOX, SOC2)
How can we assist you?
Database Performance and Speed Matter
66
7
1. Identifying the problem & why you should
care
Problem:
• The database is the foundation of the entire
application or corporate stack. If the database is
slow…
8
1. Identifying the problem & why you should
care
Problem:
• The database is the foundation of the entire
application or corporate stack. If the database is
slow…
9
1. Identifying the problem & why you should
care
Problem:
• The database is the foundation of the entire
application or corporate stack. If the database is
slow…
• … Customers frustrated. Hurts reputation
• … Employees frustrated. Hourglasses waste time
10
2. There are many reasons for databases to
get slower over time (i.e. bottlenecks)
Cause:
• Bottleneck is usually:
• CPU
• Memory
• Disk IO
• Network
11
3. Slow-downs happen when queries
are inefficient
●More users
●More data volume
●More complex queries
12
4. Which solution is faster & cheaper?
Solution:
A. Upgrade hardware and migrate.
B. Figure out which queries are the biggest resource
hogs and make adjustments.
That doesn’t sound
cheap!
So offending queries use
far fewer resources.
13
5. Performance Tuning gets to the root
cause of slowdowns
●Benefit = Lower Cost
●Benefit = Tuning is more effective at improving
speed & performance
14
● SQL Server processes query; makes Execution Plan
● Execution Plan cached; remembered next time
● Ad hoc (one-time, on-demand) queries can fill up the cache with lots of these (inefficient)
● Stored Procedures reuse pre-cached Execution Plans (more efficient)
6. Understanding how Queries are processed
15
Demo
Measuring results with Perfmon:
MSSQL:SQL Statistics -> Batch Requests/sec
Backups and Disaster
Recovery Plans are not
all created equal
16
17
1. Identifying the problem & why you should
care
●What’s the difference between a backup and a
disaster recovery plan?
●Backup Plan = Backups work
●Disaster Recovery Plan = Data recovered
18
2. There are lots of different technologies you
might consider using:
●VM Snapshots
●SAN Replication
●Volume Shadow Copy
●VEEAM
●SQL Dump Files – Microsoft recommended
19
3. Transaction Log explained
• Diary of data changes
• Diary won’t ‘clear’ (Truncate) and be reused until it is
backed up (if database in FULL mode)
• T-Log (.LDF file) will grow and grow until drive fills up
• DANGER! Full drive = corrupt database (and also bring it
offline)!
20
4. Transaction Log explained (continued)
• FULL backup hurts performance
• Saves off all data pages with valid data on it
• Locks tables and indexes to access up-to-date data
• T-Log backup DOES NOT hurt performance
• T-Log is circular in usage. Segments (VLF)
• T-Log backup backs up each VLF & “truncates” T-Log
• Doesn’t lock tables
21
5. There are also 2 different recovery modes
to consider:
SIMPLE
• Only non-production
• Uses Transaction Log for current
transactions only.
• T-Log only grows if a long
transaction with lots of data
changes runs.
• No point-in-time recovery (can
only recover to most recent FULL
or Differential backup).
FULL
• Use for all Production databases.
• Keeps T-Log as diary for all data
changes until T-Log is backed up (and
also ‘replicated’ if an HA/DR
technology is configured).
• T-Log will grow until drive is filled if
not backed up.
• Can perform point-in-time recovery
(restore to an exact millisecond
before a disaster so no data is lost).
22
6. An example of Point in Time Recovery
Image Source: https://sqlbak.com/blog/sql-server-backup-and-restore/
23
PRO TIP
If T-Log backup is getting too big,
and you can’t backup or shrink
- Switch your Recovery Mode to Simple*[ ]
24
Demo
High Availability / Disaster Recovery (HA/DR)
is a set of procedures and methods used
for proactive disaster protection
25
26
1. Identifying the problem & why you should
care
Reasons why you might want to consider HA/DR
for your company
●What does High Availability mean?
●What is Disaster Recovery in this context?
●What is AlwaysOn?
●What are Availability Groups?
27
2. Solutions involve removing the single
point of failure
●Clustering - redundant hardware
●RAID - redundant individual disks
●“Replication” - redundant databases
○ What are the limitations?
28
3. Problems that arise with “Replication”
methods
Transactional
Replication
MirroringLog Shipping
• No automatic failover.
• Secondary DB is not
really Online*.
• Single DB solution.
• Secondary offline
while restoring T-Logs.
• Secondary database is
not Online.
• Single Mirror/ Secondary
only.
• SNAC/Failover Partner
in connection string.
What will AlwaysOn Solve?
• No automatic failover.
• Major headache.
o Higher
administration.
o Republish articles,
etc.
o Complicated
troubleshooting
29
4. AlwaysOn Solves World Hunger!
…and peace on earth and goodwill toward men.
● Automatic Failover
● Multiple Replicas (secondaries) – and readable!
● “Replication” - redundant databases
○ Offload Backups, Reporting, etc.
● Availability Groups - assists with using multiple DBs
● Lower administrative costs
● Plus more!
30
5. There are a few requirements to consider
●Enterprise Edition
●AD for WSFC
●Nodes must be in the same domain
31
6. HA, DR, or Both?
● Synchronous
● Asynchronous
Sync Async
Legend
32
7. Listener (Virtual
Network Name)
Node 1 Node 2
DENALI02 DENALI03
VNN
Node 1 Node 2
33
Demo
What’s New in SQL Server 2016?
35
What’s new in 2016?
• Columnstore indexes for big data
○ 30x in-memory OLTP speed
○ 100x in-memory Columnstore speed
• Query Store – better diagnostics for a DBA
• Stretch databases (Auto-archiving)
• Always Encrypted (at rest, in motion, cloud)
• Temporal DB – track historical changes
• Row-level security.
• …and a lot more.
SQL Server is beautiful…
but it can be a beast[ ]
36
You don’t need new hardware
- Tune for Performance[ ]
37
Keep your backups secure.
Disaster recovery methods
should be tested!
[ ]
38
Next Steps
● For another slide deck that delves deeper on SQL backups -
visit http://www.sqlwatchmen.com/contact-us
● To check out if a Database Diagnostic Exam is right for you -
visit http://www.sqlwatchmen.com/services/database-
diagnostic-analysis
39
Treated properly, MS SQL Server can
contribute a solid foundation to the
efforts of your business ][
40
Let us help you,
Protect Your Data ][
41
SQL Server Tips From The Field
Three Things IT Leaders Need to Know…
Web: www.sqlwatchmen.com
Email: Jim.Murphy@sqlwatchmen.com
Twitter: @SQLMurph
Jim Murphy
CEO
SQLWatchmen, LLC.
http://www.sqlwatchmen.com/services/database-diagnostic-analysis

More Related Content

ODP
M|18 Where and How to Optimize for Performance
PDF
A Backup Today Saves Tomorrow
PDF
Global Data Replication with Galera for Ansell Guardian®
PDF
DB2 10 & 11 for z/OS System Performance Monitoring and Optimisation
PDF
Geographically Distributed PostgreSQL
PDF
Perfect trio : temporal tables, transparent archiving in db2 for z_os and idaa
ODP
Time For DIME
PDF
Life And Times Of An Address Space
M|18 Where and How to Optimize for Performance
A Backup Today Saves Tomorrow
Global Data Replication with Galera for Ansell Guardian®
DB2 10 & 11 for z/OS System Performance Monitoring and Optimisation
Geographically Distributed PostgreSQL
Perfect trio : temporal tables, transparent archiving in db2 for z_os and idaa
Time For DIME
Life And Times Of An Address Space

What's hot (20)

PDF
Best Practices For Optimizing DB2 Performance Final
ODP
Gluster Data Tiering
DOC
Sasi-AIX 3+ Resume
PDF
Performance Analysis and Troubleshooting Methodologies for Databases
PDF
High Availability Options for DB2 Data Centre
PDF
Using Release(deallocate) and Painful Lessons to be learned on DB2 locking
PDF
Munich 2016 - Z011597 Martin Packer - How To Be A Better Performance Specialist
PDF
Db2 recovery IDUG EMEA 2013
PPTX
ClustrixDB: how distributed databases scale out
PDF
DbB 10 Webcast #3 The Secrets Of Scalability
PDF
Realtime Indexing for Fast Queries on Massive Semi-Structured Data
PPTX
Maximizing performance via tuning and optimization
PPT
Building High Performance MySql Query Systems And Analytic Applications
PDF
Maximum Availability Architecture with Fusion Middleware 12c and Oracle Datab...
ODP
DB2 Through My Eyes
PDF
DB2 for z/OS Bufferpool Tuning win by Divide and Conquer or Lose by Multiply ...
PDF
The architecture of SkySQL
PDF
DB2 for z/OS Real Storage Monitoring, Control and Planning
PDF
I Know What You Did THIS Summer
PDF
IDUG NA 2014 / 11 tips for DB2 11 for z/OS
Best Practices For Optimizing DB2 Performance Final
Gluster Data Tiering
Sasi-AIX 3+ Resume
Performance Analysis and Troubleshooting Methodologies for Databases
High Availability Options for DB2 Data Centre
Using Release(deallocate) and Painful Lessons to be learned on DB2 locking
Munich 2016 - Z011597 Martin Packer - How To Be A Better Performance Specialist
Db2 recovery IDUG EMEA 2013
ClustrixDB: how distributed databases scale out
DbB 10 Webcast #3 The Secrets Of Scalability
Realtime Indexing for Fast Queries on Massive Semi-Structured Data
Maximizing performance via tuning and optimization
Building High Performance MySql Query Systems And Analytic Applications
Maximum Availability Architecture with Fusion Middleware 12c and Oracle Datab...
DB2 Through My Eyes
DB2 for z/OS Bufferpool Tuning win by Divide and Conquer or Lose by Multiply ...
The architecture of SkySQL
DB2 for z/OS Real Storage Monitoring, Control and Planning
I Know What You Did THIS Summer
IDUG NA 2014 / 11 tips for DB2 11 for z/OS
Ad

Similar to Sql server tips from the field (20)

PPTX
Sql Server tips from the field
PPT
Collaborate 2011-tuning-ebusiness-416502
PDF
Evolution of DBA in the Cloud Era
PDF
collab2011-tuning-ebusiness-421966.pdf
PDF
EDB Postgres DBA Best Practices
 
PPTX
Performance Tuning
PPTX
Cognos Performance Tuning Tips & Tricks
PDF
Proper Care and Feeding of a MySQL Database for Busy Linux Administrators
PDF
The Proper Care and Feeding of a MySQL Database for Busy Linux Admins -- SCaL...
PDF
Postgresql in Education
PDF
Parallel Batch Performance Considerations
PDF
My sql cluster case study apr16
PDF
DatEngConf SF16 - Apache Kudu: Fast Analytics on Fast Data
PDF
Winning performance challenges in oracle standard editions
PPTX
Scaling apps for the big time
PPTX
Taking Splunk to the Next Level - Architecture Breakout Session
PPTX
IBM Insight 2013 - Aetna's production experience using IBM DB2 Analytics Acce...
PDF
Why advanced monitoring is key for healthy
PPTX
Taking Splunk to the Next Level - Architecture
PPTX
Taking Splunk to the Next Level - Architecture Breakout Session
Sql Server tips from the field
Collaborate 2011-tuning-ebusiness-416502
Evolution of DBA in the Cloud Era
collab2011-tuning-ebusiness-421966.pdf
EDB Postgres DBA Best Practices
 
Performance Tuning
Cognos Performance Tuning Tips & Tricks
Proper Care and Feeding of a MySQL Database for Busy Linux Administrators
The Proper Care and Feeding of a MySQL Database for Busy Linux Admins -- SCaL...
Postgresql in Education
Parallel Batch Performance Considerations
My sql cluster case study apr16
DatEngConf SF16 - Apache Kudu: Fast Analytics on Fast Data
Winning performance challenges in oracle standard editions
Scaling apps for the big time
Taking Splunk to the Next Level - Architecture Breakout Session
IBM Insight 2013 - Aetna's production experience using IBM DB2 Analytics Acce...
Why advanced monitoring is key for healthy
Taking Splunk to the Next Level - Architecture
Taking Splunk to the Next Level - Architecture Breakout Session
Ad

More from JoAnna Cheshire (20)

PDF
The Future of Work
PDF
Catching the Next Train
PPTX
The SharePoint Migration Playbook
PDF
Introduction to SharePoint Framework
PPTX
PowerShell + SharePoint Online - An Admin's Guide
PDF
Artificial Intelligence & Machine Learning - A CIOs Perspective
PDF
Modernizing Data Management
PPTX
Microsoft and Enterprise Search
PPTX
Introduction to Microsoft Teams and Office 365 groups
PDF
Cybersecurity crisis management a prep guide
PPTX
Accelerate your business with flow
PPTX
Building applications for your business using power apps and flow
PPTX
The Decomposition Dilemma
PPTX
Not "If" but "When"
PDF
Defending against Ransomware and what you can do about it
PDF
The New Convergence of Data; the Next Strategic Business Advantage
PDF
Healthcare - An Identity Thief's SuperStore
PDF
Microservices Architectural Maturity Matrix, Token Based Authority, API Gatew...
PPT
Define Yourself! Crafting a Wonder Woman's Brand
PDF
Today's Cyber Challenges: Methodology to Secure Your Business
The Future of Work
Catching the Next Train
The SharePoint Migration Playbook
Introduction to SharePoint Framework
PowerShell + SharePoint Online - An Admin's Guide
Artificial Intelligence & Machine Learning - A CIOs Perspective
Modernizing Data Management
Microsoft and Enterprise Search
Introduction to Microsoft Teams and Office 365 groups
Cybersecurity crisis management a prep guide
Accelerate your business with flow
Building applications for your business using power apps and flow
The Decomposition Dilemma
Not "If" but "When"
Defending against Ransomware and what you can do about it
The New Convergence of Data; the Next Strategic Business Advantage
Healthcare - An Identity Thief's SuperStore
Microservices Architectural Maturity Matrix, Token Based Authority, API Gatew...
Define Yourself! Crafting a Wonder Woman's Brand
Today's Cyber Challenges: Methodology to Secure Your Business

Recently uploaded (20)

PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
cuic standard and advanced reporting.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
A Presentation on Artificial Intelligence
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
KodekX | Application Modernization Development
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Machine learning based COVID-19 study performance prediction
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Encapsulation theory and applications.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Building Integrated photovoltaic BIPV_UPV.pdf
cuic standard and advanced reporting.pdf
Review of recent advances in non-invasive hemoglobin estimation
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
A Presentation on Artificial Intelligence
Encapsulation_ Review paper, used for researhc scholars
20250228 LYD VKU AI Blended-Learning.pptx
KodekX | Application Modernization Development
The Rise and Fall of 3GPP – Time for a Sabbatical?
Digital-Transformation-Roadmap-for-Companies.pptx
Machine learning based COVID-19 study performance prediction
Spectral efficient network and resource selection model in 5G networks
Encapsulation theory and applications.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
NewMind AI Weekly Chronicles - August'25 Week I
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...

Sql server tips from the field

  • 1. SQL Server Tips From The Field Three Things IT Leaders Need to Know… Web: www.sqlwatchmen.com Email: Jim.Murphy@sqlwatchmen.com Twitter: @SQLMurph Jim Murphy CEO SQLWatchmen, LLC.
  • 2. 1. Database Performance and Speed Matter 2 [ ]
  • 3. 1. Database Performance and Speed Matter 3 2. Backups and Disaster Recovery Plans are not all created equal[ ] [ ]
  • 4. 1. Database Performance and Speed Matter 4 2. Backups and Disaster Recovery Plans are not all created equal[ 3. High Availability / Disaster Recovery (HA/DR) is a set of tools used for Proactive Disaster Protection ] [ ] [ ]
  • 5. Who is SQLWatchmen? ● DBA Services – tuning, disaster recovery planning, maintenance ● SQL Programming - views, SPs, triggers ● Integration Services - SSIS for trying systems together ● Reporting - SSRS for custom analytics to fill business needs 5 ● Local to Austin ● Can serve as Remote / Fractional DBAs ● SQL Server Specialists (We work alongside general tech consulting firms) ● Compliance (HIPPA, SOX, SOC2) How can we assist you?
  • 6. Database Performance and Speed Matter 66
  • 7. 7 1. Identifying the problem & why you should care Problem: • The database is the foundation of the entire application or corporate stack. If the database is slow…
  • 8. 8 1. Identifying the problem & why you should care Problem: • The database is the foundation of the entire application or corporate stack. If the database is slow…
  • 9. 9 1. Identifying the problem & why you should care Problem: • The database is the foundation of the entire application or corporate stack. If the database is slow… • … Customers frustrated. Hurts reputation • … Employees frustrated. Hourglasses waste time
  • 10. 10 2. There are many reasons for databases to get slower over time (i.e. bottlenecks) Cause: • Bottleneck is usually: • CPU • Memory • Disk IO • Network
  • 11. 11 3. Slow-downs happen when queries are inefficient ●More users ●More data volume ●More complex queries
  • 12. 12 4. Which solution is faster & cheaper? Solution: A. Upgrade hardware and migrate. B. Figure out which queries are the biggest resource hogs and make adjustments. That doesn’t sound cheap! So offending queries use far fewer resources.
  • 13. 13 5. Performance Tuning gets to the root cause of slowdowns ●Benefit = Lower Cost ●Benefit = Tuning is more effective at improving speed & performance
  • 14. 14 ● SQL Server processes query; makes Execution Plan ● Execution Plan cached; remembered next time ● Ad hoc (one-time, on-demand) queries can fill up the cache with lots of these (inefficient) ● Stored Procedures reuse pre-cached Execution Plans (more efficient) 6. Understanding how Queries are processed
  • 15. 15 Demo Measuring results with Perfmon: MSSQL:SQL Statistics -> Batch Requests/sec
  • 16. Backups and Disaster Recovery Plans are not all created equal 16
  • 17. 17 1. Identifying the problem & why you should care ●What’s the difference between a backup and a disaster recovery plan? ●Backup Plan = Backups work ●Disaster Recovery Plan = Data recovered
  • 18. 18 2. There are lots of different technologies you might consider using: ●VM Snapshots ●SAN Replication ●Volume Shadow Copy ●VEEAM ●SQL Dump Files – Microsoft recommended
  • 19. 19 3. Transaction Log explained • Diary of data changes • Diary won’t ‘clear’ (Truncate) and be reused until it is backed up (if database in FULL mode) • T-Log (.LDF file) will grow and grow until drive fills up • DANGER! Full drive = corrupt database (and also bring it offline)!
  • 20. 20 4. Transaction Log explained (continued) • FULL backup hurts performance • Saves off all data pages with valid data on it • Locks tables and indexes to access up-to-date data • T-Log backup DOES NOT hurt performance • T-Log is circular in usage. Segments (VLF) • T-Log backup backs up each VLF & “truncates” T-Log • Doesn’t lock tables
  • 21. 21 5. There are also 2 different recovery modes to consider: SIMPLE • Only non-production • Uses Transaction Log for current transactions only. • T-Log only grows if a long transaction with lots of data changes runs. • No point-in-time recovery (can only recover to most recent FULL or Differential backup). FULL • Use for all Production databases. • Keeps T-Log as diary for all data changes until T-Log is backed up (and also ‘replicated’ if an HA/DR technology is configured). • T-Log will grow until drive is filled if not backed up. • Can perform point-in-time recovery (restore to an exact millisecond before a disaster so no data is lost).
  • 22. 22 6. An example of Point in Time Recovery Image Source: https://sqlbak.com/blog/sql-server-backup-and-restore/
  • 23. 23 PRO TIP If T-Log backup is getting too big, and you can’t backup or shrink - Switch your Recovery Mode to Simple*[ ]
  • 25. High Availability / Disaster Recovery (HA/DR) is a set of procedures and methods used for proactive disaster protection 25
  • 26. 26 1. Identifying the problem & why you should care Reasons why you might want to consider HA/DR for your company ●What does High Availability mean? ●What is Disaster Recovery in this context? ●What is AlwaysOn? ●What are Availability Groups?
  • 27. 27 2. Solutions involve removing the single point of failure ●Clustering - redundant hardware ●RAID - redundant individual disks ●“Replication” - redundant databases ○ What are the limitations?
  • 28. 28 3. Problems that arise with “Replication” methods Transactional Replication MirroringLog Shipping • No automatic failover. • Secondary DB is not really Online*. • Single DB solution. • Secondary offline while restoring T-Logs. • Secondary database is not Online. • Single Mirror/ Secondary only. • SNAC/Failover Partner in connection string. What will AlwaysOn Solve? • No automatic failover. • Major headache. o Higher administration. o Republish articles, etc. o Complicated troubleshooting
  • 29. 29 4. AlwaysOn Solves World Hunger! …and peace on earth and goodwill toward men. ● Automatic Failover ● Multiple Replicas (secondaries) – and readable! ● “Replication” - redundant databases ○ Offload Backups, Reporting, etc. ● Availability Groups - assists with using multiple DBs ● Lower administrative costs ● Plus more!
  • 30. 30 5. There are a few requirements to consider ●Enterprise Edition ●AD for WSFC ●Nodes must be in the same domain
  • 31. 31 6. HA, DR, or Both? ● Synchronous ● Asynchronous Sync Async Legend
  • 32. 32 7. Listener (Virtual Network Name) Node 1 Node 2 DENALI02 DENALI03 VNN Node 1 Node 2
  • 34. What’s New in SQL Server 2016?
  • 35. 35 What’s new in 2016? • Columnstore indexes for big data ○ 30x in-memory OLTP speed ○ 100x in-memory Columnstore speed • Query Store – better diagnostics for a DBA • Stretch databases (Auto-archiving) • Always Encrypted (at rest, in motion, cloud) • Temporal DB – track historical changes • Row-level security. • …and a lot more.
  • 36. SQL Server is beautiful… but it can be a beast[ ] 36
  • 37. You don’t need new hardware - Tune for Performance[ ] 37
  • 38. Keep your backups secure. Disaster recovery methods should be tested! [ ] 38
  • 39. Next Steps ● For another slide deck that delves deeper on SQL backups - visit http://www.sqlwatchmen.com/contact-us ● To check out if a Database Diagnostic Exam is right for you - visit http://www.sqlwatchmen.com/services/database- diagnostic-analysis 39
  • 40. Treated properly, MS SQL Server can contribute a solid foundation to the efforts of your business ][ 40
  • 41. Let us help you, Protect Your Data ][ 41
  • 42. SQL Server Tips From The Field Three Things IT Leaders Need to Know… Web: www.sqlwatchmen.com Email: Jim.Murphy@sqlwatchmen.com Twitter: @SQLMurph Jim Murphy CEO SQLWatchmen, LLC. http://www.sqlwatchmen.com/services/database-diagnostic-analysis