Author: Yavuz Selim Kart

Data Compression Procedure for All Tables in SQL Server

Hello everyone, In this article, I will give information about data compression procedure for all tables in SQL Server. There are two types of data compression. Row Level Data Compression: A compression method that converts fixed-length data types to variable-length data types and frees up free space. It also saves...

Creating Table’s Property Values in SQL Server

Hello everyone, In this article, I will try to give information about creating the Property values of the table in SQL Server. You may want to see the Csharp or Java Property equivalents of the tables we have created in SQL Server. You can easily do this using the code...

Removing All Procedures in SQL Server

Hello everyone, In this article, I will provide information on how to remove all procedures in SQL Server. In SQL Server we may want to remove all procedures in some cases. You can easily do this using the code below. DECLARE @procName VARCHAR(500); DECLARE cur CURSOR FOR SELECT [name] FROM...

Removing All Foreign Keys in Database in SQL Server

Hello everyone, In this article, I will try to give information about removing all Foreign Keys in the database in SQL Server. In SQL Server, in some cases, you may need to Remove All Foreign Keys in the database. You can easily do this using the code below. DECLARE @SQL...

Don`t copy text!