Policy-Based Management is a feature that is introduced with SQL Server 2008. It allows us to set the rules we want in our systems, to …
Read More »MSSQL
Change Data Capture(CDC) in SQL Server
Change Data Capture (CDC) is a technology that can be used in incremental data transfers from OLTP systems to data warehouse systems. By storing the …
Read More »Backup Compression in SQL Server
The Backup Compression feature was introduced with SQL Server 2008. We can reduce our backup sizes by selecting this option when backing up. However, while …
Read More »Compound Operators in SQL Server
With Compound Operators, we can make operations on variables more easily. For example, let’s assume that @a is a variable and we want to increase …
Read More »User Defined Table Type and Table Valued Parameter in SQL Server
With User Defined Table Type, we can store the structure of a table. We can use the User Defined Table Typies by defining the table-valued …
Read More »What is Query Store in SQL Server
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 »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 »