Monday, November 28, 2022
Sunday, November 27, 2022
SQL Server Architecture - Learning
Some of the SQL Server Architecture related topics.
P:- Physical and Logical Architecture.
E:- Engines (All Engines related to MSSQL RDBMS)
(While reading this you can also find understanding about SQL and Agent Error Logs)
N:- Native backup Types and Monitoring tools & Network Protocols.
(While reading this you can also find understanding about Begin Tran, Implicit/Explicit Transactions).
S:- System Databases
Regards
Amit Vaid
Thursday, November 24, 2022
SQL Server 'GUAVA' Features
This article, Coming soon..!
Monday, November 21, 2022
SQL Server Performance Peanuts....!
Just to share major components to find performance bottlenecks. Read this article for quick reference.
P - PerfMon, Major counter to look at.
Buffer Cache Hit Ratio.
Page Life Expectancy.
Memory Available vs Target.
Disk IO read/write.
CPU Utilization.
Total vs Target Memory etc.
E - Enabling Performance Features, MaxDOP, CPU and Memory Configurations.....
A - Analyse High CPU Queries/SPROCs and Analyse Execution plans for Missing Indexes.
N - NDF files/Secondary Files - We can plan to add another Filegroup and move large tables to new Filegroups as For example: DataFile2.ndf
, DataFile3.ndf
, and DataFile4.ndf
, can be created on three disk drives and assigned to the filegroup "SecondaryFileGroup". A table can then be created specifically on this filegroup. Queries for data from the table will be spread across the three disks; it will improve performance.
U - Update Statistics, we can disable Auto Update Stats Setting and run the Update Stats During Off hours.
T - Transaction Logs (In this Category we can reduce the number of virtual Logs).
S - Simple Recovery Model (When we switch to Simple Recovery its minimally logged/Only Page allocations, hence improve performance.
However, there is no point-in-time recovery/No Log Backup can be taken as disadvantage.
Best Regards
Amit Vaid
Shifting Blog
Respected All,
This is to announce that we are planning to shift from our existing blog from WordPress to
amit-sqldbasupport.Blogspot.com
We will keep you posted on the same.
Best Regards
Amit Vaid
amitvaid81@gmail.com
Sunday, November 20, 2022
SQL Server Architecture
For Beginners
Two things to understand first in terms of understand SQL Server Architecture.....
A. Physical and Logical Architecture
B. Recovery Models
From Experts, their opinion and suggestion would be considered in regards to improve this article even more.
Thanks with Regards
Amit Vaid (Author)