Category Archives: SQL Administration

The SQL Administration category groups articles focused on MS SQL Server, specifically server (database, tables) administration, maintenance, and troubleshooting.

Don’t miss out from category:

Data Warehouse – Cost (Onprem vs cloud) ? Project Documentation and How to Manage a Project

A data warehouse is a centralized repository where company-wide data is consolidated and stored in a format that enables clear, accurate, and user-friendly reporting in tools such as Excel, Power BI, or other analytical platforms. At some point in every company’s lifecycle, you inevitably realize that you are operating too many business systems and facing… Read More »

Resource Governor – Configuration, Resource Pools, Workload Groups

Resource Governor is one of the SQL Server enterprise features that are not available in any other edition. If you are interested in various limitations across editions, I have summarized them in the article SQL Server Installation – Planning, HW and SW Requirements. If you are experiencing performance problems and have tried various optimization and… Read More »

SQL Indexes – Indexing Theory Simply, Balanced Tree, Heaps

Correct table indexing in SQL Server is a base for good database performance during querying. You need to understand how SQL Server stores data into tables/indexes if you want to create appropriate sql indexes. It is also important to know how to approach these data correctly during querying. How Does SQL Server Organize Data Physically?… Read More »

SQL Collation – How to Change Collation of Table Column

While installing SQL Server, one of the parameters that is needed to be set during installation is Server collation. It is a parameter influencing the way in which SQL stores non-Unicode data. We may choose SQL Collation CZECH_CI_AS in Czech environments. While starting a database, we can also select collation that can be different to… Read More »

SQL | Triggers in SQL Server – Definition, Types, Syntax and Examples

A trigger is a database object (procedure) that works as a watchdog for certain event. Using database triggers we can catch this event and initiate some additional action – such as logging or rejecting the action. Trigger – event that initiates the action What are triggers used for? Triggers are used mainly for auditing objects… Read More »