MSSQL Query Blog

Differences Between Truncate and Delete in SQL Server

Hello everyone, In this article, I will give information about the differences between Truncate and Delete in SQL Server. We’ve all wondered about the differences between Truncate and Delete, which we all use in SQL Server. Both commands delete the data inside the table, not the structural content of the...

What is Union in SQL Server? How is it used?

Hello everyone, In this article, I will try to give information about what is Union in SQL Server and how it is used. In SQL Server, Union is an operator that joins the result set of two or more SELECT queries. The union operator removes duplicate rows in the result...

Where is Trigger Used Most in SQL Server?

Hello everyone, In this article, I will try to give information about where Triggers are used most in SQL Server. Triggers are used in SQL Server to automatically execute a set of SQL statements or stored procedures when specific database events occur, such as INSERT, UPDATE, or DELETE operations on...

How to Fix Configuration Manager Not Found in SQL Server

Hello everyone, In this article, I will talk about how to find a solution to the problem that Configuration Manager cannot be found in SQL Server. In some cases, we cannot find it when we click the start button and search for SQL Server Configuration Manager. There is another way...

How Much RAM Does Which Database Use in SQL Server?

Hello everyone, In this article, I will try to give information about which database uses how much RAM in SQL Server. In SQL Server, you may want to know how much RAM each database uses in some cases. You can easily do this using the code below. SELECT [DatabaseName] =...

Don`t copy text!