Category: SQL Server

0

Learn How to use SQL Server BETWEEN Operator

SQL BETWEEN operator is used to get values between a range of data inputs. We can use SQL BETWEEN operator with SELECT, UPDATE, INSERT and DELETE statements. Range can be defined based on text, date or numbers values. Here i...

How to Change Authentication Mode in SQL Server? 0

How to Change Authentication Mode in SQL Server?

Authentication is a process to establish a successful connection. SQL Server provides two types of authentication modes to connect to their database instances. Authentication Mode is configured while installing SQL Server instance. We can also change SQL Server authentication mode...

Best Practices to run updates statistics 1

SQL Server Update Statistics Best Practices

Update Statistics in SQL Server is very important maintenance activity to keep database’s statistics up to date. This helps SQL Server query optimizer to generate optimum query plan and improve database performance as well. Here, i will explain the best...