01 Install and Configure SQL Server
01 Install and Configure SQL Server
Module 1 Overview
Installation Decisions Design the Storage for New Databases
DAS versus SAN Consider solid state storage Free, unsupported tools are available to help test I/O workloads:
SQLIO disk subsystem benchmark tool SQLIOSIM
SQL Server 2012 is supported on Windows Server 2012 core and Windows Server 2008 R2 core
No need to memorize all the combinations for the certification exam
Specialized Edition(s)
Web
Breadth Editions
Express Developer
DEMO
Specifying Collation at the Instance, Database, Column and Query Levels
Drive Layout: Design Windows File System for Expected I/O Patterns
Separate I/O activity on systems with heavy workloads:
OS vs. data file(s) vs. log file Consider separating TempDB workload Consider adding multiple data files to TempDB
Use appropriate RAID levels and parity when appropriate Consider adding multiple data files to TempDB for large workloads
Maintenance
Smaller units of data backed up/restored, indexes reorganized/rebuilt
DEMO
Creating a Database with an Advanced Design
Methods
GUI Code
Growth Monitoring
If/when to shrink or grow Monitoring tools and techniques
Code in agent jobs Performance object alert Management Data Warehouse Catalogs and DMVs
sys.database_files sys.dm_os_volume_stats
Stored procedures
sp_SpaceUsed sp_Databases
DEMO
Growing File Size Manually Using the GUI and Code
Created Account
Machine Local Domain
General rule: create a separate account for each service, for each instancereally!
DEMO
Changing Service Account Assignment