Overblog All blogs Top blogs Jobs, Education & Studies
Follow this blog Administration + Create my blog
MENU
Advertising
Advertising

SQL Server Terminology

SQL Server Terminology Database – A database is an organized collection of data for one or more purposes, usually in digital form. Relational Database – A relational database stores data in separate tables instead of placing all data in one large table.....

Read more

script for spid high cpu memory

Below is the query that tells the information about the SPID which has high Memory Usage in SQL Server. SELECT mg.granted_memory_kb, mg.session_id, t.text, qp.query_plan FROM sys.dm_exec_query_memory_grants AS mg CROSS APPLY sys.dm_exec_sql_text(mg.sql_handle)...

Read more

Advertising

Types of Pages in SQL Server

Types of Pages in SQL Server Pages are the basic storage unit of SQL Server. There are several pages available in SQL Server. Each page can store upto 8KB of data. Below are the various types of pages available in SQL Servers: Data Pages Data rows with...

Read more