It is a setting made on windows so that SQL Server can work with higher performance. This setting can be made on Windows Server …
Read More »MSSQL
What is Contained Database and How To Create
We mentioned the Contained Database in our article titled “How To Move Logins To Another Instance (sp_help_revlogin)“. A Contained Database is a type of …
Read More »How To Move Logins To Another Instance(sp_help_revlogin)
If you do not use a contained database, you must also move your logins when you move the database to another instance. You can …
Read More »How To Create a Login On SQL Server(Manage Logins)
From the Security tab, right-click on Logins and click on new login. In the window that opens, we give a name to Login from …
Read More »Optimistic and Pessimistic Concurrency Control
If you want to make a change in more than one session database at the same time, the control to prevent sessions from adversely …
Read More »Lock Compatibility On SQL Server
Lock Compatibility provides the necessary control when multiple transactions have the same lock request (row, page). If the resource is previously locked by a …
Read More »SQL Server Lock Types
SQL Server implements different types of locks that determine how concurrent query requests access the data. For example, imagine that one user wants to …
Read More »PAGELATCH_EX and PAGELATCH_SH Wait Types and Hash Partition On SQL Server
The PAGELATCH_EX and PAGELATCH_SH wait types are errors that occur when writing to the same page in memory at the same time. These errors …
Read More »Backup Restore On SQL Server
We can use Backup Restore for many operations. Below you can find the most common reasons for using it. 1. To get a regular …
Read More »Sliding Window-Switch Partition-Split Range-Merge Range
Before you read this article, you need to know what the concept of partition is and how can we create partition for a table. …
Read More »