The Query Store is a feature that introduced in SQL Server 2016. In order to understand the Query Store, it is necessary to understand the …
Read More »MSSQL
Database Engine Tuning Advisor(DTA) in SQL Server
Database Engine Tuning Advisor (DTA) examines how queries are running in the database and provides us with suggestions. It has its own interface. You can …
Read More »How To Uninstall SQL Server Service Pack or Cumulative Update
With SQL Server 2008, we can now easily uninstall Service Packs and Cumulative Updates from Control Panel, Programs and Features. Especially in case of a …
Read More »BULK INSERT in SQL Server
With BULK INSERT you can upload text, csv data files to the database in any format. Users must have insert privileges in the database and …
Read More »How To Use OPENROWSET in SQL Server
With OPENROWSET, you can access remote data using OLE DB. OPENROWSET is a system function as you will see below. With this method, we provide …
Read More »Query Hints in SQL Server
What is Query Hint? You can change the execution plan of the query by adding the query hints to the end of the query. For …
Read More »Optimize for ad hoc workloads and Parameterization in SQL Server
In this article, we will examine what happens when we enable Optimize for ad hoc workloads and when we use parameterization. We will see what …
Read More »Increase Query Performance in SQL Server Using sp_create_plan_guide System Stored Procedure
sp_create_plan_guide introduced with sql server 2005. With this sp, you can increase the performance of your queries that you can’t intervene or change, by adding …
Read More »How To Disable and Enable Indexes in SQL Server
Indexes can be disabled in SQL Server 2005 and later versions. If the index is disabled, it is necessary to rebuild the index to enable …
Read More »How To Attach Database Without Transaction Log Using ATTACH_REBUILD_LOG
It is possible to attach the database without a log file using ATTACH_REBUILD_LOG. With the help of the following script, we attach the ASPNETDB database …
Read More »